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
| from selenium import webdriver | |
| from collections import namedtuple | |
| url = "http://fifaonline4.nexon.com/datacenter/index" | |
| driver = webdriver.Chrome("./chromedriver.exe") | |
| player_data = namedtuple("player_data", "season name price") | |
| players = [] | |
| driver.get(url + "?strPlayerName=" + "<PLAYER NAME HERE>") | |
| driver.implicitly_wait(2500) |
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
| // NeverLanCTF 에서 사용하기 위해 작성함. | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.IO; | |
| namespace CSharp_Playground |
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
| stack = [] | |
| for i in input().split(' '): | |
| if i.isdigit(): | |
| stack.append(int(i)) | |
| else: | |
| a = stack.pop() | |
| b = stack.pop() | |
| if i == '+': |
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
| use std::io; | |
| fn main() { | |
| 'main: loop { | |
| let mut input = String::new(); | |
| io::stdin().read_line(&mut input).unwrap(); | |
| let input = remove_newline(&input); | |
| if input.to_lowercase() == "exit" { |
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
| import base64 | |
| url = input('Kahoot Link : ') | |
| name = input(' Username : ') | |
| print(' Scoreboard : ' + url + '?uid=' + str(base64.b64encode(name.encode()), 'utf-8') + '') |
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
| import time | |
| import serial | |
| scanner = serial.Serial('COM5', 9600) | |
| def getBeacons(ser: serial.Serial): | |
| beacons = [] | |
| ser.write(b'S') | |
| res = b'' |