These things suck:
smart_emojis.mp4
You can fix them by running this in a Terminal:
sudo defaults write /Library/Preferences/FeatureFlags/Domain/UIKit.plist emoji_enhancements -dict-add Enabled -bool NO
| from setuptools import setup | |
| setup(name='MyShell-OpenVoice', | |
| version='0.0.0', | |
| description='Instant voice cloning by MyShell.', | |
| long_description=open('README.md').read().strip(), | |
| long_description_content_type='text/markdown', | |
| keywords=[ | |
| 'text-to-speech', | |
| 'tts', |
| #!/usr/bin/env python | |
| """ | |
| Requires pychromecast. | |
| Install with `pip install pychromecast` | |
| usage: cast.py [-h] -d DEVICE -v VIDEO | |
| Cast YouTube videos headlessly. |
| #!/bin/sh | |
| # Usage: replace "foo" "bar" "/etc/omg.conf" | |
| replace() { | |
| local pattern=$1 | |
| local replacement=$2 | |
| local file=$3 | |
| local tempfile="$(mktemp -t temp.XXXXX)" | |
| sed "s/$pattern/$replacement/" ${file} > ${tempfile} && mv ${tempfile} ${file} |
npm i
Get an Intercom access token from the Developer Hub
Copy it into export.js here:
| // src/index.js | |
| var src_default = { | |
| async fetch(request, env, ctx) { | |
| const url = new URL(request.url); | |
| if (url.pathname === "/") { | |
| let res = await fetch(request); | |
| return res; | |
| } | |
| if (url.pathname.startsWith("/example/")) { | |
| let res = await fetch(request); |
| import signal | |
| import time | |
| import logging | |
| import RPi.GPIO as GPIO | |
| from collections import deque | |
| from threading import Thread, Lock, Event | |
| from twilio.rest import Client | |
| from blink1_pyusb import Blink1 | |
| DRY_RUN = True |
| var properties = PropertiesService.getScriptProperties(); | |
| var service = "MyService" | |
| var url = "http://example.com"; | |
| var email = "you@gmail.com"; | |
| function parseDate(date_string) { | |
| return new Date(Date.parse(date_string)).toISOString(); | |
| } |
| #!/usr/bin/env python3 | |
| import binascii | |
| content = '' | |
| with open('hacker.txt') as f: | |
| content = f.read().splitlines() | |
| line = ''.join(content) | |
| n = 8 | |
| lines = [line[i:i+n] for i in range(0, len(line), n)] |
| #!/bin/bash | |
| USERDATA=$(ec2metadata --user-data) | |
| NICKNAME="hackernews" | |
| if [ "$USERDATA" != "unavailable" ] ; then | |
| NICKNAME=$USERDATA | |
| fi | |
| # Setup Supervisor | |
| echo "[program:warrior] |