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 bs4 import BeautifulSoup as BSoup | |
import requests | |
like_url = 'https://www.clien.net/service/api/board/park/{}/like' | |
popup_url = 'https://www.clien.net/service/popup/like/park/{}' | |
board = 'https://www.clien.net/service/board/park' | |
LOGIN_INFO = { | |
'userId': 'USERID', | |
'userPassword': 'PASSWORD' |
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
require("babel-register") | |
const io = require('socket.io-client') | |
const axios = require('axios') | |
const cheerio = require('cheerio') | |
let sessions = [] | |
const streamer_name = 'funzinnu' | |
const makeSocket = async (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
import requests | |
from bs4 import BeautifulSoup as BSoup | |
import xml.etree.ElementTree as ET | |
import time | |
import urllib.parse | |
import re | |
print('FMCleaner by 故술레이만') | |
time.sleep(0.1) | |
print('Licensed by GPLv3') |
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
// 추댓 | |
function voteRandomUpvoterWithReply(num) { | |
var men = [] | |
var voteIds = Array.prototype.map.call(document.querySelectorAll('div#voteLog > div.li > ul > li > a'), item => item.getAttribute('data-class')) | |
var nickTexts = Array.prototype.map.call(document.querySelectorAll('ul.fdb_lst_ul > li'), item => item) | |
.filter(item => item.querySelectorAll('div')[1].innerText.match(/(ㅌㅅ|탑승)/)) | |
.filter(item => voteIds.indexOf(item.querySelector('.meta > a').classList[0].replace('member_', '')) != -1) | |
.map(item => item.querySelector('.meta > a').innerText) | |
if(nickTexts) { | |
if(num > nickTexts.length) num = nickTexts.length |
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
#!/usr/local/bin/python | |
####################################################### | |
# ipTIME uImage Firmware Header Rewriter | |
####################################################### | |
import os, zlib | |
import binascii | |
import sys | |
from struct import * |
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
. |
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
const tmi = require('tmi.js') | |
const exec = require('child_process').exec | |
const options = require('./config') | |
const axios = require('axios') | |
const http = require('http') | |
var client = new tmi.client(options) | |
let cons = {} | |
let statistic = {} |
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 datetime | |
import time | |
from bs4 import BeautifulSoup as BSoup | |
from bs4 import NavigableString | |
cIds = { | |
'정치': ['950203', '100'], | |
'경제': ['949986', '101'], | |
'사회': ['949987', '102'] | |
} |

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 urllib.request | |
import re | |
import json | |
import os.path | |
import PIL.Image | |
import zipfile | |
import io | |
import sys | |
import glob |