Skip to content

Instantly share code, notes, and snippets.

View MichaelSDavid's full-sized avatar
🐬
Just tech diving!

Michael David MichaelSDavid

🐬
Just tech diving!
View GitHub Profile
@jocelyn
jocelyn / dark_es.xml
Created November 12, 2008 13:50
pref file to have dark theme for EiffelStudio (experimental)
<EIFFEL_DOCUMENT>
<PREFERENCE NAME="tools.diagram_tool.uml.uml_client_label_color" VALUE="0;0;0"/>
<PREFERENCE NAME="editor.general.colors.normal_text_color" VALUE="255;255;255"/>
<PREFERENCE NAME="editor.general.colors.number_background_color" VALUE="0;0;0"/>
<PREFERENCE NAME="tools.diagram_tool.uml.uml_cluster_iconified_fill_color" VALUE="255;255;255"/>
<PREFERENCE NAME="editor.general.colors.margin_separator_color" VALUE="192;192;192"/>
<PREFERENCE NAME="editor.eiffel.colors.object_text_color" VALUE="121;171;255"/>
<PREFERENCE NAME="editor.eiffel.colors.folder_background_color" VALUE="0;0;0"/>
<PREFERENCE NAME="tools.diagram_tool.uml.uml_cluster_name_area_color" VALUE="255;255;255"/>
<PREFERENCE NAME="debugger.colors.grid_foreground_color" VALUE="255;255;255"/>
@tazjel
tazjel / curl.md
Created January 31, 2014 16:37 — forked from btoone/curl.md
A curl tutorial using GitHub's API

Introduction

An introduction to curl using GitHub's API

The Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin
@arrieta
arrieta / lexer.cpp
Last active July 12, 2024 10:23
Simple C++ Lexer
// A simple Lexer meant to demonstrate a few theoretical concepts. It can
// support several parser concepts and is very fast (though speed is not its
// design goal).
//
// J. Arrieta, Nabla Zero Labs
//
// This code is released under the MIT License.
//
// Copyright 2018 Nabla Zero Labs
//