- Gigabyte Z170x Gaming 5 - AR$ 4369
- Intel Boxed Core I7-6700K 4.00 GHz - USD 345.99
- Cpu Cooler Hyper 212 Evo Cooler Master - AR$ 1099.99
- Arctic Silver 5 Thermal Compound - USD 10.51
- EVGA Geforce 970 GTX 4Gb GDDR5 - AR$ 7899
- Kingston Technology HyperX FURY Black 64 GB Kit 2133 MHz - USD 284.99
- [Samsung 950 PRO Series - 512GB](https://www.amazon.com/gp/product/B01639694M/ref=oh_aui_detailpage_o03_s00
This file contains 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
#!/bin/bash | |
filename="${1%.*}" | |
extension="${1##*.}" | |
convert $1 -colorspace Gray -ordered-dither o2x2 "${filename}_gray_ordered.gif" | |
convert $1 -ordered-dither o2x2 "${filename}_ordered.gif" | |
convert $1 -monochrome "${filename}_monochrome.gif" | |
convert $1 -remap pattern:gray50 "${filename}_remap_gray.gif" | |
convert $1 -remap netscape: "${filename}_remap_netscape.gif" |
This file contains 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
require 'nokogiri' | |
require 'faraday' | |
require 'pry' | |
conn = Faraday.new | |
response = conn.get 'https://www.worldometers.info/coronavirus/' | |
covid_page = Nokogiri::HTML(response.body) | |
puts '"Country";"Infected";"Deaths";"ID ratio"' |
This file contains 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
require 'faraday' | |
require 'nokogiri' | |
response = Faraday.new.get 'https://www.santander.com.ar/ConectorPortalStore/Rendimiento' | |
html = Nokogiri::HTML(response.body) | |
desired_items = [ | |
'SUPER AHORRO $ CUOTA A', | |
'SUPER AHORRO PLUS CUOTA A', | |
'SUPERGESTION MIX VI CUOTA A' |
This file contains 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
people = ARGV | |
possible_receivers = people.dup | |
result = {} | |
people.each do |p| | |
# a person doesn't have to give a gift to himself; | |
tmp = possible_receivers.dup | |
tmp.delete(p) | |
receiver = tmp.sample |
This file contains 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
# optional, I added some of my scripts at the bottom of my ~/.zshrc | |
# (I'm using oh-my-zsh https://github.com/robbyrussell/oh-my-zsh) | |
alias canillitapp_latest="~/Scripts/latest_news.sh" | |
alias canillitapp_popular="~/Scripts/popular_news.sh" | |
alias canillitapp_search="~/Scripts/search_news.sh" | |
alias canillitapp_trending="~/Scripts/trending_news.sh" |
This file contains 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
curl api.canillitapp.com/search/scioli | jq '.[] | {title: .title, source: .source_name, date: .date | strftime("%B %d %Y %I:%M%p %Z"), url: .url}' > scioli.json |
This file contains 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
Reaction.joins(:news).where(user: user).as_json(include: :news).to_json |
This file contains 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
require 'i2c/drivers/ss1602' # https://github.com/nerab/i2c-ss1602 | |
require 'twitter' # https://github.com/sferik/twitter | |
display = I2C::Drivers::SS1602::Display.new('/dev/i2c-1', 0x27) | |
client = Twitter::Streaming::Client.new do |config| | |
config.consumer_key = "XXX" | |
config.consumer_secret = "XXX" | |
config.access_token = "XXX" | |
config.access_token_secret = "XXX" |
- Agreguen a @beerwithfriendsbot a un chat grupal.
- Empiecen a compartir sus locations.
/place
- El output que obtienen debería ser algo como esto: https://www.dropbox.com/s/20xi8e0y38v0yaw/Screenshot%202016-05-22%2013.31.03.png?dl=0
NewerOlder