Converting the date stored in Firefox sqlite to a DateTime
select datetime(1484339209877000 / 1000000, 'unixepoch')
Aqua Utopia|海の底で記憶を紡ぐ
Misplaced Lens Cap
TVSTRANGERTHINGS
DEAR READER

pixel skylines

❣ Chile in a Photography ❣
Peter Solarz
I'd rather be in outer space 🛸

Cosmic Funnies
Sweet Seals For You, Always
taylor price
Show & Tell
noise dept.
One Nice Bug Per Day
we're not kids anymore.
macklin celebrini has autism

titsay

Discoholic 🪩

seen from Malaysia

seen from United States
seen from United States
seen from United States

seen from Italy

seen from United States
seen from Spain

seen from Germany
seen from Malaysia

seen from France
seen from Spain
seen from United States
seen from Spain
seen from Australia
seen from United States
seen from United States

seen from United States
seen from United States

seen from Malaysia
seen from Türkiye
@skowroniasty
Converting the date stored in Firefox sqlite to a DateTime
select datetime(1484339209877000 / 1000000, 'unixepoch')

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
LENOVO N5321gw FreeBSD
cat /etc/ppp/ppp.conf
default: set log Phase Chat LCP IPCP CCP tun command ident user-ppp VERSION (built COMPILATIONDATE)
# Ensure that "device" references the correct serial port # for your modem. (cuau0 = COM1, cuau1 = COM2) # set device /dev/cuaU0.2
set speed 115200 #set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ # \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set dial "ABORT BUSY TIMEOUT 2 \ \"\" \ AT OK-AT-OK \ AT+CFUN=1 OK-AT-OK \ AT+CMEE=2 OK-AT-OK \ AT+CSQ OK \ AT+CGDCONT=1,\\\"IP\\\",\\\"internet\\\" OK \ AT+CGACT? OK-AT-OK \ AT+CGATT? OK \ AT+CGCLASS? OK \ AT+COPS? OK \ ATD*99# CONNECT"
set timeout 180 # 3 minute idle timer (the default) enable dns # request DNS info (for resolv.conf)
play: set ifaddr 10.10.0.1/0 10.10.0.2/0 255.255.255.255 0.0.0.0 disable ipv6cp disable mppe disable vjcomp disable acfcomp disable deflate disable pred1 disable protocomp disable lqr add! default HISADDR # Add a (sticky) default route
find and remove file on fly
find . -name "my.file" -exec rm -rf {} \;
How to Display Non-Printing Characters
[fuser@linuxbox ~]$ cat -vATE test2.txt aa ^I^I$ !S,kdsn$ $ ^I$ ^I^I $
How check if remote port is open -perl
use IO::Socket::INET; # auto-flush on socket $| = 1; # creating a listening socket my $socket = new IO::Socket::INET ( LocalPort => '7766', Proto => 'udp', ); die "cannot create socket $!\n" unless $socket; while(1) { $socket->recv($data, 1024); print "received data: $data\n"; $data = "ok"; }

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
How check if remote port is open ?
ssh hostname -vv -p 8080
curl -v hostname:8080
How to install packages from the disc (dvd,cd)
• Mount the disc to the '/dist' directory: # mkdir -p /dist # mount -t cd9660 /dev/cd0 /dist • To install a package, run: # env REPOS_DIR=/dist/packages/repos pkg install xorg • To view the list of available packages on the disc, run: # env REPOS_DIR=/dist/packages/repos pkg rquery "%n"
smbclient - list shares
smbclient -L HostName -U domain_name\\User_name Enter domain_name\\User_name's password:
How can I recursively delete all files of a specific extension in the current directory?
find . -name "*.xlsx" -type f -delete
SQL: CR (Carriage Return) LF (Line Feed) conversion to space
str_replace(MessageString, char(10),' ') as MessageString from table select replace(MessageString, char(10),' ') as MessageString from table
https://en.wikipedia.org/wiki/ASCII#ASCII_control_code_chart

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Select duplicate values
SELECT name, login, COUNT(*) FROM users GROUP BY name, login HAVING COUNT(*) > 1
Convert binary drive image to virtualbox drive
VBoxManage convertdd X:\Patka\image-file.img w:\PATKA\dysk.vdi --format VDI --format VDI
Restore the clonezilla files into the image file.
cat /mnt/nas/2016-02-12-19-img/sdb1.ntfs-ptcl-img.gz.* | gzip -d -c | sudo partclone.restore -C -s - -O /mnt/nas/image-file.img
Py: list files in folder and subfolders
FILES_LOCATION=‘/opt/my_fucking_big_dirrrrrrrrr‘ def findMyTypeOfFiles(): matches = [] for root, dirnames, filenames in os.walk(FILES_LOCATION): for filename in fnmatch.filter(filenames, '*.txt'): matches.append(os.path.join(root, filename))
Sort process by mem usage
ps aux --sort -rss

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Count files in folder and subfolders:
find /media/sf_Z_DRIVE -type f | wc -l
SoftException in Application.cpp:1212: UID of script "/var/www/xxxx.php" is smaller than min_uid
Apache2 on Debian, info in log:
SoftException in Application.cpp:350: UID of script "/var/www/xxxx.php" is smaller than min_uid
Solution :
apt-get remove libapache2-mod-suphp