Skip to content

Instantly share code, notes, and snippets.

View Mondonno's full-sized avatar
馃く
blew my mind?

MondeO Mondonno

馃く
blew my mind?
View GitHub Profile
@Mondonno
Mondonno / Keycodes.cs
Last active February 3, 2022 11:08
C# Xamarin.IOS/Xamarin.Mac/MAUI keycodes.
public class KeyCodes {
// Layout-independent Keys
// eg.These key codes are always the same key on all layouts.
public const ushort ReturnKey = 0x24;
public const ushort Enter = 0x4C;
public const ushort Tab = 0x30;
public const ushort Space = 0x31;
public const ushort Delete = 0x33;
public const ushort Escape = 0x35;
@Mondonno
Mondonno / postmanEmptyCellsDeleter.js
Last active October 10, 2023 17:57
Empty JSON cells deleter (can be used in Postman prerequests)
const checkBodyType = (body) => {
if(Array.isArray(body)) return 0;
else if(typeof body == "object") return 1;
else throw new Error("Unknown type of the body");
}
const definePropertySettings = { configurable: true, enumerable: true, writable: true }
const deleteEmptyValues = (currentBody) => {
if(typeof currentBody === "string") currentBody = JSON.parse(currentBody);
@2minchul
2minchul / main.go
Created April 16, 2019 05:55
golang http client using specific network adapter
package main
import (
"context"
"fmt"
"io/ioutil"
"net"
"net/http"
)
@bjmiller121
bjmiller121 / multiple-push-urls.md
Last active August 11, 2025 11:03
Add multiple push URLs to a single git remote

Sometimes you need to keep two upstreams in sync with eachother. For example, you might need to both push to your testing environment and your GitHub repo at the same time. In order to do this simultaneously in one git command, here's a little trick to add multiple push URLs to a single remote.

Once you have a remote set up for one of your upstreams, run these commands with:

git remote set-url --add --push [remote] [original repo URL]
git remote set-url --add --push [remote] [second repo URL]

Once set up, git remote -v should show two (push) URLs and one (fetch) URL. Something like this: