Skip to content

Instantly share code, notes, and snippets.

python3 -m venv quora_challenge_2021
source quora_challenge_2021/bin/activate
python -m pip install Keras==2.4.3 numpy==1.19.5 Keras-Preprocessing==1.1.2 lightgbm==3.1.1 pandas==1.1.5 scikit-learn==0.24.1 scipy==1.5.4 tensorboard==2.4.1 tensorboard-plugin-wit==1.8.0 tensorflow==2.4.1 tensorflow-estimator==2.4.0 torch==1.7.1 xgboost==1.3.3
Keras==2.4.3
numpy==1.19.5
Keras-Preprocessing==1.1.2
lightgbm==3.1.1
pandas==1.1.5
scikit-learn==0.24.1
scipy==1.5.4
tensorboard==2.4.1
tensorboard-plugin-wit==1.8.0
tensorflow==2.4.1
// http://stackoverflow.com/a/4765401
#include <stdio.h>
#include <string.h>
#include "openssl/sha.h"
#include <gmpxx.h>
#include <iostream>
// http://stackoverflow.com/questions/4764608/generate-all-strings-under-length-n-in-c/4764686#4764686
int inc(char *str) {
v2f vert( appdata_img v )
{
v2f o;
o.pos = mul(_Object2World, v.vertex); //get position in world frame
o.pos -= _playerOffset; //Shift such that we use a coordinate system where the player is at 0,0,0
o.uv1.xy = v.texcoord; //get the UV coordinate for the current vertex, will be passed to fragment shade
Jhfcgh