Find Text In Folders Recursively in Linux

Task: Search all subdirectories recursively You can search for a text string all files under each directory, recursively with -r option:

$ grep -r “keyword” /folder/name

Posted in Uncategorized | Leave a comment

Linux Application Listing

mldonkey – Peer  to Peer Software using ed2k protocol

 

Posted in Uncategorized | Leave a comment

FTP Backup Using Wget

wget -r -l0 -c ftp://*username*:*password*@*server*
replace stuff in *

-r means recursive

-l0 means go maxmium level deep as oppose to default 4 level

-c means continue partial download and ignore completed.

Posted in Uncategorized | Leave a comment

PasswordLess SSH Using Private/Public Key Auth

ssh-copy-id -i ~/.ssh/id_rsa.pub username@mystery

Continue reading

Posted in Uncategorized | Leave a comment

3.5“ External HDD 500GB 79.99 USD

http://u.xxw.ca/d

Expiration 2/22/2012

Posted in Uncategorized | Leave a comment

VirtualBox AutoStart On Windows 7 Enterprise Batch File

1. Click Start Button in Windows 7

2. Right-click Computer and left-click Properties

3. Left click Advanced system settings in the left section beside the blue/yellow shield logo.

4. Left click on Advanced tab, Left click Environment Variables

5. Under System variables, scroll down to PATH and apprend the following

;C:\Program Files\Oracle\VirtualBox\

6. Create a autostart.bat in C:\Users\%YOUR_USERNAME%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\

7. Add the following to this file and save, make sure the extension is .bat and not .bat.txt

cd “C:\Program Files\Oracle\”
start VBoxManage startvm XP
start “C:\Program Files\Oracle\VBoxManage.exe startvm XP”

7a. *Optional, if it opens as text file then press WINDOWS KEY + E, press LEFT ALT KEY,Click Tools, Click Folder Options, Click View Tab, uncheck “Hide extension for known file types” and go to step 7

Posted in Uncategorized | Leave a comment

Windows Application Listing

Scarangle – Ed2K protocol client, originated from eMule

VLC -Video Media Player

Rainmeter – GUI, fancy overlay on desktop

EASEUS Partition Master 9.1.0 Home Edition – Partition

CounterPath X-Lite 4 – VOIP SIP Client

GOGO6 – IPv6 Client + Web Server

LiveZilla – Live Support Chat Program for website administration

Tweetdeck – One in all solution to social media

Google Calendar Sync – Sync across outlook to google calendar

Filezilla – FTP solution client + server

Dropbox – Online storage and sync utility

Notepad++ -Graphical Editor for programmers

FastCopy – Replaces the default Explorer.exe to speed up copy and paste folder.

Posted in Uncategorized | Leave a comment

Siri for Android

image
image

Posted in Uncategorized | Leave a comment

BitCoin Miner For Windows

BitCoin Miner for Windows Machines 7
BitCoin Miner for Windows Machines 7
guiminer-20110614.exe
7.8 MiB
5 Downloads
Details...
Posted in Uncategorized | Leave a comment

Apex Nexus February 7

image

Reflashed Nexus S

Posted in Uncategorized | Leave a comment

Android Nexus S Application List

Taskbomb -> Scheduler for application
IP Cam ViewerMail -> View CCTV over Internet
Wifi-Tether -> Share Internet
Shush! -> Make phone sound lower/disappear/vibrate until given time
OsmAnd -> Alternative Map solution, good for offline
AndFTP -> FTP client for Android
K-9 Mail -> Opensourced E-mail client, good to chew through 1000s emails
Wandoujia -> Backup Application (Chinese)

Posted in Uncategorized | Leave a comment

BitCoin

193zX9ZoHxE4jLe6RNfs32HbyDmKaRgqfM

Posted in Uncategorized | Leave a comment

IPv6

Wow, i didn’t know until today that i didn’t enable ipv6

2607:f358:0001:fed5:0022:0000:8969:0816, 2607:f358:0001:fed5:0022:0000:d8f9:fbf1,

2607:f358:0001:fed5:0022:0000:915e:8578, 2607:f358:0001:fed5:0022:0000:b0c1:41c3, 2607:f358:0001:fed5:0022:0000:1928:8a4b, 2607:f358:0001:fed5:0022:0000:89ad:b05b, 2607:f358:0001:fed5:0022:0000:8106:ce4d, 2607:f358:0001:fed5:0022:0000:475e:e857, 2607:f358:0001:fed5:0022:0000:0361:d70d, 2607:f358:0001:fed5:0022:0000:83f0:d67a, 2607:f358:0001:fed5:0022:0000:9b4c:518a, 2607:f358:0001:fed5:0022:0000:6914:fb07, 2607:f358:0001:fed5:0022:0000:fed3:c782,

2607:f358:0001:fed5:0022:0000:cf59:c58d, 2607:f358:0001:fed5:0022:0000:0b98:a469, 2607:f358:0001:fed5:0022:0000:c0fd:7c3c

Posted in Uncategorized | Leave a comment

IRCD

charybdis ircd

unrealircd

Posted in Uncategorized | Leave a comment

VOIP ATA Dial Plan

(*xx|[3469]11|0|00|[2-9]xxxxxx|1xxx[2-9]xxxxxxS0|xxxxxxxxxxxx.)

Posted in Uncategorized | Leave a comment

1mbit = 324GB Bandwidth

Posted in Uncategorized | Leave a comment

tiao and hey

image

image

Posted in Uncategorized | Leave a comment

Protected: YES

This post is password protected. To view it please enter your password below:


Posted in Uncategorized | Enter your password to view comments.

Windows 7 i3 i5 i7 CPU no idle

Regedit and find
0cc5b647-c1df-4637-891a-dec35c318583

set ValueMax to 0 in hex
shutdown and restart and enjoy

Source: sky60234 from http://forum.cakewalk.com/tm.aspx?m=1861804

Posted in Uncategorized | Leave a comment

Template For Reverse Proxy Pass with Caching

Put this in your http block

proxy_cache_path  /var/www/cache levels=1:2 keys_zone=my-cache:8m max_size=1000m inactive=600m;
proxy_temp_path /var/www/cache/tmp;

Put this into your vhost

server {
server_name www.xxw.ca xxw.ca;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://xxw;
proxy_cache my-cache;
proxy_cache_valid 200 302 60m;
proxy_cache_valid 404 1m;
error_page 502 @failover;
}
}
upstream xxw {
server xxw.littlebearz.com;
}

Posted in Uncategorized | Leave a comment