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...
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...
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...
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...
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...
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...
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...
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.
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?