torsdag 25 augusti 2016

söndag 1 maj 2016

Odin - Samsung j5 - TWRP-SM-J500xx

 Odin - Samsung j5 - TWRP-SM-J500xx



Download

You need kies to update the device the url have odin and everything you need like drivers

if kies can't find device search on google
O2U-J500FNXXU1APC2-20160428140803.zip
SM-J500FN_J5NLTE_EUR_OPEN.pit.zip

fredag 29 april 2016

Windows - Smart Install Maker


Download Smart Install Maker

You can download a free 30-day trial version of Smart Install Maker. Within this period you can evaluate Smart Install Maker and decide whether to buy it or not.
Version: 5.04 [11/29/2011]

You can download it from address:
http://s000.tinyupload.com/?file_id=67925481535041970559
http://www.filehosting.org/file/details/565721/Smart%20install%20Maker%205.02.exe
http://www91.zippyshare.com/v/tEibfIHV/file.html

torsdag 7 april 2016

www.neradio.se ripper linux terminal


http://pastebin.com/UFTyjg8L
careless of me forgot to check the QUIT code the program have to select one.. no quit.. i'm little to drunk this is version 0.1

www.neradio.se ripper linux terminal

root then
chmod 755 neradio.sh  <-- IF the file are named lite that
to run ./neradio.sh

Android tubemate download youtube to mp3 oneclick

tubemate listen on youtube check porn and download with one click for android

Linux scremer version __ streamripper / streamtuner2

" streamripper / streamtuner2 / Audacious "

does the same thing.. but more stable..
wine suxs like windoze

linux debian virtualbox problem

use
virtualbox-5.0_5.0.16-105871~Debian~jessie_amd64.deb

Recursively remove all empty directories


Terminal - Recursively remove all empty directories
find . -type d -empty -delete
2010-03-23 15:21:33
User: jmcantrell
Functions: find
39
Recursively remove all empty directories

Alternatives

There are 2 alternatives - vote for the best!
Terminal - Alternatives
find . -empty -type d -exec rmdir {} +
2009-08-04 16:55:34
User: jsiei97
Functions: find rmdir
14
A quick way to find and delete empty dirs, it starts in the current working directory.
If you do find . -empty -type d you will see what could be removed, or to a test run.
find . -depth -type d -empty -exec rmdir -v {} +
2009-08-05 13:48:13
User: syssyphus
Functions: find rmdir
Tags: find
6
this will show the names of the deleted directories, and will delete directories that only no files, only empty directories.
find . -type d -empty -delete
2009-08-22 09:03:14
User: hemanth
Functions: find
Tags: find rmdir
6
You can also use, $ find . -depth -type d -exec rmdir {} \; 2>/dev/null

Know a better way?

If you can do better, submit your command here.

What others think

for Unices other than Linux, one needs to use:
find . -type d -empty -exec rm -rf {} \;
Comment by kernel01 138 weeks and 2 days ago