sudo lsof -iTCP -sTCP:LISTEN -n -P
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| db.events.updateMany({}, {$set: {status: "Abierto"}}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)] |