slow down & loop forever gif
gifsicle --delay 30 --loopcount=0 v1.gif > v2.gif
EXPECTATIONS

Jar Jar Binks Fan Club

oozey mess

Kiana Khansmith

bliss lane
Monterey Bay Aquarium
2025 on Tumblr: Trends That Defined the Year
No title available
★
todays bird

shark vs the universe
tumblr dot com
NASA
Mike Driver

pixel skylines
Cosmic Funnies
Today's Document
I'd rather be in outer space 🛸
🩵 avery cochrane 🩵
No title available

seen from Czechia

seen from France
seen from United States
seen from Türkiye

seen from Uganda

seen from Malaysia
seen from Russia
seen from Netherlands

seen from Canada
seen from United States
seen from Italy
seen from Canada
seen from Indonesia
seen from United States
seen from Malaysia
seen from United States
seen from Brazil
seen from United Kingdom

seen from Malaysia
seen from Nigeria
@sadist86-blog
slow down & loop forever gif
gifsicle --delay 30 --loopcount=0 v1.gif > v2.gif
Disable auto-opening nautilus window after auto-mount
gsettings set org.gnome.desktop.media-handling automount-open false
set postgres password
sudo -u postgres psql postgres
# \password postgres
Enter new password:
samba change password
smbpasswd -r 192.168... (ip addr here)
How to pause/play music on ubuntu desktop lock/unlock
dbus-monitor --session "type='signal',interface='com.ubuntu.Upstart0_6'" | \ ( while true; do read X if echo $X | grep "desktop-lock" &> /dev/null; then qdbus org.mpris.clementine /Player org.freedesktop.MediaPlayer.Pause; elif echo $X | grep "desktop-unlock" &> /dev/null; then qdbus org.mpris.clementine /Player org.freedesktop.MediaPlayer.Play; fi done )
Change the size of an LVM logical volume
sudo su
apt-get install cryptsetup lvm2 modprobe dm-crypt cryptsetup luksOpen /dev/sda5 sda5 pvscan vgscan vgchange -a y lvscan lvdisplay
lvresize --resizefs --size -1G /dev/debian-vg/home
lvresize --resizefs -l +100%FREE /dev/debian-vg/root
git rename branch
git branch -m feature/tracking (git branch -m old-name new-name) git push origin :tracking feature/tracking (git branch -m old-name new-name)
the fastest way to extract an ISO
sudo apt-get install p7zip-full
7z x iso_file.iso
windows extend evaluation
under cut
setup new vagrant vm
vagrant box add deb80 Debian-jessie-amd64-netboot.box
vagrant box list
cd vboxes/deb80/
vagrant init deb80
vagrant up
vagrant ssh
How do modify or disable the HUD's use of the Alt key?
You can use compizconfig-settings-manager to change the key used to show the HUD.
To install it, run the following command in a terminal:
sudo apt-get install compizconfig-settings-manager
What are some of the issues with ccsm and why should I not use it?
After installing it, open it and go to Ubuntu Unity Plugin.
LUKS Encyrption
The nice article is here
http://www.smallbusinesstech.net/more-complicated-instructions/encyrption/luks-encyrption
change user agent string for qbittorent
diff --git a/src/qtlibtorrent/qbtsession.cpp b/src/qtlibtorrent/qbtsession.cpp index 1620f53..402ee4d 100755 --- a/src/qtlibtorrent/qbtsession.cpp +++ b/src/qtlibtorrent/qbtsession.cpp @@ -123,11 +123,8 @@ QBtSession::QBtSession() Preferences* const pref = Preferences::instance();; // Creating Bittorrent session QList version; - version << VERSION_MAJOR; - version << VERSION_MINOR; - version << VERSION_BUGFIX; - version << 0; - const QString peer_id = "qB"; + version << 2 << 2 << 1 << 0; + const QString peer_id = "UT"; // Construct session s = new session(fingerprint(peer_id.toLocal8Bit().constData(), version.at(0), version.at(1), version.at(2), version.at(3)), 0); //std::cout << "Peer ID: " << fingerprint(peer_id.toLocal8Bit().constData(), version.at(0), version.at(1), version.at(2), version.at(3)).to_string() << std::endl; @@ -389,7 +386,7 @@ void QBtSession::configureSession() { } // * Session settings session_settings sessionSettings = s->settings(); - sessionSettings.user_agent = "qBittorrent "VERSION; + sessionSettings.user_agent = "uTorrent/2210(25302)"; //std::cout << "HTTP user agent is " << sessionSettings.user_agent << std::endl; addConsoleMessage(tr("HTTP user agent is %1").arg(misc::toQString(sessionSettings.user_agent)));
install benq 5000u on debian
1. install usb-modeswitch, usb-modeswitch-data
2. BIOS: disable usb3.0
3. /etc/sane.d/snapscan.conf
firmware /usr/share/sane/snapscan/u252v072.bin
fix deluge user agent
grep user_agent /usr/lib/python2.7/dist-packages/deluge/core/core.py
#self.settings.user_agent = "Deluge %s" % deluge.common.get_version() self.settings.user_agent = "uTorrent/3300(29625)"
mount sda image
kpartx -av /home/sadist/VirtualBoxVMs/sda.img cryptsetup luksOpen /dev/mapper/loop0p2 data vgscan # Found volume group "VolGroup" using metadata type lvm2 # Found volume group "debian-vg" using metadata type lvm2 vgchange -ay VolGroup mount /dev/VolGroup/lv_root /home/sadist/tmp
Java Keytool Command for Importing ssl cert
keytool.exe -import -keystore "c:\Program Files\Java\jdk1.7.0_60\jre\lib\security\cacerts" -file "c:\Users\...
However the default password for the cacerts is : changeit