Skip to content

Instantly share code, notes, and snippets.

View ILM126's full-sized avatar
💭
You'll find me on GitLab now-a-days https://gitlab.com/TrebleSketch

Treble Sketch ILM126

💭
You'll find me on GitLab now-a-days https://gitlab.com/TrebleSketch
View GitHub Profile
@soatok
soatok / letter.md
Last active May 22, 2016 09:35
Open Letter to Tomorrow's Furry Website Owners

If you don't make security a top priority, you will get breached. If you take nothing else away from this letter, let it be those words.


Let's talk, furries.

As we all know, FurAffinity got hacked not too long ago. Rather than rehash the events as they're still unfolding, let's just call it a grease-fire that the staff are desperately trying to put out by

@grimmdev
grimmdev / Translate.cs
Last active August 26, 2022 16:25
Translate method/api using Unity 3D. Completely Free with no Restrictions, by using Google's Internal API, we cut out the need for any api keys.
// We need this for parsing the JSON, unless you use an alternative.
// You will need SimpleJSON if you don't use alternatives.
// It can be gotten hither. http://wiki.unity3d.com/index.php/SimpleJSON
using SimpleJSON;
using UnityEngine;
using System.Collections;
public class Translate : MonoBehaviour {
// Should we debug?
@kristopherjohnson
kristopherjohnson / zenburn_xamarin.json
Last active March 2, 2016 13:06
Zenburn theme for Xamarin Studio
{
"name":"Zenburn",
"version":"1.0",
"description":"Low-contrast dark scheme",
"baseScheme":"Nightshade",
"colors":[
{"name": "Fold Square", "color":"#93B3A3", "secondcolor":"#000000" },
{"name": "Fold Cross", "color":"#93B3A3", "secondcolor":"#000000" },
{"name": "Underline(Error)", "color":"#FF0000", "secondcolor":"#000000" } ],
"text":[
@cmfcmf
cmfcmf / Update, edit and develop Tumblr Theme dynamically.js
Last active July 29, 2019 15:39
Creating and developing own tumblr themes has always been a pitty. However, this single line of javascript will help you A LOT. Follow the instuctions in the first comment below to get your own live version of your theme.
setInterval(function(){jQuery.ajax('YOUR-URL-TO-THE-THEME-FILE',{cache:false}).success(function(html){var btn=jQuery("div[data-action='update_preview']").first();if(html!=ace.edit('editor').getValue()){ace.edit('editor').setValue(html);if(!btn.hasClass('disabled'))btn.click()}});},1000);