Displaying 194 results for "xfdug5vmfi6oh42fp6ahhrqdjcf7ysqat6fkp5dhvde4d7vlkqixrsad" in 0.0002 seconds.
Page 4 of 4
DrugLab: Cheap, Good and Fast Drug Store
Large Selection. Fast Shipping. Worldwide. Cannabis Weed Hashish, MDMA Ecstasy, Cocaine, LSD, Heroin, Pharma Medics and many more
druglabr3ukbk47dkufxy6aa5qejf25ehdxji5t3bvwgrvbidukcdhqd.onion/?dh
Sponsored Ad
pages tagged irc
No description
pages tagged packaging
No description
pages tagged ssh
No description
pages tagged systemd
No description
Formatting wiki pages
The number of # characters controls the size of the header: # h1 - ## h2 - ### h3 - #### h4 - ##### h5 - ###### h6 - To create a horizontal rule, just write three or more dashes or stars on their own line: To quote someone, prefix the quote...
pages tagged rt
No description
pages tagged postfix
No description
pages tagged openid
No description
pages tagged lvm
No description
Blocked (queued) connections, keep-alive and content-length
So I decided to replace connect-gzip in that example with the standard compress middleware that is now bundled with connect . Unfortunately, because of the fact that the compress middleware needs to run before the rest of the response code,...
pages tagged rackspace
No description
pages tagged ntp
No description
pages tagged videoconf
No description
pages tagged mythtv
No description
Persona Guiding Principles
Given the impending shutdown of Persona and the lack of a clear alternative to it, I decided to write about some of the principles that guided its design and development in the hope that it may influence future efforts in some way. Permissi...
IndieAuth as a Persona Identity Provider
Two weeks ago, I attended Indie Web Camp and had lots of interesting Persona conversations. As part of an Auth Jam session , a few of us explored the idea of adding non- OAuth -based authentication mechanisms to IndieAuth . While Aaron and ...
pages tagged xfs
No description
Automatically rebooting for kernel updates
I use reboot-notifier on most of my servers to let me know when I need to reboot them for kernel updates since I want to decide exactly when those machines go down. On the other hand, my home backup server has very predictable usage pattern...
pages tagged asterisk
No description
pages tagged webrtc
No description
posts
Here's a full list of the posts on this blog :
Restricting outgoing HTTP traffic in a web application using a squid proxy
No description
Hardening ssh Servers
These are the settings that I use to harden ssh on my servers and clients. Basic server configuration - There are a few basic things that most admins will already know (and that tiger will warn you about if you forget): If you are using rkh...
Disabling the GMail spam filter and handling it yourself using SpamAssassin
Now any items that would hit the Spam folder go directly to Trash and are automatically deleted in 30 days. QED - This tip is very usefull, specificaly when you want to manage your own spam filter. @RickyF : yes it's possible to delaga...
Things that work well with Tor
Tor is a proxy server which allows its users to hide their IP address from the websites they connect to. In order to provide this level of anonymity however, it introduces latency into these connections, an unfortunate performance-privacy t...
Keeping GMail in a separate browser profile
I wanted to be able to use the GMail web interface on my work machine, but for privacy reasons , I prefer not to be logged into my Google Account on my main browser. Here's how I make use of a somewhat hidden Firefox feature to move GM...
Preventing man-in-the-middle attacks on fetchmail and postfix
First of all, you need to download the server certificate: Then copy the output of that command to a file, say gmail.out , and extract its md5 fingerprint: Once you have the fingerprint, add it to your ~/.fetchmailrc : Postfix - Similarly, ...
pages tagged gmail
No description
Mercurial and Bitbucket workflow for Gecko development
While it sounds like I should really switch to a bookmark-based Mercurial workflow for my Gecko development, I figured that before I do that, I should document how I currently use patch queues and Bitbucket . Starting work on a new bug - Af...
Recovering from a botched hg histedit on a mercurial bookmark
Maybe it doesn't work when using bookmarks . Here's what I ended up doing to fully revert my botched Mercurial histedit . If you know of a simpler way to do this, feel free to leave a comment. Collecting the commits to restore - T...
Mercurial commit series in Phabricator using Arcanist
Phabricator supports multi-commit patch series, but it's not yet obvious how to do it using Mercurial. So this the "hg" equivalent of this blog post for git users . Note that other people have written tools and plugins to do ...
pages tagged mercurial
No description
pages tagged firebug
No description
Erasing Persistent Storage Securely on Linux
Here are some notes on how to securely delete computer data in a way that makes it impractical for anybody to recover that data. This is an important thing to do before giving away (or throwing away) old disks. Ideally though, it's bet...
Making the mounting of an encrypted /home optional on a home server
I have a computer that serves as a home server as well as a desktop machine. It has an encrypted home directory to protect user files and, in the default configuration, that unfortunately interferes with unattended reboots since someone nee...
Encrypted system backup to DVD
Inspired by World Backup Day , I decided to take a backup of my laptop. Thanks to using a free operating system I don't have to backup any of my software, just configuration and data files, which fit on a single DVD. In order to avoid ...
Poor man's RAID1 between an SSD and a hard drive
I totally agree that a RAID1 would kill the speed of SSD. But then, your post title says RAID1... Now, I wanted to mention that if you know the name of your device, you can check whether it's a rotational (HDD) or not (SSD). Here is an...
Encrypted swap partition on Debian/Ubuntu
The swap partition can hold a lot of unencrypted confidential information and the fact that it persists after shutting down the computer can be a problem. Encrypting a swap partition however is slightly tricky if one wants to also support s...
Manually expanding a RAID1 array on Ubuntu
Here are the notes I took while manually expanding an non-LVM encrypted RAID1 array on an Ubuntu machine. My original setup consisted of a 1 TB drive along with a 2 TB drive, which meant that the RAID1 array was 1 TB in size and the second ...
Recovering from an unbootable Ubuntu encrypted LVM root partition
A laptop that was installed using the default Ubuntu 16.10 (xenial) full-disk encryption option stopped booting after receiving a kernel update somewhere on the way to Ubuntu 17.04 (zesty). After showing the boot screen for about 30 seconds...
pages tagged luks
No description
Encrypting your home directory using LUKS on Debian/Ubuntu
I was wondering about the passphrase LUKS requires to decrypt. Where should I setup it up to decrypt files upon user login? Thanks! Thanks for the info, but where do you enter the password when using this method? As long as your home direct...
Debugging Gearman configuration
Gearman is a queuing system that has been in Debian for a long time and is quite reliable. I ran into problems however when upgrading a server from Debian squeeze to wheezy however. Here's how I debugged my Gearman setup. Log verbosity...
Sample Python application using Libgearman
Gearman is a distributed queue with several language bindings . While Gearman has a nice Python implementation ( python-gearman ) of the client and worker, I chose to use the libgearman bindings ( python-libgearman ) directly since they are...