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 network | |
import socket | |
from picozero import pico_led | |
import machine | |
import utime | |
# GPIO2 | |
switch_pin = machine.Pin(2, machine.Pin.OUT, value=1) | |
ssid = 'ssid' | |
password = '' |
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 | |
import os | |
import shlex | |
import subprocess | |
import sys | |
from itertools import chain | |
from pathlib import Path | |
def find_venv(path): |
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 | |
# Copyright (c) 2024 Yubico AB | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or | |
# without modification, are permitted provided that the following | |
# conditions are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright |
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 Azure Firefox FIDO2 patch | |
// @namespace https://jfx.ac | |
// @version 0.1 | |
// @description Fixes FIDO2 login on Firefox by patching variables on the Azure login page | |
// @author jfx | |
// @match https://login.microsoftonline.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
# originally created and posted by user dgc on | |
# https://discussion.evernote.com/topic/97201-how-to-transfer-all-the-notes-from-google-keep-to-evernote/ | |
# Modified by user charlescanato https://gitlab.com/charlescanato/google-keep-to-evernote-converter | |
# Modified by gokhan mete erturk to enable bulk operation of html files without any parameters and | |
# solves the character set problems on Windows | |
# Modified by Leonard777 to add importing of image data. | |
# Modified by itsjfx to read a folder and import HTML files | |
# until now, Google Takeout for Keep does NOT export: | |
# - correct order of lists notes (non-checked first, checked last) |