-
How to Fix “Access Denied” Folder Errors on Windows 10
“Finally, back on the Advanced Settings window, check the box for Replace owner on subcontainers and objects below the Owner field. This ensures you can access everything inside that folder without having to repeat these steps.”
-
Falha ao enumerar objetos no container. acesso negado
“A partir da linha de comandos no powershell com privilégios de administrador, executa:
takeown /F D: /R”
takeown /f * /r -
Install Android Studio On Ubuntu 18.04 Bionic Beaver Linux – LinuxConfig.org
“sudo snap install android-studio”
-
“There are a few situations where you may need to wipe dalvik cache when installing updates, but you will know that it’s needed when you are greeted with force closes when trying to open some apps”
Update (weekly)
-
Push to github without password using ssh-key – Stack Overflow
“For example, a github project like Git will have https url
https://github.com//.git
and the ssh one:git@github.com:/.git
You can do:git remote set-url origin git@github.com:/.git”
-
Possible to remove Sim Toolkit? | HTC Desire
“just delete the stk.apk in the /system/apps folder”
Update (weekly)
-
“In JavaScript, there are six falsy values: false, 0, ”, null, undefined, and NaN. Everything else is truthy.”
-
2 ways to activate Windows 10 for FREE without any software
“Done!!!”
-
Running Visual Studio Code on Linux
“(error ENOSPC)
When you see this notification, it indicates that the VS Code file watcher is running out of handles because the workspace is large and contains many files. The current limit can be viewed by running:
cat /proc/sys/fs/inotify/max_user_watches
The limit can be increased to its maximum by editing /etc/sysctl.conf and adding this line to the end of the file:
fs.inotify.max_user_watches=524288
The new value can then be loaded in by running sudo sysctl -p.”
-
html5 – Is there a way to check if geolocation has been DECLINED with Javascript? – Stack Overflow
“if (error.code == error.PERMISSION_DENIED)
console.log(“you denied me :-(“);”
Como rezar o rosário
Update (weekly)
-
“toMatchObject”
Update (weekly)
-
javascript – TypeError: Cannot read property ‘then’ of undefined – Stack Overflow
“You need to return your promise to the calling function.
”
Update (weekly)
-
“new Schema({ … }, { usePushEach: true });
This solves the error for me too” -
“isEmail function from the validator library takes 2 parameters, even though the second one is completely optional.
isEmail(str [, options])
You can prevent mongoose from seeing it by creating a function on top of it:validate: [{ validator: value => isEmail(value), msg: ‘Invalid email.’ }]”
-
“Alternatively, if this application is only installed for the current user, it would be more appropriate to put the .desktop file in ~/.local/share/applications”
Update (weekly)
-
Javascript add leading zeroes to date – Stack Overflow
“{
year: “numeric”,
month: “2-digit”,
day: “2-digit”,
}” -
Number.prototype.toLocaleString() – JavaScript | MDN
“// informando um formato de moeda
console.log(numero.toLocaleString(‘de-DE’, { style: ‘currency’, currency: ‘EUR’ }));
// → 123.456,79 €
“ -
Disk Management From the Command-Line, Part 2 – The Instructional
“diskutil partitionDisk /dev/disk2 GPT JHFS+ New 0b
“ -
logging – More lines in command window – Stack Overflow
“At least in Win7, Kristina’s answer now seems to be either its memory of commands typed in the command lines, or the amount you can copy-paste.
To increase the scrollbar’s memory, I did the following:
Go to properties as mentioned by Kristina
Go to the layout tab (that’s the third one)
Modify the screen buffer size’s height – 9999 is the maximum.”
Update (weekly)
-
_.sortedUniq(b.sort()) ou _.uniq(b).sort()
“_.sortedUniq(array)”
-
Building and Distributing Packages with Setuptools — setuptools 40.2.0 documentation
“python setup.py sdist “
-
“The Lodash remove method works much like the array filter method, but sort of in reverse. It does not save the original array values, but removes matching elements. It returns the matching elements as a new array.”
Update (weekly)
-
[ROM][7.1.1][A3F][A3H][A3M] LineageOS 14.1 U… – Pg. 53 | Samsung Galaxy A Series
“Download Kernel Adiutor app from market and set max cpu frequency to 1094 or 998 MHz and governor to Alucard”
-
diff – How to ignore line endings when comparing files? – Stack Overflow
“diff –strip-trailing-cr file1 file2”