Skip to content

Instantly share code, notes, and snippets.

View lewdlime's full-sized avatar
🏠
Working from home

Sammy S. lewdlime

🏠
Working from home
View GitHub Profile
@emilianavt
emilianavt / BestVTuberSoftware.md
Last active July 10, 2024 12:40
Best VTuber Software

Best VTuber software

This is a list of the most commonly used and relevant vtubing software. The "best" will always be subjective and depend on your specific requirements. Overall, the information in this list is as accurate as I could figure it out, but there might be errors or some details might become out of date. If you find anything that needs to be corrected, please let me know. You can also note it in a comment.

Additional explanations:

  • iPhone means that an iPhone is basically required
  • iFacialMocap support means that tracking data can be received from the iFacialMocap iPhone app
  • VMC protocol means that the application can send and/or receive tracking data from other VMC protocol capable applications, allowing the combination of multiple tracking methods (e.g. VSeeFace receiving VR tracking from Virtual Motion Capture and iPhone/ARKit face tracking from Waidayo)
  • Tobii means that the Tobii eye tracker is supported
@lewdlime
lewdlime / ABC Preview.html
Created October 10, 2016 22:06
Editorial app ABC Notation Preview Theme
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="https://raw.githubusercontent.com/paulrosen/abcjs/master/bin/abcjs_plugin_latest-min.js" type="text/javascript"></script>
<title>ABC Preview</title>
<style type="text/css">
html {
width: 100%;
height: 100%;
@lewdlime
lewdlime / tumblr-following.py
Last active January 19, 2018 09:05
Tumblr Following JSON Export
#!/usr/bin/python2
import oauth2
import urlparse
import pytumblr
import json
REQUEST_TOKEN_URL = 'http://www.tumblr.com/oauth/request_token'
AUTHORIZATION_URL = 'http://www.tumblr.com/oauth/authorize'
ACCESS_TOKEN_URL = 'http://www.tumblr.com/oauth/access_token'
# To get the Consumer key and Consumer secret, you will need to
@lewdlime
lewdlime / LCPCallback_Prizmo-Evernote-Next.md
Last active June 9, 2016 19:48
x-url-callback Workflow using Launch Center Pro, Prizmo, Next, & Evernote. The workflow is made to scan a receipt, send the value to Next, then save the receipt to Evernote.

OCR Workflow: LCP

NOTE: Be aware that when scanning with Prizmo or any other OCR app on iOS, the app will only be able to recognize text if you scan enough of the document for it to catch enough text to register as readable text on the document. What this means is that if you try to scan only the receipt's total, such as 8.26, Prizmo will always fail to capture the text. You have to capture all of of the receipt, then delete any extra text that shows up with the total on the receipt.

@guyru
guyru / tarsum
Created April 23, 2016 17:38
A small utility to compute checksums on every file inside a tar archive.
#! /usr/bin/env python
# Copyright (C) 2008-2009 by Guy Rutenberg
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
@pedrohdz
pedrohdz / PythonistaFileServer.py
Created January 17, 2016 11:54
Pythonista File Server
#! /usr/bin/env python
# File Transfer for Pythonista
# ============================
# This script allows you to transfer Python files from and to Pythonista via
# local Wifi. It starts a basic HTTP server that you can access as a web page
# from your browser. When you upload a file that already exists, it is renamed
# automatically. From Pythonista's settings, you can add this script to the
# actions menu of the editor for quick access.
#
# Get Pythonista for iOS here:
@philgruneich
philgruneich / OCRtoInteract.py
Last active March 17, 2020 00:28
Requires Pythonista for iOS and Interact for iOS. Sends image and returns OCR'd text. Opens text in Interact unless used from action extension, then adds to clipboard.
# coding: utf-8
import requests
import photos
from PIL import Image, ImageEnhance
import StringIO
import appex
import console
import json
import keychain
@lewdlime
lewdlime / BuildConfigurations.md
Last active March 2, 2016 18:24
Notes for building Git from source tarball or repository

Build Configurations

If you're building Git from it's latest source tarball or from the repository, remember to not use --with-shell="shell" if building with ./configure. Or at least don't use ZSH as the shell specified. Different shells cause errors due to differences in how variables are set and used during the build chain.

@omz
omz / touchid.py
Last active November 15, 2023 23:35 — forked from alessaba/TouchID.py
TouchID.py
# coding: utf-8
from objc_util import *
import threading
NSBundle = ObjCClass('NSBundle')
LocalAuthentication = NSBundle.bundleWithPath_('/System/Library/Frameworks/LocalAuthentication.framework')
LocalAuthentication.load()
LAContext = ObjCClass('LAContext')
# authenticate() will raise one of these exceptions when authentication
@omz
omz / Pythonista Theme Editor.py
Last active August 8, 2023 14:42
Pythonista Theme Editor.py
# coding: utf-8
'''
Basic theme editor for Pythonista 1.6 (beta)
WARNING: Use at your own risk! User themes aren't "officially" supported, and
this may break in future versions. If you enter invalid JSON or anything else
that the app can't deal with, it *will* crash -- your input is not validated
in any way.
'''