Object.values(gameSpace.gameState).find(x => x.name == 'Shota').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
/* | |
* DISCLAIMER: | |
* This script extracts sensitive financial information (transaction data) from Wealthsimple. | |
* Ensure that you use this script in a secure environment and handle the extracted data responsibly. | |
* The developer of this script is not responsible for any issues or troubles that arise from its use. | |
*/ | |
(async function () { | |
"use strict"; | |
const transactions = []; |
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 Export Wealthsimple transactions to CSV for YNAB | |
// @namespace https://shotasenga.com/ | |
// @version 2024090300 | |
// @description Export transactions from Wealthsimple to a CSV file for YNAB import | |
// @author Shota Senga | |
// @match https://my.wealthsimple.com/app/activity* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=wealthsimple.com | |
// @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
import re | |
import datetime | |
import piexif | |
import glob | |
import json | |
import os | |
from PIL import Image | |
import shutil | |
def iterate_images(directory): |
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 Copy page info to the clipboard | |
// @namespace https://shotasenga.com/ | |
// @version 1.0.2 | |
// @description CTRL+C to copy page info | |
// @author [email protected] | |
// @match *://*/* | |
// @grant GM_setClipboard | |
// @grant GM_notification | |
// ==/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
// ==UserScript== | |
// @name Firepoker.io Bind Keys | |
// @namespace https://shotasenga.com/ | |
// @version 1.0.2 | |
// @description Define keyboard shortcuts to vote on Firepoker.io | |
// @author [email protected] | |
// @match https://firepoker.io/ | |
// @match https://firepoker.app/ | |
// @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
#!/bin/bash | |
# | |
# Sort commit hash in topological order (oldest -> newest) | |
# *Unknown commit hash will be silently ignored | |
# | |
# This can be used to cherry-pick commits in appropriate order | |
# $ git cherry-pick `git sort hash-1 hash-2 ... hash-n` | |
# $ git cherry-pick `cat /path/to/commit-hash/file | git sort` | |
# create temporary file descriptor (see: https://unix.stackexchange.com/a/181938/501792) |
title | slug | date | draft | tags | categories | image | ||
---|---|---|---|---|---|---|---|---|
ソフトウェア開発者として海外🇨🇦で働く:就活・面接対策 |
work-in-canada-part2 |
2020-12-28 04:05:00 -0800 |
false |
|
|
hero.jpg |
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
[[source]] | |
name = "pypi" | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
[dev-packages] | |
[packages] | |
python-frontmatter = "*" |
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 path = require("path"); | |
const withImages = require("next-images"); | |
let config = { | |
distDir: "../../dist/client", | |
experimental: { | |
css: true, | |
scss: true | |
}, | |
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => { |
NewerOlder