Skip to content

Instantly share code, notes, and snippets.

View stanlee321's full-sized avatar

Stanley Salvatierra stanlee321

View GitHub Profile
# Docker machine
curl -L https://github.com/docker/machine/releases/download/v0.16.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
chmod +x /tmp/docker-machine &&
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
# Docker machine
curl -L https://github.com/docker/machine/releases/download/v0.16.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
chmod +x /tmp/docker-machine &&
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
db.events.updateMany({}, {$set: {status: "Abierto"}})
https://www.codecogs.com/latex/eqneditor.php
\frac{\partial^{2} L}{\partial^{2} w} = \sum_{i=1}^{m} (Diag(\hat{y_i})- {\hat{y_i}^T}\hat{y_i}))\otimes{\hat{x_i}^T}\hat{x_i} = (Diag(Y) - {Y}^T \cdot Y)\otimes({X}^T\cdot X)
opengraphiti
for solve fatal error: CL/cl.h: No such file or directory
apt-get install opencl-headers
apt-get install ocl-icd-libopencl1
I had to change line 4 in /dataviz/raindance/Core/GUI/WindowManager.hh
@stanlee321
stanlee321 / Links.md
Last active October 31, 2019 04:00
Useful links
@stanlee321
stanlee321 / paginasWebImpuestosBolivia.md
Created October 17, 2019 05:16
Impuestos Pago Paginas, Bolivia, links

Impuestos Bolivia

Para declarar 200 y 400

https://dclaro.impuestos.gob.bo

Oficina Virtual

@stanlee321
stanlee321 / myCommands.md
Last active January 18, 2020 14:06
Release Certificate for android SHA1 and SHA256

For Release

For create release key

keytool -genkey -v -keystore ~/myReleaseKeys/my-release-key.keystore -alias pAp -keyalg RSA -keysize 2048 -validity 10000

For export

@stanlee321
stanlee321 / rem_outlier.py
Created August 24, 2019 03:17 — forked from ariffyasri/rem_outlier.py
Remove outliers in pandas
import pandas as pd
import numpy as np
from pandas.api.types import is_numeric_dtype
np.random.seed(42)
age = np.random.randint(20,100,50)
name = ['name'+str(i) for i in range(50)]
address = ['address'+str(i) for i in range(50)]