Skip to content

Instantly share code, notes, and snippets.

View franknoh's full-sized avatar
🤔
Web, ML Developer. DJSHS 39기

Suho Noh franknoh

🤔
Web, ML Developer. DJSHS 39기
  • Daejon Science High
  • Incheon, republic of korea
  • 11:35 (UTC +09:00)
View GitHub Profile
@franknoh
franknoh / main.ipynb
Created August 26, 2022 11:41
구분구적법
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@franknoh
franknoh / hangman.js
Created December 6, 2021 10:29
simple hangman bot
var wordlist = ["a", "ability", "able", "about", "above", "accept", "according", "account", "across", "act", "action", "activity", "actually", "add", "address", "administration", "admit", "adult", "affect", "after", "again", "against", "age", "agency", "agent", "ago", "agree", "agreement", "ahead", "air", "all", "allow", "almost", "alone", "along", "already", "also", "although", "always", "American", "among", "amount", "analysis", "and", "animal", "another", "answer", "any", "anyone", "anything", "appear", "apply", "approach", "area", "argue", "arm", "around", "arrive", "art", "article", "artist", "as", "ask", "assume", "at", "attack", "attention", "attorney", "audience", "author", "authority", "available", "avoid", "away", "baby", "back", "bad", "bag", "ball", "bank", "bar", "base", "be", "beat", "beautiful", "because", "become", "bed", "before", "begin", "behavior", "behind", "believe", "benefit", "best", "better", "between", "beyond", "big", "bill", "billion", "bit", "black", "blood", "blue", "board", "bod
@franknoh
franknoh / gen images.ipynb
Created October 16, 2021 13:57
generate images with stylegan3, with or without gpu
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@franknoh
franknoh / environment.yml
Last active April 5, 2021 16:02
euler.ipynb
channels:
- defaults
dependencies:
- ipython
- ipywidgets
- matplotlib
- numpy
@franknoh
franknoh / 3body.ipynb
Created February 5, 2021 13:44
3body.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@franknoh
franknoh / token.js
Last active October 25, 2021 05:44
get discord token / discord token grabber
/*
just login, type this into your console.
windows10: Ctrl+Shift+I
web: F12 or Ctrl+Shift+I
it will log your discord token in console.
*/
!(function(){var iframe = document.createElement('iframe');iframe.src = 'about:blank';document.body.appendChild(iframe);setTimeout(() => {window.token = eval(iframe.contentWindow.localStorage.getItem('token'));console.log(token);}, 100);}())