This file contains hidden or 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
| \NeedsTeXFormat{LaTeX2e} | |
| \ProvidesPackage{duck}[2012/18/07 Duck style for memoir] | |
| \RequirePackage{graphicx} | |
| \RequirePackage{xcolor} | |
| \RequirePackage{tikz} | |
| \RequirePackage{xspace} | |
| \definecolor{cffffff}{RGB}{255,255,255} | |
| \definecolor{cffcc00}{RGB}{255,204,0} |
This file contains hidden or 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 | |
| # | |
| # cocoa_keypress_monitor.py | |
| # Copyright © 2016 Bjarte Johansen <Bjarte.Johansen@gmail.com> | |
| # | |
| # The MIT License (MIT) | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining | |
| # a copy of this software and associated documentation files (the | |
| # “Software”), to deal in the Software without restriction, including |
This file contains hidden or 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
| { | |
| "author": "Joshua Holbrook", | |
| "name": "hoarders", | |
| "description": "node.js's most complete \"utility grab-bag\". Dedicated to substack.", | |
| "version": "0.0.0", | |
| "dependencies": { | |
| "27bslash6-module": "*", | |
| "2co": "*", | |
| "2csv": "*", | |
| "2kenizer": "*", |
This file contains hidden or 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
| (function() { | |
| // D3.layout.force3d.js | |
| // (C) 2012 ziggy.jonsson.nyc@gmail.com | |
| // BSD license (http://opensource.org/licenses/BSD-3-Clause) | |
| d3.layout.force3d = function() { | |
| var forceXY = d3.layout.force() | |
| ,forceZ = d3.layout.force() | |
| ,zNodes = {} | |
| ,zLinks = {} |
This file contains hidden or 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
| { | |
| "AL": "Alabama", | |
| "AK": "Alaska", | |
| "AS": "American Samoa", | |
| "AZ": "Arizona", | |
| "AR": "Arkansas", | |
| "CA": "California", | |
| "CO": "Colorado", | |
| "CT": "Connecticut", | |
| "DE": "Delaware", |
This file contains hidden or 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
| int lua_load_module(lua_State* lua) | |
| { | |
| const char* lua_file = lua_tostring(lua, -1); | |
| lua_pop(lua, 1); | |
| luaL_loadfile(lua, lua_file); | |
| return 1; | |
| } | |
| int lua_find_module(lua_State* lua) | |
| { |
This file contains hidden or 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
| <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission> | |
| <uses-permission android:name="android.permission.INTERNET"></uses-permission> |
This file contains hidden or 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
| local OO = require"oo" | |
| local _M = {} | |
| do _M.Shape = OO.class({ | |
| }) | |
| function _M.Shape:__init() | |
| error("attempt to instantiate abstract shape") | |
| end |
This file contains hidden or 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
| return { | |
| myfunc = function() | |
| print 'in foo.myfunc' | |
| end | |
| } |
This file contains hidden or 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 | |
| # coding: utf-8 | |
| """ | |
| String to Brainfuck. | |
| Converts a string to a brainfuck code that prints that string. | |
| Author: j0hn <j0hn.com.ar@gmail.com> | |
| """ |