Skip to content

Instantly share code, notes, and snippets.

View Pariyat's full-sized avatar
💭
Unleashing the power of data

Pari Pariyat

💭
Unleashing the power of data
View GitHub Profile
@Pariyat
Pariyat / getting_started.md
Created September 3, 2019 12:29 — forked from kidchenko/config.yml
Codesanook #06

Getting started

Requirements

Run these commands and install what do you not have

git --version

node --version

@Pariyat
Pariyat / Workshop_Useful_Links.md
Created August 25, 2019 09:34 — forked from vladbatushkov/Workshop_And_Tutorial_Useful_Links.md
All useful links for Neo4j Workshop
@Pariyat
Pariyat / tensorflow_self_check.py
Created December 24, 2017 09:17 — forked from mrry/tensorflow_self_check.py
TensorFlow on Windows self-check
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
@Pariyat
Pariyat / node-and-npm-in-30-seconds.sh
Created August 17, 2016 20:00 — forked from isaacs/node-and-npm-in-30-seconds.sh
Use one of these techniques to install node and npm without having to sudo. Discussed in more detail at http://joyeur.com/2010/12/10/installing-node-and-npm/ Note: npm >=0.3 is *safer* when using sudo.
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://www.npmjs.org/install.sh | sh