All Questions

1
answer

How to change Linux timetable from the command line?

I can see Linux timetable from the command line like this: >date Qua Mai 25 14:49:58 BRT 2016 But now I need to change the Linux timezone from the command line because, as I use a Linux server, I only have access via SSH. How can I...
asked on 25.05.2016 / 19:51
2
answers

Access internal code structures C # / .NET

Is it possible to access the inner structures of a C # core code or .NET System.Core libraries? For example, how is the First() method implemented? Alerta alerta = query.First(); I wanted to see how this is done behind the sce...
asked on 16.06.2016 / 19:42
3
answers

Javascript - Make article appear when clicking on a li

I have a small question in my project that I am developing. I need to make certain <article> appear when a particular <li> is clicked.    Example <li> 's <li id="menu-CARD">USAR CARD</li&g...
asked on 28.09.2016 / 08:29
3
answers

How to redirect the site when it is a mobile?

I have the following code that should work, but in mobile it does not work in the chrome browser: var permitir_mobile = true; var mobileUrl = 'http://m.meusitemobile.com.br'; $(document).ready(function() { var e = window; redirectIfWi...
asked on 28.07.2016 / 14:34
2
answers

Which Android SDK versions should I install at a minimum?

When I downloaded Android Studio and opened the SDK Manager it shows some packages to be downloaded and installed. I saw that it has several versions of Android. My questions are: Which of these are "extremely" indispensable so that I ca...
asked on 03.09.2016 / 12:42
1
answer

How to use the include other Layout of Android?

Hello, I would like to know how to use the Include Other Layout and what it is for.     
asked on 05.04.2015 / 03:56
2
answers

How do I check if two strings are anagrams of one another?

I need to buy two strings and check if the second is an anagram of the first. I thought about using FOR loop repetition. I think you should first check if they both have the same size, then go through them and check if each letter of the first o...
asked on 29.11.2014 / 02:52
2
answers

How to read a large line-by-line file with Javascript (nodejs)

I have a very large file to import data into MongoDB via Javascript. The problem is that I can not load the entire file into memory. I would like to read this file line by line, since each line is a record to insert into my bank. I know the f...
asked on 01.01.2015 / 01:16
1
answer

How to get information from the computer with C #?

As the information on the computer where the C # application is running, such as computer name, IP, firewall status, whether antivirus is installed, whether antivirus is enabled, etc.     
asked on 23.03.2015 / 13:07
2
answers

Is there any difference between the visibility of a View.GONE view or false?

I would like to know which of these implementations is correct? tlb.setVisibility(View.GONE); or tlb.setVisibility(false); What's the difference between them?     
asked on 23.01.2017 / 14:09