The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
#!/usr/bin/env perl -w | |
use strict; | |
use vars qw/$VERSION %IRSSI $NAME/; | |
$| = 1; # flush the output buffer preceding the next output | |
$NAME = 'changeme'; | |
$VERSION = '0.1'; | |
%IRSSI = ( |
You got your hands on some data that was leaked from a social network and you want to help the poor people.
Luckily you know a government service to automatically block a list of credit cards.
The service is a little old school though and you have to upload a CSV file in the exact format. The upload fails if the CSV file contains invalid data.
The CSV files should have two columns, Name and Credit Card. Also, it must be named after the following pattern:
YYYYMMDD
.csv.
set nocompatible " use vim settings instead of vi settings | |
filetype plugin indent on " enable file type detection and do language-dependent indenting | |
syntax on " switch syntax highlighting oe it is there | |
set backspace=indent,eol,start " sane backspace behavior | |
set smarttab " tab and backspace are smart | |
set number " line numbers | |
set autoindent " use indentation of previous line | |
set showmatch " show matching braces | |
set tabstop=4 " tab width is 4 spaces | |
set shiftwidth=4 " indent also with 4 spaces |
The following rules of programming style are excerpted from the book "The Elements of Programming Style" by Kernighan and Plauger, published by McGraw Hill. Here is quote from the book: "To paraphrase an observation in The Elements of Style by Strunk and White, the rules of programming style, like those of English, are sometimes broken, even by the best writers. When a rule is broken, however, you will usually find in the program some compensating merit, attained at the cost of the violation. Unless you are certain of doing as well, you will probably do best to follow the rules."
by xero updated 10.29.24
* { | |
font-size: 12pt; | |
font-family: monospace; | |
font-weight: normal; | |
font-style: normal; | |
text-decoration: none; | |
color: black; | |
cursor: default; | |
} |
The Rust beta only permits use of stable features, and there's an ongoing effort to limit popular crates to the stable subset. The beta will probably lure in new users who want to start building stuff, and this list is intended to be a helpful source for figuring out what libraries they might use.
root@1eec2cd3-2cba-e416-e1b6-845b715b736c:~# uname -a | |
Linux 1eec2cd3-2cba-e416-e1b6-845b715b736c 3.13.0 BrandZ virtual linux x86_64 x86_64 x86_64 GNU/Linux | |
root@1eec2cd3-2cba-e416-e1b6-845b715b736c:~# rustc -Vv | |
rustc 1.0.0-nightly (44a287e6e 2015-01-08 17:03:40 -0800) | |
binary: rustc | |
commit-hash: 44a287e6eb22ec3c2a687fc156813577464017f7 | |
commit-date: 2015-01-08 17:03:40 -0800 | |
host: x86_64-unknown-linux-gnu | |
release: 1.0.0-nightly | |
root@1eec2cd3-2cba-e416-e1b6-845b715b736c:~# cat hello.rs |