Skip to content

Instantly share code, notes, and snippets.

View Danita's full-sized avatar

Daniela Rodríguez Careri Danita

View GitHub Profile
@Danita
Danita / TK90X ROM excerpt
Created February 7, 2014 13:53
Byte to change language from Portuguese to Spanish in TK90X ROM
04aa 112a3a ld de,$3a2a ; $3a2a possui mensagem "Ligue o gravador, digite ENTER"
04ad 211e00 ld hl,$001e ; $3a2a+$001e possui mensagem "Conecte grabador, digite ENTER"
04b0 1806 jr $04b8
04b2 119113 ld de,$1391 ; $1391 possui mensagens de erro em portugues
04b5 21dc24 ld hl,$24dc ; $1391+$24dc possui mensagens de erro em espanhol
04b8 dbbf in a,($bf)
04ba 17 rla
04bb 00 nop ; valor 00(nop) para espanhol ou C9(ret) para portugues
04bc 19 add hl,de
@Danita
Danita / trello_style.css
Last active December 27, 2015 18:39
Trello: Wider cards, better code format, display card id, display no. of cards (use Stylish add on for Firefox or Chrome)
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("trello.com") {
body.fixed-content #content{
width:890px !important;
}
div.window {
width:890px !important;
}
@Danita
Danita / new_relic_style.css
Created November 4, 2013 14:45
Decent typography for New Relic (use with Stylish add-on for Firefox or Chrome)
@import url(http://fonts.googleapis.com/css?family=Noto+Sans:400,400italic,700,700italic);
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("newrelic.com") {
body {
font-family: "Noto Sans", Arial, Helvetica, sans-serif!important;
}
body * {
font-family: inherit!important;
letter-spacing:normal!important;
}