Skip to content

Instantly share code, notes, and snippets.

View codemasher's full-sized avatar
🏳️‍🌈

smiley codemasher

🏳️‍🌈
View GitHub Profile
<?php
function x(){$t=time();$f=mktime(date('H',$t),date('i',$t),date('s',$t),date('m',$t),1,date('Y',$t));$z=date('w',$f);$s=$z===0?6:$z-1;$c=date('D j M Y H:i:s', $t).chr(10);for($w=0,$y=$s*-1;$w<ceil(($s+date('t',$f))/7);$w++){$c.=date('W',$f+$w*604800).' ';for($d=0; $d<7; $d++,$y++){$c.=date('d',$f+$y*86400).' ';}$c.=chr(10);}$c.=chr(10);return $c;}echo x();
/**
* Created by Smiley on 19.06.2016.
*/
/**
* Class GW2GeoJSON
*/
class GW2GeoJSON{
/**
@codemasher
codemasher / gitter-fixes.css
Created July 28, 2016 19:09
embed fixes for gitter.im
/* limit embed height and align left */
.embed {
height: inherit;
max-height: 640px;
overflow: inherit;
position: initial;
}
/* don't stretch code blocks over the whole screen */
pre code {
@codemasher
codemasher / LICENSE.txt
Created November 8, 2017 17:54 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@codemasher
codemasher / mumblelink.php
Last active October 17, 2021 22:22
Guild Wars 2 Mumble link stuff
/* ==UserStyle==
@name github-tweaks
@namespace github.com/codemasher/github-tweaks
@version 2.0.0
@description Tweaks for the "new" GitHub style 06/2020, update 06/2023, update 02/2024
@author codemasher
@license MIT
@link https://gist.github.com/codemasher/e4fea480849e0f984b7fb2accd759e95
==/UserStyle== */
@codemasher
codemasher / spotify-apidoc-scraper.js
Last active March 23, 2021 09:32
API Doc Scraper: Endpoint Maps
/**
* Quickly scrape the API endpoints from the documentation.
* Open the browser console and drop the code there. Copy the JSON from the console. enjoy!
*
* @link https://developer.spotify.com/documentation/web-api/reference/
*
* @created 21.03.2021
* @author @codemasher
* @copyright 2021 @codemasher
* @license MIT
@codemasher
codemasher / pathfinder-poc.php
Created February 2, 2022 20:12
Spotify artist/album metadata via web client API proof of concept. https://twitter.com/Screamales/status/1488891097384468480
<?php
/**
* Fetch artist/album metadata from the "inofficial" Spotify web client API
* no Spotify account or developer access required
*
* @created 02.02.2022
* @copyright 2022 smiley <@codemasher>
* @license WTFPL
*/
<?php
/**
* This code generates an SVG QR code with rounded corners. It uses a round rect for each square and then additional
* paths to fill in the gap where squares are next to each other. Adjacent squares overlap - to almost completely
* eliminate hairline antialias "cracks" that tend to appear when two SVG paths are exactly adjacent to each other.
*
* composer require chillerlan/php-qrcode (tested with version v5 dev-main)
*/
@codemasher
codemasher / lyrics-poc.php
Created September 22, 2022 16:24
Spotify lyrics API fetch proof of concept
<?php
/**
* spotify lyrics proof-of-concept
*
* @created 22.09.2022
* @author smiley <smiley@chillerlan.net>
* @copyright 2022 smiley
* @license MIT
*/