I hereby claim:
- I am douglascamata on github.
- I am douglascamata (https://keybase.io/douglascamata) on keybase.
- I have a public key ASDMEt8fIWbzvdVJDYSHFZu8AbrLlwYq-mRsfM3lihWxrgo
To claim this, I am signing this object:
// I'm tired of extensions that automatically: | |
// - show welcome pages / walkthroughs | |
// - show release notes | |
// - send telemetry | |
// - recommend things | |
// | |
// This disables all of that stuff. | |
// If you have more config, leave a comment so I can add it!! | |
{ |
#!/bin/bash | |
# -------------------------------------------------------------------------------------------- | |
# Installs Ruby 2.5 using rbenv/ruby-build on the Raspberry Pi (Raspbian) | |
# | |
# Run from the web: | |
# bash <(curl -s https://gist.githubusercontent.com/blacktm/8302741/raw/install_ruby_rpi.sh) | |
# -------------------------------------------------------------------------------------------- | |
# Welcome message |
I hereby claim:
To claim this, I am signing this object:
Verifying that +douglascamata is my blockchain ID. https://onename.com/douglascamata |
# name: Numist | |
function fish_prompt | |
set -l last_status $status | |
# Colours | |
set -l cyan (set_color -o cyan) | |
set -l yellow (set_color -o yellow) | |
set -l green (set_color -o green) | |
set -l red (set_color -o red) | |
set -l blue (set_color -o blue) |
if not isinstance(processing_result, list): | |
processing_result = [processing_result] | |
for user_attribute in processing_result: | |
if user_attribute is not None: | |
print "INDEXING user_attribute = '%s'" % user_attribute | |
self.es_conn.index("user", module["index_name"], user_attribute, id=attribute_id) |
def start | |
command = "" | |
command_processor = CommandProcessor.new | |
command_processor.add_command('follow', Proc.new { puts 'do some stuff' }) | |
while command != "q" | |
printf "enter command: " | |
command = gets.chomp | |
command_processor.process(command) | |
end | |
end |
def start | |
command = "" | |
command_processor = CommandProcessor.new | |
command_processor.add_command('follow', 'following') | |
while command != "q" | |
printf "enter command: " | |
command = gets.chomp | |
command_processor.process(command) | |
end | |
end |
def start | |
command = "" | |
commands = default_commands | |
add_command(commands, "follow", "following") | |
while command != "q" | |
printf "enter command: " | |
command = gets.chomp | |
process(command, commands) | |
end | |
end |
def calculate | |
bet_scores_per_type = { | |
winner_fighter_id: { @result[:winner_fighter_id] => 10 }, | |
fight_victory_type_id: { @result[:fight_victory_type_id] => 30}, | |
round: { @result[:details][:round] => 50} | |
} | |
user_bets_per_type = { | |
winner_fighter_id: @betting[:bet_fighter_id], | |
fight_victory_type_id: @betting[:fight_victory_type_id] |