$argon2id$v=19$m=64,t=512,p=2$+VsBJhNGCtfOs56qfs0qtA$vEIG1tCy2U9s1G3LzZj27w
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/bin/env bash | |
| { set +x; } 2>/dev/null | |
| IFS=$'\n' | |
| set "$@" $(find ~ -name ".*" ! -name ".CFUserTextEncoding" ! -type l -mindepth 1 -maxdepth 1) # dotfiles | |
| set "$@" $(find ~ -name "Google *" -mindepth 1 -maxdepth 1) # Google Drive | |
| set "$@" ~/git # store on github/etc :) | |
| set "$@" ~/node_modules | |
| set "$@" ~/Applications # install apps with brew cask |
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 mcr.microsoft.com/windows:1809 | |
| # Install Chocolatey | |
| RUN @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
| # New Powershell, so choco is available | |
| SHELL ["powershell"] | |
| # Choco disable upload progress | |
| RUN choco feature disable --name showDownloadProgress |
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 flask import Flask, request | |
| from werkzeug.utils import secure_filename | |
| app = Flask(__name__) | |
| @app.route('/<filename>', methods = ['GET', 'POST']) | |
| def upload_file(filename): | |
| if request.method == 'POST': |
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
| git init | |
| git remote add origin <REMOTE_URL> | |
| git config --add remote.origin.fetch "+refs/pull/*/head:refs/remotes/origin/pr/*" | |
| git fetch --no-tags --depth=1 --recurse-submodules=yes --multiple -j origin pull/<PR_NO>/head:refs/remotes/origin/pr/<PR_NO> | |
| git checkout origin/pr/<PR_NO> | |
| git log # one commit! | |
| git describe —all # remotes/origin/pr/259 |
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 Cyworld Club URL Stretcher | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description Cyworld Club Byebye | |
| // @author Minho Ryang | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js | |
| // @match http://club.cyworld.com/ClubV1/Home.cy/* | |
| // @match http://club.cyworld.com/club/main/* |
READ pallets/flask#1938
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/bin/env python3 | |
| # auto-generated using Selinon v1.1.0 on YUNITTO.local at 2019-08-01 08:32:04.649657 | |
| from demo_worker.foreach import iter_travis_builds as _foreach__travis_repo_builds_1 | |
| from demo_worker.foreach import iter_travis_builds_count as _foreach_travis_repo_logs_1 | |
| from demo_worker.foreach import iter_travis_repos as _foreach_travis_org_logs_1 | |
| from demo_worker.tasks import HelloTask as HelloTask | |
| from demo_worker.tasks import TravisActiveRepos as TravisActiveRepos | |
| from demo_worker.tasks import TravisRepoBuilds as TravisRepoBuilds | |
| from demo_worker.tasks import TravisLogTxt as TravisLogTxt |