Skip to content

Instantly share code, notes, and snippets.

View jackvial's full-sized avatar
🤖
Robots, lots of robots

Jack Vial jackvial

🤖
Robots, lots of robots
View GitHub Profile

This test can help identify the following issues:

  • Internal short circuits
  • Failed components
  • Power connected to PSU

What this test cannot identify:

  • Voltage fluctuations
  • Overheating
  • Power Output (failing power rails)

Remote Jupyter Notebook

$laptop: ssh -l <username>@<yourNewServerIP>
$server: jupyter notebook --no-browser --port=8888
$laptop: ssh -NL 8888:localhost:8888 <username>@<yourNewServerIP>

Then you can goto http://localhost:8888 on your laptop’s browser and remotely view/edit your Jupyter notebooks.

@jackvial
jackvial / machine_learning_deep_learning.md
Created June 23, 2018 17:20
Machine Learning and Deep Learning Courses

Machine Learning / Deep Learning

DataCamp.com (Data Scientist with Python track)

  • Intro to Python for data science (course 1)
  • Intermediate Python for Data Science (course 2)
  • Statistical Thinking in Python part 1 and 2 (courses 15 and 16) (kinda optional)
  • Supervised Learning with scikit-learn (Course 18)
    • Trying using what you learned in course 18 to Kaggle Titanic and Housing Prices challenges
  • Deep Learning in Python (course 21)
    • Trying using you learned in course 21 to Kaggle MNIST challenge

Ubuntu 22.04 for Deep Learning

In the name of God

This gist contains steps to setup Ubuntu 22.04 for deep learning.


Install Ubuntu 22.04

@jackvial
jackvial / gist:f8d42eff4c005bc0e7403e025d040327
Created January 18, 2023 01:23
MacOS X nginx SSL Proxy Setup

#Installing nginx on OS X

brew install nginx
sudo cp -v /usr/local/opt/nginx/*.plist /Library/LaunchDaemons/
sudo chown root:wheel /Library/LaunchDaemons/homebrew.mxcl.nginx.plist
mkdir -p /usr/local/etc/nginx/logs
mkdir -p /usr/local/etc/nginx/sites-available
mkdir -p /usr/local/etc/nginx/sites-enabled
mkdir -p /usr/local/etc/nginx/conf.d
mkdir -p /usr/local/etc/nginx/ssl