"Combining Long Stroke Overlay" (U+0336) and "Combining Short Stroke Overlay" (U+0335).
qoomon
q̴͈̮o̴̱ọm̶͓̥on͒
Q̶̸O̶̴O̶̴M̶̸O̶̴N̶̸
"Combining Long Stroke Overlay" (U+0336) and "Combining Short Stroke Overlay" (U+0335).
qoomon
q̴͈̮o̴̱ọm̶͓̥on͒
Q̶̸O̶̴O̶̴M̶̸O̶̴N̶̸
// ==UserScript== | |
// @name Bybass Safe Links | |
// @namespace https://qoomon.github.io | |
// @version 1.0 | |
// @description try to take over the world! | |
// @author qoomon | |
// @match https://statics.teams.cdn.office.net/evergreen-assets/safelinks/1/atp-safelinks.html?* | |
// @match https://urlisolation.com/browser?* | |
// @icon https://cdn-icons-png.flaticon.com/512/388/388484.png | |
// @grant none |
#!/bin/zsh | |
# <xbar.title>Colima Status</xbar.title> | |
# <xbar.author>Bengt Brodersen</xbar.author> | |
# <xbar.author.github>qoomon</xbar.author.github> | |
# <xbar.desc>Displays Colima Status - https://github.com/abiosoft/colima</xbar.desc> | |
source ~/.zprofile | |
DOCKER_RUNNING_ICON='iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAAAAXNSR0IArs4c6QAAAIRlWElmTU0AKgAAAAgABQESAAMAAAABAAEAAAEaAAUAAAABAAAASgEbAAUAAAABAAAAUgEoAAMAAAABAAIAAIdpAAQAAAABAAAAWgAAAAAAAACQAAAAAQAAAJAAAAABAAOgAQADAAAAAQABAACgAgAEAAAAAQAAACqgAwAEAAAAAQAAACoAAAAAxiJEngAAAAlwSFlzAAAWJQAAFiUBSVIk8AAAAVlpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDYuMC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0Y |
#!/bin/zsh | |
0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}" | |
0="${${(M)0:#/*}:-$PWD/$0}" | |
echo "${${0:A}/%.plugin.zsh/.zsh}" |
# lock and hide Google Drive link | |
chflags -h uchg,hidden "$HOME/Google Drive" | |
# undo by following command | |
# chflags -h nouchg,nohidden "$HOME/Google Drive" |
async function parseBody(res) { | |
return new Promise((resolve, reject) => { | |
let body = ''; | |
res.on('data', (chunk) => body += chunk); | |
res.on('end', () => resolve(body)); | |
}).then(body => res.body = body ? JSON.parse(body) : undefined); | |
} |
import {Stack} from "aws-cdk-lib"; | |
import {Vpc, VpcProps} from "aws-cdk-lib/aws-ec2"; | |
import {AwsCustomResource, AwsCustomResourcePolicy, PhysicalResourceId} from "aws-cdk-lib/custom-resources"; | |
import {Construct} from "constructs"; | |
export class BaseVpc extends Vpc { | |
constructor(scope: Construct, id: string, props: VpcProps) { | |
super(scope, id, props); | |
// Configure default security group according to "CIS AWS Foundations Benchmark controls", | |
// section "4.3 – Ensure the default security group of every VPC restricts all traffic". |
# list repos | |
# gh repo list $owner --json nameWithOwner -q '.[].nameWithOwner' | |
repos=( | |
example/example | |
) | |
for repo in "${repos[@]}" | |
do | |
echo $repo |
async function sleep (timeout) { | |
return new Promise(res => setTimeout(res, timeout)) | |
} | |
let videoElement = document.querySelector('div[data-e2e="user-liked-item"]').parentElement | |
while(videoElement) { | |
console.log(videoElement) | |
videoElement.scrollIntoView() | |
await sleep() | |
javascript:(async function() { | |
console.info('author: bengt brodersen - www.qoomon.de'); | |
console.info('version: 1.0.1'); | |
'// this bookmarklet will insert configured workingTimes for all visible empty days in the past'; | |
'// === configuration ===================================================='; | |
const workingTimes = { | |
'Mo': [{checkIn: '08:00', checkOut: '16:30'}], | |
'Di': [{checkIn: '08:00', checkOut: '16:30'}], |