Skip to content

Instantly share code, notes, and snippets.

View nanpuhaha's full-sized avatar
🌴
On vacation

Seo, Jang-won nanpuhaha

🌴
On vacation
  • Seoul, South Korea
View GitHub Profile
@nanpuhaha
nanpuhaha / How-to-build-frida-server-for-ios.md
Created July 31, 2023 01:44 — forked from miticollo/How-to-build-frida-server-for-ios.md
How to build frida server for iOS jailbroken devices

Here, I'll show you how to compile Frida for both rootfull and rootless jailbreaks.

TL;DR

On Dopamine/Fugu15 Max or palera1n you can add my repo (open the link in your favorite browser on your jailbroken iDevice).

The DEBs you will install are build using the following instructions.

Build Instructions

@nanpuhaha
nanpuhaha / Lily58-_____.kbd.json
Created March 25, 2023 10:11 — forked from elfmimi/Lily58-Nicola.kbd.json
Lily58 親指シフト
[
{
"name": "Lily58 親指シフト"
},
[
{
"x": 3,
"a": 7
},
"",
@nanpuhaha
nanpuhaha / dijkstra.py
Last active February 20, 2023 01:51
Coding Test
import heapq
import sys
INF = float('inf') # or sys.maxsize
def dijkstra(start: int, graph: list) -> list:
queue = []
heapq.heappush(queue, (0, start))
shortest_distances = [INF] * len(graph)
shortest_distances[start] = 0
@nanpuhaha
nanpuhaha / preRequestScript.js
Created February 9, 2023 23:51 — forked from ptrstpp950/preRequestScript.js
Calculate TOTP in Postman
//Article about TOTP on my blog https://stapp.space/generate-totp-in-postman/
/**
* @preserve A JavaScript implementation of the SHA family of hashes, as
* defined in FIPS PUB 180-4 and FIPS PUB 202, as well as the corresponding
* HMAC implementation as defined in FIPS PUB 198a
*
* Copyright Brian Turek 2008-2017
* Distributed under the BSD License
* See http://caligatio.github.com/jsSHA/ for more information
@nanpuhaha
nanpuhaha / expand.js
Created January 3, 2023 00:26
AIHub에서 자동으로 더보기 버튼을 눌러서 전체 목록 보기
// ==UserScript==
// @name AIHub 전체 목록 (자동 더보기)
// @namespace http://aihub.or.kr/
// @version 0.1
// @description AIHub에서 데이터셋을 찾을때, 자동으로 더보기 버튼을 눌러서 전체 목록 보기
// @author Jangwon Seo
// @match https://aihub.or.kr/aihubdata/data/list.do?*
// @icon https://www.google.com/s2/favicons?sz=64&domain=aihub.or.kr
// @grant none
// ==/UserScript==
@nanpuhaha
nanpuhaha / gist:05f175a6c2c7f185898dc99d835d1add
Created December 14, 2022 05:42 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@nanpuhaha
nanpuhaha / script.js
Last active November 8, 2022 02:32
부스트캠프 실명인증 자동입력 및 자동발송
// ==UserScript==
// @name 부스트캠프 실명인증 양식 입력 및 인증문자 발송 자동화
// @namespace https://nid.naver.com
// @version 0.2
// @description 부스트캠프 실명인증 양식 입력 및 인증문자 발송 자동화
// @author Jangwon Seo
// @match https://nid.naver.com/iasystem/pop2.nhn?todo=phoneAuth_popup&target=persAuth_popup&token=*&return_url=https%3A%2F%2Fwww.boostcourse.org%2FrealName%2Fauth%2Fstatus
// @icon https://www.google.com/s2/favicons?sz=64&domain=naver.com
// @grant none
// ==/UserScript==
@nanpuhaha
nanpuhaha / twitch-recorder.py
Created April 22, 2022 17:34 — forked from junian/twitch-recorder.py
Record Twitch Streams Automatically in Python
# This code is based on tutorial by slicktechies modified as needed to use oauth token from Twitch.
# You can read more details at: https://www.junian.net/2017/01/how-to-record-twitch-streams.html
# original code is from https://slicktechies.com/how-to-watchrecord-twitch-streams-using-livestreamer/
import requests
import os
import time
import json
import sys
import subprocess
@nanpuhaha
nanpuhaha / adblock_filter.txt
Last active January 23, 2021 02:12
Adblock Filter
[Adblock Plus 2.0]
! Version: v20210123
! Title: My Personal AdBlock Filter
! Last modified: 2021-01-23
! Expires:
! Homepage:
!
! https://help.getadblock.com/support/solutions/articles/6000165012-how-to-create-your-own-personal-filter-list
! https://kb.adguard.com/ko/general/how-to-create-your-own-ad-filters
!
// ==UserScript==
// @name Danawa Ad Clean
// @namespace http://prod.danawa.com/
// @version 0.1
// @description Make Danawa clean from the Ads
// @author nanpuhaha
// @match http://prod.danawa.com/*
// @grant none
// ==/UserScript==