Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% comment %} | |
| update image path to your rel path | |
| usage: | |
| {% include image src="post.images[0]" %} | |
| {% include image src="whatnot.jpg" %} | |
| {% endcomment %} | |
| {% assign imgpath="/images/" %} | |
| {% if include.src %} | |
| <img src="{{ imgpath }}{{include.src}}"> | |
| {% elsif post.images[0] != NULL %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Beemo by Antivapor | |
| $fn=50;//number of fragments for arcs | |
| //triangle button parameters | |
| a=-5;//x | |
| b=2;//z | |
| c=-3.5;//y, use diffence of abs(a-c) for scaling | |
| d=b+2;//z-thickness | |
| p1=[a,b,c]; | |
| p2=[a,d,c]; | |
| p3=[a,d,a]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name piratebay | |
| // @match https://thepiratebay.se/* | |
| // @match http://thepiratebay.se/* | |
| // @run-at document-end | |
| // @grant none | |
| // @version 1 | |
| // ==/UserScript== | |
| document.getElementsByName("orderby").item(0).setAttribute("value","7"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name SFSU | |
| // @namespace namethisspace | |
| // @description Personal user script for SFSU | |
| // @include https://idp.sfsu.edu/idp/Authn/UserPassword | |
| // @require http://code.jquery.com/jquery-latest.min.js | |
| // @version 1 | |
| // ==/UserScript== | |
| // This user script auto-logs you into SFSU. I suggest that you do not save your password OR username in this. Instead, make a quick script to save your username and password in Greasemonkey's persistent data. I made this because I was continually annoyed at how many times I have to log back in. Be safe with your information. | |
| // Example of such a script: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if {{page.github}} == NULL %} | |
| <div class='fork_this'><a href='https://github.com/antivapor'></a></div> | |
| {% else %} | |
| <div class='fork_this'><a href='{{page.github}}'></a></div> | |
| {% endif %} |
NewerOlder