Skip to content

Instantly share code, notes, and snippets.

View chescales's full-sized avatar

Chesco Igual chescales

View GitHub Profile
@chescales
chescales / Pip --no-deps example
Created January 28, 2022 11:06
Description of pip behaviour when resolving dependencies with --no-deps
(.test-venv) >>> pip install --no-cache pystan==2.19.1.1 numpy==1.22.1 cython==0.29.26
Collecting pystan==2.19.1.1
Downloading pystan-2.19.1.1.tar.gz (16.2 MB)
|████████████████████████████████| 16.2 MB 16.0 MB/s
Collecting numpy==1.22.1
Downloading numpy-1.22.1-cp39-cp39-macosx_11_0_arm64.whl (12.8 MB)
|████████████████████████████████| 12.8 MB 7.3 MB/s
Collecting cython==0.29.26
Downloading Cython-0.29.26-py2.py3-none-any.whl (983 kB)
|████████████████████████████████| 983 kB 16.6 MB/s
@chescales
chescales / keybase.md
Last active July 11, 2020 21:54
Proof on Keybase

Keybase proof

I hereby claim:

  • I am chescales on github.
  • I am chescales (https://keybase.io/chescales) on keybase.
  • I have a public key ASAzbK8-aBXDD90nYkQnkoO4OnvVQFfLGXUt68u_8IGZTQo

To claim this, I am signing this object:

@chescales
chescales / infantium_on_pause_on_resume
Created September 17, 2014 09:46
Infantium Unity Pausing&Resuming
public InfantiumPlugin infantium;
private bool isPaused = true;
void OnApplicationPause(bool isPause)
{
if (infantium == null)
return;
if (isPause && !isPaused) {