-
Switch focus between editor and integrated terminal in Visual Studio Code – Stack Overflow
ctrl+` : To Focus on Integrated Terminal
ctrl+1 : To Focus on Editor (If editor-2 command would be ctrl+2)
Principal
Textos publicados na web.
Update (weekly)
-
Make App Window Transparent in Ubuntu 18.04, 18.10 – Tips on Ubuntu
“sh -c ‘xprop -f _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY $(printf 0x%x $((0xffffffff * 80 / 100)))'”
Update (weekly)
-
Is there way to expand all folders in Eclipse project view and search results? – Stack Overflow
“Expand all all in project explorer is Shift+Numpad * (multiplty), “
-
“netstat -ao |find /i “listening”
“
-
Taskkill /F /IM 12704
(Note: Mention correct Process Id) -
sudo lsof -i tcp:8080
kill -15 PID
-
-
Migrating from JUnit 4 to JUnit 5 | Baeldung
“With JUnit 5, we can now use the @ExtendWith annotation to provide similar functionality”
Update (weekly)
-
An iDiot’s Guide To Lilu and its Plug-ins | tonymacx86.com
“boot argument brcmfx-country=XX”
-
“#a” which is a special value that effectively tells MacOS to ignore the WiFi country code
-
-
“among the Drivers64UEFI leave the ones that are already selected, but tick the VBoxHFS-64 and ApfsDriverLoader-64”
Update (weekly)
-
Tuxera Support – View topic – Cannot Unlock Files
“A terminal command to recursively unlock a directory (i.e. including all files and folders inside) is:
Code:
chflags -R nouchg “ -
8 Ways to use the features of your database with Hibernate
“Since JPA 2.1, you can use the function function to call any function supported by your database. You just need to provide the name of the database function as the first parameter”
Update (weekly)
-
Erros com JAXB no Java 9+ – Blog da Caelum: desenvolvimento, web, mobile, UX e Scrum
”
javax.xml.bind
jaxb-api
2.2.11com.sun.xml.bind
jaxb-core
2.2.11com.sun.xml.bind
jaxb-impl
2.2.11
“ -
[Guide] Laptop backlight control using AppleBacklightFixup.kext | tonymacx86.com
“For some computers, you may be able to get native NVRAM working (without EmuVariableUefi-64.efi) if you use AptioMemoryFix.efi instead of OsxAptioFix*.efi”
-
Dual boot hackintosh macOS mojave and windows 10 [same drive]
“Diskpart
List disk
Sel disk 0
sel vol X ( X is number of volume from which we will shrink 200mb for efi partition)
Shrink desired=300
Create partition efi size=200
Format quick fs=fat32 label=”system”
Assign letter zNow exit diskpart by typing ‘exit’ and run command:
bcdboot c:\windows /s z: /f ALL
-
[Guide] HP ProBook/EliteBook/Zbook using Clover UEFI hotpatch | tonymacx86.com
“Also update Clover to the latest using the Clover installer.
Also update config.plist at EFI/Clover/config.plist to the latest content from the repo. Be sure to retain your own SMBIOS”
-
After updating, run ./install_downloads.sh again
-
-
Install MongoDB Community Edition on macOS — MongoDB Manual
“brew services start mongodb-community@4.2
“-
brew tap mongodb/brew
-
brew install mongodb-community@4.2
-
-
Finder not restoring open windows and tabs on restart | Best Mac Tips
“defaults write com.apple.finder NSQuitAlwaysKeepsWindows -bool true
“
Update (weekly)
Update (weekly)
-
How to Enable / Disable PalmCheck on Touchpad in Windows 10
“Slide aside to right side and make a double-click on the DWORD PalmDetectConfig to edit.
“-
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Synaptics\SynTP\TouchPad
-
PalmDetectConfig
-
Update (weekly)
-
Add or Remove Maximum Processor Frequency in Windows 10 Power Options | Tutorials
“powercfg -attributes SUB_PROCESSOR 75b0ae3f-bce0-45a7-8c89-c9611c25e100 -ATTRIB_HIDE
“ -
node.js – Adding timestamps to all console messages – Stack Overflow
“npm install console-stamp –save), and added this line to the top of app.js and childProcess.js:
// add timestamps in front of log messages
require(‘console-stamp’)(console, ‘[HH:MM:ss.l]’);”
Update (weekly)
-
What is the correct way to view your CPU speed on Linux? – Unix & Linux Stack Exchange
“watch -n1 “cat /proc/cpuinfo | grep \”^pu MHz\””
“-
echo "scale=10000; 4*a(1)" | bc -l &
-