Skip to content

Instantly share code, notes, and snippets.

@MadcapJake
MadcapJake / Launch.log
Created November 21, 2014 06:26
A:CE - Game crashes right at start of loading game with all bots
Log: Log file open, 11/21/14 00:17:02
Init: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467
DevConfig: GConfig::Find has loaded file: ..\..\Engine\Config\ConsoleVariables.ini
Init: Version: 10897
Init: Epic Internal: 0
Init: Compiled (32-bit): Nov 20 2014 10:33:56
Init: Changelist: 1532151
Init: Command line: -seekfreeloadingpcconsole -NOSCREENMESSAGES
Init: Base directory: C:\Program Files (x86)\Steam\steamapps\common\Cyber Disk\Binaries\Win32\
[0000.23] Init: Computer: HEGEL5
shared dynamic Buffer {
}
@MadcapJake
MadcapJake / express.ceylon
Last active August 29, 2015 14:14
Ceylon Express attempt
dynamic Express {}
Application requireExpressAndCallConstructor() {
dynamic { return require("express")(); }
}
dynamic Request {}
dynamic Response {
shared formal void send(String string);
@MadcapJake
MadcapJake / maven.log
Created February 7, 2015 21:32
ceylon-ide-eclipse maven build failure
C:\Users\madca_000
λ cd git\ceylon-dev\ceylon-ide-eclipse\
warning: LF will be replaced by CRLF in tests/com.redhat.ceylon.eclipse.ui.test/resources/model-loader-tests/declarations/src/declarations/A.ceylon.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in tests/com.redhat.ceylon.eclipse.ui.test/resources/model-loader-tests/declarations/src/declarations/Annotations.ceylon.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in tests/com.redhat.ceylon.eclipse.ui.test/resources/model-loader-tests/declarations/src/declarations/Any.ceylon.
The file will have its original line endings in your working directory.
@MadcapJake
MadcapJake / maven.log
Last active August 29, 2015 14:15
maven fail
[INFO] Scanning for projects...
[INFO] Computing target platform for MavenProject: com.redhat.ceylon.eclipse:com.redhat.ceylon.eclipse.ui.jdt.debug.fragment:1.1.1-SNAPSHOT @ C:\Users\madca_000\git\ceylon-dev\ceylon-ide-eclipse\plugins\com.redhat.ceylon.eclipse.ui.jdt.debug.fragment\pom.xml
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/ (0B at 0B/s)
[INFO] Adding repository http://download.eclipse.org/releases/kepler
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/201402280900/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/201309270900/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/201306260900/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/technology/epp/packages/kepler/ (0B at 0B/s)
[INFO] Adding repository http://download.eclipse.org/technology/swtbot/releases/latest
[INFO] Adding repository file:../ceylon-dist/osgi/build/dist
@MadcapJake
MadcapJake / run.ceylon
Last active August 29, 2015 14:15
Ceylon Express Typesafe Interface
"Run the module `my.blog`."
shared void run() {
Application app;
app = Application();
dynamic server = app.js.listen(3000, void () {
dynamic {
console.log(
@MadcapJake
MadcapJake / MithrilNode.eg
Last active August 26, 2015 17:53
Earl Grey Mithril
require: mithril
provide: percent as [%]
MithrilNode = (tags, props, Array! children) ->
mithril(tags.join(""), props, children)
macro{MithrilNode} percent = #data{x, y} ->
let {=> MithrilNode} = @deps
`[^x % ^y] where ENode = [^MithrilNode]
@MadcapJake
MadcapJake / toolbar.cson
Last active September 12, 2015 18:34
My Atom Toolbar
[
{
type: 'button'
icon: 'navicon-round'
iconset: 'ion'
callback: 'command-palette:toggle'
tooltip: 'Toggle Command Palette'
}
{
type: 'button'
@MadcapJake
MadcapJake / styles.less
Last active January 3, 2018 12:53
Nucleus Dark UI + Base16[Ocean] + Arc-Dark + Tweaks
//
// Arc/Solus Tweaks
//
// Fix keybindings
kbd {
color: #a9caf1;
border-color: #a9caf1;
}
// Fix readme code blocks
@MadcapJake
MadcapJake / COMMOJI.md
Last active January 26, 2016 15:10
Git Commit Message Guidelines

Git Commit Messages

  • Use the present tense ("Add feature" not "Added feature")
  • Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
  • Limit the first line to 72 characters or less
  • Reference issues and pull requests liberally
  • Consider starting the commit message with an applicable emoji:
    • 🎨 :art: when improving the format/structure of the code
    • 💡 :bulb: when working on a new idea
  • 🚧 :construction: when working on something highly unfinished