- It Doesn't Have To Suck
- SIEGE 2013: You're Responsible
- Technical Direction: Communication, ROI and Triage
- Solving the Right Problems for Engine Programmers (TGC 2017)
- Should your Engineering Lead be fired?
- What Specific Change Do I Want?
- Empathy - 10 Questions To Ask Myself
- Lead Quick Start Guide
- [How much time should I spend coding versus managing?](https://itsyourturnblog.com/how-much-time-should-i-spend-coding-versus-managing-4f8e5c4551c6
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <libtcc.h> | |
| void callme(int x) { | |
| printf("hello, %d\n", x); | |
| } | |
| void error_func(void * user, const char * msg) { | |
| printf("TCC Error: %s\n", msg); |
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
| typedef struct { | |
| float seconds_delta; | |
| double seconds; | |
| stbp_uint64 ns; | |
| stbp_uint64 ns_delta; | |
| stbp_uint64 ms; | |
| stbp_uint64 ms_delta; | |
| } stbp_time_info; | |
| typedef struct { |
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
| " ------------------------------------- | |
| " Context filetypes for NERDCommenter and more | |
| " ------------------------------------- | |
| if !exists('g:context_filetype#same_filetypes') | |
| let g:context_filetype#filetypes = {} | |
| endif | |
| let g:context_filetype#filetypes.svelte = | |
| \ [ | |
| \ {'filetype' : 'javascript', 'start' : '<script>', 'end' : '</script>'}, | |
| \ { |
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
| /** | |
| * Advanced Window Snap | |
| * Snaps the active window to a position within a user-defined grid. | |
| * | |
| * @author Andrew Moore <andrew+github@awmoore.com> | |
| * @contributor jballi | |
| * @contributor park-brian | |
| * @contributor shinywong | |
| * @version 1.2 | |
| */ |
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
- Create a bare clone of the repository.
(This is temporary and will be removed so just do it wherever.)
git clone --bare git@github.com:usi-systems/easytrace.git
It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.
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
| const I = x => x | |
| const K = x => y => x | |
| const A = f => x => f (x) | |
| const T = x => f => f (x) | |
| const W = f => x => f (x) (x) | |
| const C = f => y => x => f (x) (y) | |
| const B = f => g => x => f (g (x)) | |
| const S = f => g => x => f (x) (g (x)) | |
| const S_ = f => g => x => f (g (x)) (x) | |
| const S2 = f => g => h => x => f (g (x)) (h (x)) |
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 node | |
| var launch = require('chrome-launch') | |
| console.log("Launching") | |
| launch('http://localhost:9966/', { | |
| args: [ | |
| '--remote-debugging-port=9222' | |
| ] | |
| }) |
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
| // Based on http://www.jsoftware.com/jwiki/Essays/Incunabulum | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| typedef struct a { | |
| long t; | |
| long r; | |
| long d[3]; | |
| long p[2]; |
NewerOlder