Reverse proxy to use OpenAI API Join Our Discord Server 😁
- Works same as OpenAI API
- Supports Streaming!
- It's FREE!
Reverse proxy to use OpenAI API Join Our Discord Server 😁
// ==UserScript== | |
// @name Juejin Lucky | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description 从关注 网易云音乐大前端团队 并且在 https://juejin.im/pin/6871042321472421902 沸点下回复的用户中去重后随机抽出 25 个,并分 3 组 | |
// @author Cody | |
// @match https://juejin.im/pin/6871042321472421902 | |
// @grant none | |
// ==/UserScript== |
Service Worker - offline support for the web
Progressive apps - high-res icon, splash screen, no URL bar, etc.
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>0</key> | |
<dict> | |
<key>emoji</key> | |
<array> | |
<string>0⃣️</string> | |
</array> |
Remove osxfuse if installed via homebrew: | |
> brew uninstall osxfuse | |
Install osxfuse binary and choose to install the MacFUSE compatibility layer: | |
http://sourceforge.net/projects/osxfuse/files/latest/download?source=files | |
Reboot (optional but recommended by osxfuse) | |
Install ntfs-3g via homebrew: | |
> brew update && brew install ntfs-3g |
Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.
This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.
You are encouraged to fork this and modify it to your heart's content to match your own needs.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
NDK (Native Develop Toolkit) is a toolchain from Android official, originally for users who writes native C/C++ code as JNI library. It's not designed for compiling standalone programs (./a.out) and not compatible with automake/cmake etc.
"Standalone" refers to two meanings:
By default, NDK uses android flavor directory structure when it's finding headers and libs, which is different from GNU flavor, so the compiler cannot find them. For Example:
#!/bin/bash | |
# Ubuntu 12.04 precise software env init shell scripts. | |
# @author karminski <[email protected]> | |
# @version 140729:2 | |
#init dir | |
sudo mkdir /home/apps | |
cd /home/apps | |
# install python-software-properties |