- Down the World - Mervil's Ambition (Japan) (Demo) https://eludevisibility.org/2016/down-the-world-mervils-ambition-japan-demo
- Pikiinya! (Japan) (Sample) https://eludevisibility.org/2016/pikiinya-japan-sample
- Umi Tsuri Meijin - Suzuki Hen (Japan) (Prototype) https://eludevisibility.org/2016/umi-tsuri-meijin-suzuki-hen-japan-prototype
- Super Bomberman (USA) (Sample) https://eludevisibility.org/2010/super-bomberman-usa-sample
- Mighty Max (USA) (Demo)
- Ganba League 3 (Japan) (Sample)
- Dark Kingdom (Japan) (Prototype v0.55)
- Utopia (Broken?)
- Aretha II - Ariel no Fushigi na Tabi (Japan) (Early Beta) https://eludevisibility.org/2008/aretha-ii-ariel-no-fushigi-na-tabi-japan-early-beta
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notify: (title, options) -> | |
options.icon = options.icon or "#{window.location.protocol}//#{window.location.hostname}#{$('meta#icon-120x120').attr('href')}" | |
# Check for notification compatibility, if browser version is unsupported, be silent. | |
return unless window.Notification | |
# If the user has not been asked to grant or deny notifications from this domain | |
if Notification.permission is 'default' | |
Notification.requestPermission -> | |
@notify(title, options) | |
# If the user has granted permission for this domain to send notifications. | |
else if Notification.permission is 'granted' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"*": | |
"activate-power-mode": | |
autoToggle: false | |
"atom-beautify": | |
general: | |
_analyticsUserId: "1096fe32-134e-4c2c-a217-2e8a6324be94" | |
"atom-color-highlight": | |
hideMarkersInComments: true | |
hideMarkersInStrings: true | |
"atom-ide-ui": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/tonsky/FiraCode/wiki/Atom-instructions | |
atom-text-editor { | |
text-rendering: optimizeLegibility; // Ligatures | |
-webkit-font-feature-settings: "liga" off, "calt" off; | |
} | |
// Cursor | |
atom-text-editor .cursor { | |
position: absolute; | |
border-left: 2px solid; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
values = | |
locale_country_code: [ | |
{ title: "Andorra", value: "AD" }, | |
{ title: "United Arab Emirates", value: "AE" }, | |
{ title: "Afghanistan", value: "AF" }, | |
{ title: "Antigua and Barbuda", value: "AG" }, | |
{ title: "Anguilla", value: "AI" }, | |
{ title: "Albania", value: "AL" }, | |
{ title: "Armenia", value: "AM" }, | |
{ title: "Angola", value: "AO" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
downloadJSAtOnload = -> | |
scripts = [ | |
{ src: '//www.googleadservices.com/pagead/conversion.js' } # Google Adwords | |
{ src: '//platform.twitter.com/oct.js' } # Twitter Conversion Tracking | |
{ src: "//js.hubspot.com/analytics/#{(Math.ceil(new Date()/300000)*300000)}/123456.js", id: 'hs-analytics' } # Hubspot | |
{ src: '//tag.perfectaudience.com/serve/SHASHASHASHASHASHA.js' } # Perfect Audience | |
{ src: '//cdn.bizible.com/_biz-a.js', id: 'bizible-settings' } # Bizible | |
{ src: "#{if ("https:" is document.location.protocol) then "https://s" else "http://a"}.adroll.com/j/roundtrip.js" } # Adroll | |
] | |
for script in scripts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""\ | |
Usage: %prog [path:.] [port:12345] | |
""" | |
import os | |
import sys | |
import subprocess | |
conf_template = """\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"coffeescript_error": { | |
"level": "error" | |
}, | |
"arrow_spacing": { | |
"name": "arrow_spacing", | |
"level": "warn" | |
}, | |
"no_tabs": { | |
"name": "no_tabs", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
getLanguage: (language_code) -> | |
key = language_code.toLowerCase().replace(/-/, '_') | |
isoLangs = [ | |
{ code:"aa", name:"Afar" }, | |
{ code:"ab", name:"Abkhaz" }, | |
{ code:"ae", name:"Avestan" }, | |
{ code:"af", name:"Afrikaans" }, | |
{ code:"ak", name:"Akan" }, | |
{ code:"am", name:"Amharic" }, | |
{ code:"an", name:"Aragonese" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
background: #000; | |
} | |
</style> | |
<body> |