All Questions

3
answers

Is there any Eclipse feature that includes "this." before any variable where this is implied?

Every time I see myself putting this. before variables that are class attributes in non-static methods. Does eclipse have any option that applies this to all source files?     
asked on 30.01.2014 / 20:22
1
answer

Which programming languages support Linux and Windows?

The question is already in the title, however to make it clearer: What languages do I write a single code to, and run on both Linux and Windows? Example C . Except some commands like system("cls"); system("clear"); ....
asked on 23.11.2015 / 14:17
2
answers

How can I use javascript async / await?

I saw that it is now possible to use the async and await keywords in javascript, but how does this actually work?     
asked on 09.06.2017 / 00:00
3
answers

How to create a "* .exe" executable in python?

I need to turn ".py" files into ".exe" executables to run on any Windows desktop. Currently use 3.3     
asked on 24.04.2014 / 04:27
3
answers

Use @media, @media screen and or @media only screen and Is there a difference?

I wanted to know if there is any difference in css when using one of these media queries, Example A: @media(max-width:770px) { .texto{ color:red } } Example B: @media screen and (max-width: 770px) { .texto{...
asked on 07.11.2018 / 16:13
3
answers

Why Arrays start at 0 instead of 1 [duplicate]

Why arrays start at 0 instead of 1? There are not 0 people, 0 animals, 0 nothing ... (do not cling to this part) What is the purpose of doing this? I think it's not just me who does not understand the logic of it, if at all.     
asked on 12.02.2018 / 00:41
2
answers

What are Async methods?

I noticed that most methods in C # have an equal method but with a name async . What are these methods and how do they work?     
asked on 05.01.2017 / 02:13
2
answers

Create list without duplicate values

I have a list of int and I want to save more numbers in it, but numbers that do not repeat themselves. How do I find if it already has a certain value in this list?     
asked on 16.08.2014 / 02:59
2
answers

Is it correct to adopt a design specification for an entire project?

I see many frameworks, moving to a material design visual. and using flexbox to hold the elements, among them. Bootstrap Materialize Quasar Foundation UI Material Considering that they are UI components, they should...
asked on 05.10.2017 / 14:44
1
answer

How does the static life time work?

I just saw a question about C. In it the following code was shown: #include <stdio.h> int main() { static int a = 5; printf("%d", a--); if(a) main(); return 0; } Example running on repl.it. And the ch...
asked on 31.08.2017 / 17:42