Skip to content

Instantly share code, notes, and snippets.

View mark05e's full-sized avatar

mark05E mark05e

View GitHub Profile
@mark05e
mark05e / wealthsimple-transaction-for-ynab.user.js
Last active February 8, 2026 19:19 — forked from shotasenga/wealthsimple-transaction-for-ynab.user.js
Export transactions from Wealthsimple to a CSV file for YNAB import
// ==UserScript==
// @name Export Wealthsimple transactions to CSV for YNAB
// @namespace wealthsimple.activity.export
// @version 20260208
// @description Export transactions from Wealthsimple to a CSV file for YNAB import with enhanced Payee info
// @author https://gist.github.com/shotasenga
// @author https://gist.github.com/kaipee
// @author https://gist.github.com/mark05e
// @downloadURL https://gist.githubusercontent.com/mark05e/4e8bcfa54df846529a0bd756c27f2222/raw
// @updateURL https://gist.githubusercontent.com/mark05e/4e8bcfa54df846529a0bd756c27f2222/raw

Extracting Custom Font Icons: A Step-by-Step Guide

Summary

This guide outlines the process of extracting custom font icons from a font file (EV-IVR--Script-Studio) using FontForge. With the assistance of Meta AI, we successfully extracted the required icons in SVG format.

Steps Taken

Step 1: Inspect Element and Identify Font Family

Exploring Available Certificate Authorities in AWS Lambda

Analysis of the Certificate Authorities accessible within AWS Lambda.

Instructions

winget install -e --id Git.Git

winget install -e --id=Python.Python.3.13

winget install -e --id Microsoft.VisualStudioCode

winget install -e --id Microsoft.PowerShell

# Get all files in the current directory, excluding the output file
Get-ChildItem -File | Where-Object {$_.Name -ne "file_contents.txt"} | ForEach-Object {
# Print the filename
"Filename: $($_.Name)"
# Print the file contents
"Contents:"
Get-Content -Path $_.FullName
"------------------------"
} | Out-File -FilePath "file_contents.txt" -Encoding utf8

Excel Data Cleanup with cyberchef

CHEF Format

Find_/_Replace({'option':'Simple string','string':'""'},'"',true,false,true,false)
Find_/_Replace({'option':'Regex','string':'"CASE'},'CASE',true,false,true,false)
Find_/_Replace({'option':'Simple string','string':'}"'},'}',true,false,true,false)

Recipie Demo

// https://ringcentral.github.io/ringcentral-embeddable/
function dialNumber(number) {
const buttonSelector = "#viewport > div > div > div.sc-eIcdZJ.czoGgN > div.sc-BQMaI.bHaYic > div.sc-epqpcT.cBEqvY > div > div.sc-gvPdwL.lcuqyY > div.sc-ggqIjW.gfQTjQ > div > button:nth-child({index})";
const digits = number.toString().split('');
const delay = 500; // 50ms delay between each press
digits.forEach((digit, index) => {
setTimeout(() => {
@mark05e
mark05e / determine if Im in powershell or cmd.md
Created September 4, 2024 11:26
Determine if I'm in powershell or cmd
(dir 2>&1 *`|echo CMD);&<# rem #>echo PowerShell
(dir 2>&1 *`|echo CMD);&<# rem #>echo ($PSVersionTable).PSEdition

Reference: