Skip to content

Instantly share code, notes, and snippets.

View choucavalier's full-sized avatar

Valentin Iovene choucavalier

View GitHub Profile
@andy-thomason
andy-thomason / Genomics_A_Programmers_Guide.md
Created May 14, 2019 13:32
Genomics a programmers introduction

Genomics - A programmer's guide.

Andy Thomason is a Senior Programmer at Genomics PLC. He has been witing graphics systems, games and compilers since the '70s and specialises in code performance.

https://www.genomicsplc.com

@cryzed
cryzed / fix-infinality.md
Last active March 20, 2025 13:16
A set of instructions on how to fix the harfbuzz + Infinality issue and restoring good-looking, Infinality-like font rendering.

Disclaimer: Please follow this guide being aware of the fact that I'm not an expert regarding the things outlined below, however I made my best attempt. A few people in IRC confirmed it worked for them and the results looked acceptable.

Attention: After following all the steps run gdk-pixbuf-query-loaders --update-cache as root, this prevents various gdk-related bugs that have been reported in the last few hours. Symptoms are varied, and for Cinnamon the DE fails to start entirely while for XFCE the icon theme seemingly can't be changed anymore etc.

Check the gist's comments for any further tips and instructions, especially if you are running into problems!

Screenshots

Results after following the guide as of 11.01.2017 13:08:

@4e4c52
4e4c52 / assets.js.coffee
Created June 29, 2012 12:09
Javascript File Upload
jQuery ->
$('#tutorials').change ->
$('#asset_chapter_id').after('<span id="loader">&nbsp;<img src="/assets/icons/loader.gif" alt="#" />&nbsp;Loading chapters...</span>')
tutorial = $(@).val()
$.getJSON '/admin/assets/chapters/' + tutorial + '.json', (data) ->
output = ""
for chapter in data
output += '<option value="' + chapter[1] + '">' + chapter[0] + '</option>'
$('#asset_chapter_id').html('').html(output)
$('#loader').remove()