Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
# Since I ask this of people before using their code samples, anyone can | |
# use this under BSD. | |
import os | |
import M2Crypto | |
def empty_callback(): | |
return | |
# Seed the random number generator with 1024 random bytes (8192 bits) |
{ | |
"ALY": "ALY", | |
"ALLEY": "ALY", | |
"ALLEE": "ALY", | |
"ALLY": "ALY", | |
"ANX": "ANX", | |
"ANEX": "ANX", | |
"ANNEX": "ANX", | |
"ANNX": "ANX", | |
"ARC": "ARC", |
pkgname=mutter | |
pkgver=3.24.1+2+gbb481fafd | |
pkgrel=1 | |
pkgdesc="A window manager for GNOME" | |
url="https://git.gnome.org/browse/mutter" | |
arch=(i686 x86_64) | |
license=(GPL) | |
depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas | |
libcanberra startup-notification zenity libsm gnome-desktop upower | |
libxkbcommon-x11 gnome-settings-daemon libgudev libinput) |
Generally, the Git proxy configuration depends on the Git Server Protocol you use. And there're two common protocols: SSH and HTTP/HTTPS. Both require a proxy setup already. In the following, I assume a SOCKS5 proxy set up on localhost:1080
. But it can also be a HTTP proxy. I'll talk about how to set up a SOCKS5 proxy later.
When you do git clone ssh://[user@]server/project.git
or git clone [user@]server:project.git
, you're using the SSH protocol. You need to configurate your SSH client to use a proxy. Add the following to your SSH config file, say ~/.ssh/config
:
ProxyCommand nc -x localhost:1080 %h %p
ChatGPT appeared like an explosion on all my social media timelines in early December 2022. While I keep up with machine learning as an industry, I wasn't focused so much on this particular corner, and all the screenshots seemed like they came out of nowhere. What was this model? How did the chat prompting work? What was the context of OpenAI doing this work and collecting my prompts for training data?
I decided to do a quick investigation. Here's all the information I've found so far. I'm aggregating and synthesizing it as I go, so it's currently changing pretty frequently.