Posts tagged as:

Script

Javascript To Remove All Facebook Apps From Your Account

February 11, 2010
Stop Facebook Spam

This is a guest post by Gaganpreet Arora AKA bitgeek.
My Facebook app list was cluttered with useless apps accumulated over the time I had joined Facebook. The worst thing is that Facebook does not allow you to remove multiple apps in one go. You have to select one, confirm on “Are you sure?” first and [...]

Read the full article →

IntelligentMirror: RPM and DEB Caching Improved (0.5)

November 19, 2008

After spending a lot of time with youtube cache, now I am trying to devote some time to update intelligentmirror with required features and enhancements that youtube cache already enjoys. In the same direction here is version 0.5 of intelligentmirror.
Improvements

Added max_parallel_downloads options to controll the maximum threading fetching from upstream to cache the packages.
Fine grained [...]

Read the full article →

Hack: Mange Fluctuating Wireless

September 24, 2006

I am trying this small script with a so called gui . This helps managing my wireless in the extreme conditions. Just a shell script. Run the script as root otherwise it’ll not work.
Get the script here or copy the code below.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
#
# Author – Kulbir Saini, IIIT Hyderabad.
# Home – http://saini.co.in/
# KWirelessManger – Just for fun.(It [...]

Read the full article →

Hack: Mail Filter – Shell Script

March 7, 2006

This is an attempt by me to filter mails on a Linux machine. You can run this file on your home directory at mail server and it will help you to sort mails on the basis of

From which user the mail has come or from which domain it came,
to which user or domain mail was [...]

Read the full article →

Hack: Graphical Implementation of CP Command

December 3, 2005

To use this graphical interface do as directed below:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
##############################
# Author – Kulbir Saini #
# Home – http://saini.co.in/ #
##############################
 
if [ $1 == -i ] || [ $1 == -f ];then
if [ ! -s $2 ] && [ ! -f $2 ] [...]

Read the full article →