Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Posts by Anonymous‭

39 posts
37%
+1 −3
Q&A What's the better way to deal with deprecated feature?

It's a very old question came to my mind. Whenever I start building some applications for Android using Android Studio. In every update, lots of tools get deprecated. I know I can use deprecated "t...

0 answers  ·  posted 2y ago by Anonymous‭  ·  edited 2y ago by Anonymous‭

Question android deprecated
50%
+0 −0
Q&A What's the minimum API level for activity transition?

It worked for me hardly. Intent intent = new Intent(Activity.this, SecondActivity.class); ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(Activity.this); startActivity(int...

posted 2y ago by Anonymous‭  ·  edited 2y ago by Anonymous‭

Answer
57%
+2 −1
Q&A What's the minimum API level for activity transition?

I was trying to show transition on activity changes. I had followed two method from SO. I lost those link so I can't add them here. My first method was I had used overridePendingTransition on onCr...

1 answer  ·  posted 2y ago by Anonymous‭  ·  last activity 2y ago by Anonymous‭

33%
+0 −2
Q&A How to break line in XML?

How to break line in XML? I was trying to follow the answer. But, It wasn't helpful for me. I had tried <br/> and <br />. None of them works. <?xml version="1.0" encoding="UTF-8"?&g...

0 answers  ·  posted 2y ago by Anonymous‭  ·  edited 2y ago by Anonymous‭

Question xml line-breaks
80%
+6 −0
Q&A How to show XML in browser?

I was searching further why it's not working properly. Then I created a CSS file. Linked that CSS to XML using the following command. <?xml-stylesheet type="text/css" href="test.css"?> Th...

posted 2y ago by Anonymous‭

Answer
50%
+2 −2
Q&A How to show XML in browser?

Is there possible way to run XML like as HTML? Suppose, I have following code. <?xml version="1.0" encoding="UTF-8"?> <breakfast_menu> <food> <name>Belgian Waffles&l...

2 answers  ·  posted 2y ago by Anonymous‭  ·  last activity 2y ago by desbest‭

Question xml browser
40%
+0 −1
Q&A Is it a good idea to have a permanent branch for a feature?

You may know me so I am answering :P (someone close to you but you can't find me directly). Is it a good idea to have a permanent branch for a feature? Suppose, you have a permanent branch th...

posted 2y ago by Anonymous‭

Answer
70%
+5 −1
Q&A How allocated memory is calculated?

int arr[] = {10,123,14,14,15,16}; cout<<sizeof(arr)/sizeof(arr[0]); I was reading the article. When sizeof() is used with the data types such as int, float, char… etc it simply ret...

1 answer  ·  posted 2y ago by Anonymous‭  ·  last activity 2y ago by Canina‭

Question c++ memory
42%
+1 −2
Q&A What might happen if I ignore warning?

#include <iostream> using namespace std; int linearSearch(int array[], int n, int key){ for(int i=0;i<=n;i++){ if(array[i]==key){ return i; } } } int main() { int ...

2 answers  ·  posted 2y ago by Anonymous‭  ·  last activity 2y ago by Lundin‭

50%
+1 −1
Q&A Unable to use pyttx3 (libespeak.so.1: cannot open shared object file: No such file or directory)

sudo pacman -Sy espeak After installing espeak it's working well. I am not getting the error anymore. Reference

posted 2y ago by Anonymous‭  ·  edited 2y ago by Alexei‭

Answer
66%
+2 −0
Q&A Unable to use pyttx3 (libespeak.so.1: cannot open shared object file: No such file or directory)

from tkinter import * from tkinter import messagebox, filedialog import pyttsx3 import PyPDF2 import os import webbrowser root = Tk() # root.geometry("500x500") root.title("Audio Book") ...

1 answer  ·  posted 2y ago by Anonymous‭  ·  last activity 2y ago by Alexei‭

66%
+2 −0
Meta edit button isn't taking me to `/edit/` page

Whenever I click on edit button it is redirecting me to that answer. This is happening for the answer. Here's a video

0 answers  ·  posted 2y ago by Anonymous‭  ·  edited 2y ago by Monica Cellio‭

75%
+4 −0
Meta Tags are highlighting while my favourite tags is empty

My favourite tags is empty. Although, some tags are highlighting. Usually, I was using another account earlier. I forgot (lost that gmail address) password (I can reset but, I don't want to use tha...

2 answers  ·  posted 3y ago by Anonymous‭  ·  edited 8mo ago by Alexei‭

37%
+1 −3
Q&A theme always not changing [closed]

const body = document.body; const light = evt => { body.setAttribute('data-theme', 'light'); localStorage.setItem("theme", "light"); console.log("light"); } const dark = ...

0 answers  ·  posted 3y ago by Anonymous‭  ·  closed 3y ago by Alexei‭

Question javascript html theme