Dit is een korte uitleg hoe je gemakkelijk een film kan downloaden via torrents. Omdat meerdere mensen mij de vraag stellen hoe ik dit doe heb ik er snel een pagina voor opgezet.
- Een torrent client
- Website waar torrents beschikbaar zijn.
- Videospeler
| /* | |
| * Generate a SVG-sprite mixin for Sass | |
| * ==================================== | |
| * | |
| * Gaya Kessler - http://gaya.ninja - http://twitter.com/GayaNinja | |
| * | |
| * SVGSprite is a wonderful package, but doesn't enable responsive sprites out of the box. | |
| * This moustache template generates a sass file with a mixin for the generated SVG-sprite. | |
| * Calculates the position and size of the background by filename. | |
| * Included SVG image scales to width and height. |
| //Is it possible to extend placeholder classes and their nested compound selectors? | |
| %list { | |
| margin: 12px 0; | |
| &__item { | |
| padding: 0 5px; | |
| } | |
| } | |
| .main { |
| .container:after { | |
| content: ""; | |
| clear: both; | |
| display: table; | |
| } | |
| //or as a mixin | |
| @mixin clearfix { | |
| &:after { | |
| content: ""; |
Dit is een korte uitleg hoe je gemakkelijk een film kan downloaden via torrents. Omdat meerdere mensen mij de vraag stellen hoe ik dit doe heb ik er snel een pagina voor opgezet.
| select { | |
| //disable webkit looks | |
| -webkit-appearance: none; | |
| //disable firefox looks | |
| -moz-appearance: none; | |
| text-indent: 0.01px; | |
| text-overflow: ""; | |
| //misc |
| var vatchecker = { | |
| img: "", | |
| req: "", | |
| vat_checking: "", | |
| init: function () { | |
| vatchecker.vat_checking = $("#vat_checking .validated"); | |
| $("#vat_nr_check").keyup(function () { | |
| var country = "BE"; |
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| .michiel { | |
| color: #ffffff; | |
| } | |
| .gaya { |
| module.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| concat: { | |
| options: { | |
| separator: "\n", //add a new line after each file | |
| banner: "", //added before everything | |
| footer: "" //added after everything | |
| }, |
| <?php | |
| /** | |
| * Symbolic Press is a helper to help you use your WordPress plugins with Symbolic Links. | |
| * | |
| * Read more about it on: | |
| * @link http://www.gayadesign.com/diy/using-wordpress-plugins-as-symbolic-links/ | |
| */ | |
| class Symbolic_Press { | |
| public $plugin_path; | |
| public $plugin_name; |
| $("a[href=#]").each(function () { | |
| console.log(this); | |
| }); |