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
***NOTICE OF ACCOUNT CLOSURE*** | |
Greetings, | |
Account: [email protected] | |
Account Action: Account Closure - Overwatch Account | |
Offense: Unauthorized Cheat Programs ("Hacks") | |
Recent activity on this account shows the use of an unauthorized cheat program, also known as a "hack.", which harms the intended player experience. |
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
// Step9LetsGo.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include "Includes.h" | |
#include "Process.h" | |
int main() | |
{ |
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
spawn(fn -> IO.puts "hello from process" end) | |
for _ <- 1..10 do IO.puts "hello" 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
group :development do | |
# Help to kill N+1 queries and unused eager loading | |
gem 'bullet' # https://github.com/flyerhzm/bullet | |
# Better error page for Rack apps | |
gem 'better_errors' # https://github.com/charliesome/better_errors | |
gem 'binding_of_caller' | |
# A sampling call-stack profiler for ruby 2.1+ | |
gem 'stackprof' # https://github.com/tmm1/stackprof | |
# Debugging | |
gem 'byebug' # https://github.com/deivid-rodriguez/byebug |
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
https://www.npmjs.com/package/mongoosastic | |
https://www.npmjs.com/package/elasticsearch | |
https://www.npmjs.com/package/mongoose | |
https://github.com/sahat/hackathon-starter | |
https://github.com/scotchfield/elasticsearch-react-example | |
http://expressjs.com/ |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.tabSize": 2, | |
"editor.rulers": [80], | |
"editor.fontSize": 12, | |
"files.trimTrailingWhitespace": true, | |
"telemetry.enableCrashReporter": false, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, |
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ "key": "cmd+t", "command": "workbench.action.quickOpen" }, | |
{ "key": "cmd+r", "command": "workbench.action.quickOpen" }, | |
{ "key": "cmd+e", "command": "editor.action.goToDeclaration", "when": "editorTextFocus" }, | |
{ "key": "cmd+shift+e", "command": "editor.action.previewDeclaration" }, | |
{ "key": "cmd+y", "command": "redo", "when": "editorTextFocus" }, | |
{ "key": "cmd+1", "command": "workbench.action.openEditorAtIndex1" }, | |
{ "key": "cmd+2", "command": "workbench.action.openEditorAtIndex2" }, | |
{ "key": "cmd+3", "command": "workbench.action.openEditorAtIndex3" }, |
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
value_matrix = { "zero" => 0, | |
"one" => 1, | |
"two" => 2, | |
"three" => 3, | |
"four" => 4, | |
"five" => 5, | |
"six" => 6, | |
"seven" => 7, | |
"eight" => 8, | |
"nine" => 9 } |
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
def zero(method = nil) | |
calculate(method, 0) | |
end | |
def one(method = nil) | |
calculate(method, 1) | |
end | |
def two(method = nil) | |
calculate(method, 2) | |
end | |
def three(method = nil) |
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
git config --global push.default current |