This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SERVER | |
-Install mongodb | |
-Comment out /etc/mongod.conf file's bind_ip | |
#CLIENT (v0.9) | |
-Set address ( IP of server ) : Port number (27017) | |
-SSH TAB -> ip server and .pem file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Option 1 | |
sudo iwlist wlan0 scan | grep -oE '(ESSID:|Quality=).*' | |
#Option 2 | |
Create a bash file to filter command iwlist | |
#!/bin/bash | |
## print header lines | |
echo "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open CMD: | |
> wmic MemoryChip get BankLabel, Capacity, MemoryType, TypeDetail, Speed | |
Here is a complete list of information: http://msdn.microsoft.com/en-us/library/windows/desktop/aa394347%28v=vs.85%29.aspx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install nodejs | |
sudo apt-get install nodejs | |
sudo apt-get install npm | |
sudo ln -s /usr/bin/nodejs /usr/bin/node | |
#Install mongodb | |
http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/ | |
->robomongo in port 27017 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From Terminal | |
============= | |
Find the USB using "NAME" column. Then note the corresponding /dev/diskN | |
# diskutil list | |
Unmount the USB stick | |
# diskutil unmountDisk /dev/diskN | |
Write the content of the ISO file to diskN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add to the file: /etc/bashrc | |
export TERM=xterm-color | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
And restart terminal app. | |
Enjoy ;) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Create link | |
ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl | |
#ONLY ff you don't have PATH to usr/local/bin | |
#Open bash_profile | |
open ~/.bash_profile | |
#Add to bash_profile | |
export PATH=/usr/local/bin/subl:$PATH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show Hidden Files | |
Open up your Terminal and enter: | |
# defaults write com.apple.finder AppleShowAllFiles TRUE | |
# killall Finder | |
Hide Hidden Files | |
#defaults write com.apple.finder AppleShowAllFiles FALSE | |
# killall Finder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ejecutar un servidor nodejs simple, para cargar webs con javascript | |
(Dentro de la carpeta del proyecto) | |
#http-server -p 5000 -c-1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
watch -n 1 "awk 'NR==3 {print \"WiFi Signal Strength = \" \$3 \"00 %\"}''' /proc/net/wireless" |
NewerOlder