Bluetooth windows unlock

hasznos kis progi:

BTProximity is an application for Windows Vista and Windows 7 that can detect when your bluetooth-enabled phone has come into range, and unlock your computer.  When the device moves out of range, the computer is automatically locked.  This isn’t a fake lock window, the computer is locked using Windows Security.

http://www.daveamenta.com/2010-03/btproximity-lock-and-unlock-pc-when-bluetooth-phone-is-in-range/

Az  install: btproximity

Notes

– The device needs to be paired with Windows first, then it will show up in the devices list.  If you don’t pair the device, secure mode will need to be disabled in order for the device to appear.

– Be sure to install the unlock component if you’d like to automatically unlock.

– Be sure to set the credentials to unlock.

– Setting the check interval too high may lead to poor battery life.

– “Faster Unlock” will unlock as soon as the device has been seen, without an additional check.

– Notification area icon colors:

Gray: Host device is not compatible or not found.

Red:  Device is not connected (out of range)

Green: Device is connected (in range)

AVI fájlok merge

Csudi-mudi jó kis parancs, csak mindig elfelejtem 🙂

avimerge -o cd.avi -i cd1.avi cd2.avi

 

Csoportos átnevezés prefix / suffix-el

Bájos kis script a jó öreg mv használatával:

for f in * ; do mv "$f" PREFIX_"$f" ; done

 

VSFTPD felhasználók ne hagyhassák el a könyvtárukat

VSFTPD módosítása:

vi /etc/vsftpd/vsftpd.conf

Adjuk hozzá az alábbi 2 sort:

chroot_local_user=YES
allow_writeable_chroot=YES

Western Digital (GREEN) winyók garanciális idejének ellenőrzése + linux IDLE time állítása

Ezen az oldalon lehet megadni széria számot és már mutatja is mennyi a garanacia hátra 🙂

Az url külön is: https://westerndigital.secure.force.com/WarrantyCheck?lang=en

Ha pedig GREEN winyokkal doglozunk, akkor fontos info, hogy van bennük tervezési hiba, ami azt jelenti, hogy túl hamara teszik magunkat pihenő állapotban ami egy szerver esetében, gyakori tányér felpörgetést jelent. Az érintett verziók az alábbiak (cikk és forrás):

WD20EADS, WD20EARS, WD15EADS, WD15EARS, WD10EADS, WD10EARS, WD8000AARS, WD7500AADS, WD7500AARS, WD6400AADS, WD6400AARS, WD5000AADS, WD5000AARS, WD1000FYPS, WD7500AYPS and WD7501AYPS

 

Linux alól ezzel a kis programmal (idle3-tools-0.9.1) lehet javítani (SF oldal)

Meghajtó sebességének ellenőrzése

Egy egyszerű paranccsal:

sudo hdparm -tT /dev/sda

 

SVN errcode= 160033 Could not open the requested SVN filesystem

Ha a következő hibát kapjuk akkor:

svnadmin recover <repo_helye>

 

iptables tartalom kiiratas

iptables szabalyainak kiratasa:

$sudo iptables -t nat -L -vn

C# Button Background, Foreground kep csereje kodban

var brush = new ImageBrush();
 brush.ImageSource = new BitmapImage(new Uri("Images/myImage.png", UriKind.Relative));
 button1.Background = brush;

 

Windows Phone 7 Application bar gomb futas kozbeni modositasa

mire meglett… -.-

private void MainPage_Loaded(object sender, RoutedEventArgs e)
{
    ApplicationBarIconButton button1 = ApplicationBar.Buttons[0] as ApplicationBarIconButton;
    if (button1 != null)
    {
        button1.Text = "p0wnage";
        button1.IconUri = new Uri("/appbarIcon.png",UriKind.Relative);
    }
    ApplicationBarMenuItem menuItem1 = ApplicationBar.MenuItems[0] as ApplicationBarMenuItem;
    if (menuItem1 != null)
    {
        menuItem1.Text = "Pure p0wnage";
    } 
}