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
#frm_form_125_container button[type="submit"] { | |
background:orange; | |
} | |
#frm_form_125_container button[type="submit"]:hover { | |
background:darkorange; | |
} | |
#field_woi2q { | |
background: black; |
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
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 |
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
class Students | |
attr_reader :name, :last, :age | |
def initialize(nombre, apellido, age) | |
@name = name | |
@last = last | |
@age = age | |
@@average = 0 | |
end |
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
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 |