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.
Activity for Anonymousâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #284174 |
Post edited: |
— | about 3 years ago |
Edit | Post #284174 | Initial revision | — | about 3 years ago |
Answer | — |
A: What's the minimum API level for activity transition? It worked for me hardly. ```java Intent intent = new Intent(Activity.this, SecondActivity.class); ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(Activity.this); startActivity(intent, options.toBundle()); ``` According to the answer, R.anim was available from API leve... (more) |
— | about 3 years ago |
Edit | Post #284173 |
Post edited: |
— | about 3 years ago |
Edit | Post #284173 |
Post edited: |
— | about 3 years ago |
Edit | Post #284173 |
Post edited: |
— | about 3 years ago |
Edit | Post #284173 |
Post edited: rechecked my version name |
— | about 3 years ago |
Edit | Post #284173 | Initial revision | — | about 3 years ago |
Question | — |
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 onCreate method. ```java overridePendingTransition(R.anim.fadein, R.anim.fadeout); ``` I had ex... (more) |
— | about 3 years ago |
Comment | Post #284160 |
Google Chrome... (more) |
— | about 3 years ago |
Edit | Post #284162 |
Post edited: |
— | about 3 years ago |
Edit | Post #284162 | Initial revision | — | about 3 years ago |
Question | — |
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 `` and ``. None of them works. ```xml Belgian Waffles $5.95 Two of our famous Belgian Waffles with plenty of real maple syrup 650 Strawberry Bel... (more) |
— | about 3 years ago |
Edit | Post #284161 | Initial revision | — | about 3 years ago |
Answer | — |
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 ``` Then when I executed it then I could see the design. It was the output : output If you make changes to CSS then you can show it the way you w... (more) |
— | about 3 years ago |
Edit | Post #284160 | Initial revision | — | about 3 years ago |
Question | — |
How to show XML in browser? Is there possible way to run XML like as HTML? Suppose, I have following code. ```xml Belgian Waffles $5.95 Two of our famous Belgian Waffles with plenty of real maple syrup 650 Strawberry Belgian Waffles $7.95 Light Belgian waffles cover... (more) |
— | about 3 years ago |
Edit | Post #284031 | Initial revision | — | about 3 years ago |
Answer | — |
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 then you had PR 1 years later. Of course, there will be lots of changes in develop branch. But, you forg... (more) |
— | about 3 years ago |
Comment | Post #277486 |
Who were teaching me Java he said this thing but, I couldn't understand him. He said there's similar kind of problem in C and, C++ that's why he prefers Java. Is it good to practice C++ with these kind of problem? If not, than I was thinking to try more better language where I won't face this kind of... (more) |
— | about 3 years ago |
Edit | Post #283866 | Initial revision | — | about 3 years ago |
Question | — |
How allocated memory is calculated? ```c++ int arr[] = {10,123,14,14,15,16}; cout I was reading the article. >When sizeof() is used with the data types such as int, float, char… etc it simply returns the amount of memory is allocated to that data types. How the memory is calculated? Is there any equation to find that with... (more) |
— | about 3 years ago |
Edit | Post #283839 |
Post edited: |
— | about 3 years ago |
Edit | Post #283839 |
Post edited: |
— | about 3 years ago |
Edit | Post #283839 | Initial revision | — | about 3 years ago |
Question | — |
What might happen if I ignore warning? ```c++ #include 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 balance[] = {10,240,120,150,100}; cout<<linearSearch(balance, sizeof(balance)/sizeof(balance[0]), 150); retur... (more) |
— | about 3 years ago |
Edit | Post #283412 | Initial revision | — | over 3 years ago |
Answer | — |
A: Unable to use pyttx3 (libespeak.so.1: cannot open shared object file: No such file or directory) ```bash sudo pacman -Sy espeak ``` After installing espeak it's working well. I am not getting the error anymore. Reference (more) |
— | over 3 years ago |
Edit | Post #283411 | Initial revision | — | over 3 years ago |
Question | — |
Unable to use pyttx3 (libespeak.so.1: cannot open shared object file: No such file or directory) ```python 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") speaker = pyttsx3.init() speaker volume volume = Label(root, text="Volume", width=25) vol... (more) |
— | over 3 years ago |
Edit | Post #283198 | Initial revision | — | over 3 years ago |
Question | — |
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 (more) |
— | over 3 years ago |
Edit | Post #283051 | Initial revision | — | over 3 years ago |
Question | — |
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 that account) of that account. So, I created this account. I had added some tags in favourite tags. Now, th... (more) |
— | over 3 years ago |
Edit | Post #283050 |
Post edited: |
— | over 3 years ago |
Edit | Post #283050 | Initial revision | — | over 3 years ago |
Question | — |
theme always not changing ```javascript const body = document.body; const light = evt => { body.setAttribute('data-theme', 'light'); localStorage.setItem("theme", "light"); console.log("light"); } const dark = evt => { body.setAttribute('data-theme', 'light'); localStorage.setItem("theme", "... (more) |
— | over 3 years ago |
- ← Previous
- 1
- 2
- 3
- Next →