I hereby claim:
- I am hildjj on github.
- I am hildjj (https://keybase.io/hildjj) on keybase.
- I have a public key ASDmI7_8nLpfDyYA-HkxEk4fyb0n0jLhl3kCLHS1U28bCwo
To claim this, I am signing this object:
$ tokei . -e third_party -s lines | |
-------------------------------------------------------------------------------- | |
Language Files Lines Code Comments Blanks | |
-------------------------------------------------------------------------------- | |
C++ 10956 5753882 4411352 595301 747229 | |
JavaScript 58163 5690253 3657219 1214057 818977 | |
HTML 66717 3471374 3005413 130585 335376 | |
C Header 13935 2871337 1710080 754980 406277 | |
C 2999 2112200 1514317 351977 245906 | |
JSON 1174 1162180 1162180 0 0 |
'use strict' | |
class Frozen { | |
constructor() { | |
Object.freeze(this); | |
} | |
bar(...args) { | |
console.log('bar', ...args); | |
} | |
} |
<!DOCTYPE html> | |
<html> | |
<style> | |
body { | |
background: white; | |
} | |
#test:first-line { | |
color: white; | |
} | |
</style> |
I hereby claim:
To claim this, I am signing this object:
defaults write com.adiumX.adiumX AIEnableDebugLogging -bool YES |
#!/usr/bin/env coffee | |
`#!/usr/bin/env node | |
` | |
# The extra newline in the backticks is crucial. | |
# It keeps the semicolon that coffee-script adds from messing up the shebang. | |
# now compile with "coffee -bcs --no-header < foo.coffee > bin/foo" | |
# -b: bare | |
# -c: compile | |
# -s: stdio |
=;:.. | |
=====:_. | |
.=========. | |
.+===========. | |
.+===========++=. | |
-+=++======+===== | |
..=======+===+=+++. | |
.:===========+=+=+=++ | |
;==========++=+=+=+====;:.. |
I hereby claim:
To claim this, I am signing this object:
#ifndef ENUM_H | |
#define ENUM_H | |
#include <stddef.h> | |
#include <string.h> | |
#include <stdbool.h> | |
/* Entry points */ | |
/* Define an enum, suitable for putting in a .h file */ |