Skip to content

Instantly share code, notes, and snippets.

View jonathanenlared's full-sized avatar

Jonathan Martínez jonathanenlared

View GitHub Profile
#frm_form_125_container button[type="submit"] {
background:orange;
}
#frm_form_125_container button[type="submit"]:hover {
background:darkorange;
}
#field_woi2q {
background: black;
import json
from instagram_private_api import Client, ClientCompatPatch
#Variables
user_name = 'USERNAME'
password = 'PASSWORD'
media_id = 'MEDIA_ID'
#You could try with 2535835414398697373 on media_id
class Students
attr_reader :name, :last, :age
def initialize(nombre, apellido, age)
@name = name
@last = last
@age = age
@@average = 0
end
def ask_coord
valid = true
while valid
print "Introduzca la coordenada en formato fila,columna (ejemplo -> 1,4): "
coord = gets.chomp.split(',')
puts coord
for i in 0...2
coord[i] = coord[i].to_i
end