Skip to content

Instantly share code, notes, and snippets.

View gsarig's full-sized avatar

Giorgos Sarigiannidis gsarig

View GitHub Profile
@gsarig
gsarig / Spoilers toggler for insomnia.gr
Last active May 15, 2019 12:42
A Greasemonkey script which adds a button to batch reveal spoilers on insomnia.gr. Spoiler morghulis!
// ==UserScript==
// @name Spoilers toggler for insomnia.gr
// @match https://www.insomnia.gr/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @version 1
// @grant none
// ==/UserScript==
@gsarig
gsarig / remove_greek_accents.php
Last active September 6, 2018 20:58
PHP function to remove accents from Greek text
<?php
/*
* Run it like so:
*
* $text = 'Your text';
* echo remove_greek_accents( $text );
*/
function remove_greek_accents( $string )
{