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 requests | |
| from bs4 import BeautifulSoup | |
| class DepositCaseScraper: | |
| def __init__(self): | |
| self.base_url = "https://ekt.scourt.go.kr/ekt/sasrh/saSrch/inqKggsokPlanKtsaMok.dev" | |
| self.__user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36" | |
| self.__session = None | |
| self.__courts = None |
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 requests | |
| import cv2 | |
| import math | |
| import time | |
| from getpass import getpass | |
| from bs4 import BeautifulSoup | |
| base_url = "http://www.safetyedu.org" | |
| session: requests.Session = None |
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
| // ==UserScript== | |
| // @name Remove all content in My List for Netflix | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Remove all content in My List for Netflix | |
| // @author lstar2397 | |
| // @match https://www.netflix.com/browse/my-list | |
| // @icon https://www.netflix.com/favicon.ico | |
| // @grant none | |
| // ==/UserScript== |
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
| #include <stdio.h> | |
| #include <string.h> | |
| #define SIZE 100 | |
| int formulaLength; | |
| char formula[SIZE]; | |
| char _matchStick1[8][2] = { {'0', '8'}, {'1', '7'}, {'3', '9'}, {'5', '6'}, {'5', '9'}, {'6', '8'}, {'9', '8'}, {'-', '+'} }; | |
| char _matchStick2[6][2] = { {'0', '9'}, {'0', '6'}, {'2', '3'}, {'3', '2'}, {'3', '5'}, {'6', '9'} }; | |
| void MoveMatchStick1(); |
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
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| int CTI(char c); | |
| void IsFomulaZero(char c[100]); | |
| int main() | |
| { | |
| char plusMS[12][2]; |
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
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <math.h> | |
| int fieldMaxLevel; | |
| int harvestTurn[101][101]; | |
| int cropCount; | |
| struct Field |
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
| #include <stdio.h> | |
| #include <math.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| int cropCount; | |
| int harvestTurn[100][100]; | |
| struct Map | |
| { |
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
| #include <stdio.h> | |
| int currentX, currentY; | |
| int weight, height; | |
| int resultCount = 0; | |
| char currentDirection; | |
| int currentIndex; | |
| char MAP[30][30]; | |
| char Result[120][4]; | |
| void InputMapData(); |
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
| #include <stdio.h> | |
| char MAP[100][100]; | |
| int mapSize; | |
| void SpinAndSlide(); | |
| void PrintMap(); | |
| void InputMap(); | |
| int main() | |
| { |
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
| #include <stdio.h> | |
| #include <string.h> | |
| int main() | |
| { | |
| // 0 - gold, 1 - light, 2 - mana, 3 - nature, 4 - dark | |
| int resource[5] = { 0, }, resourceCount = 0; | |
| int deckSize; | |
| scanf("%d", &deckSize); | |
| if (deckSize > 12) return; | |
| for (int i = 0; i < deckSize; i++) |
NewerOlder