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
| /* | |
| * Short jQuery method of making placeholders for all the browsers. | |
| * | |
| * Use the following HTML markup to make this work: | |
| * <input type="text" class="placeholder" value="Your name" data-standard="Your name" /> | |
| */ | |
| $(".placeholder").focus(function () { | |
| if ($(this).val() == $(this).attr("data-standard")) { | |
| $(this).val("").addClass("active"); //Add class for other styling |
| $("a[href=#]").each(function () { | |
| console.log(this); | |
| }); |
| <?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; |
| 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 | |
| }, |
| // ---- | |
| // Sass (v3.3.0.rc.1) | |
| // Compass (v0.13.alpha.10) | |
| // ---- | |
| .michiel { | |
| color: #ffffff; | |
| } | |
| .gaya { |
| var vatchecker = { | |
| img: "", | |
| req: "", | |
| vat_checking: "", | |
| init: function () { | |
| vatchecker.vat_checking = $("#vat_checking .validated"); | |
| $("#vat_nr_check").keyup(function () { | |
| var country = "BE"; |
| select { | |
| //disable webkit looks | |
| -webkit-appearance: none; | |
| //disable firefox looks | |
| -moz-appearance: none; | |
| text-indent: 0.01px; | |
| text-overflow: ""; | |
| //misc |
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.
| .container:after { | |
| content: ""; | |
| clear: both; | |
| display: table; | |
| } | |
| //or as a mixin | |
| @mixin clearfix { | |
| &:after { | |
| content: ""; |
| //Is it possible to extend placeholder classes and their nested compound selectors? | |
| %list { | |
| margin: 12px 0; | |
| &__item { | |
| padding: 0 5px; | |
| } | |
| } | |
| .main { |