Skip to content

Instantly share code, notes, and snippets.

View suakow's full-sized avatar
🙋‍♂️
open to new opportunities

Puri suakow

🙋‍♂️
open to new opportunities
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
__author__ = "Puri Phakmongkol"
__author_email__ = "me@puri.in.th"
"""
* Thesis
*
* Created date : 15/06/2021
*
@suakow
suakow / nsc_private-wc-qa-full-step2-v1.py
Created July 8, 2022 16:19
nsc_private-wc-qa-full-step2-v1.py
__author__ = "Puri Phakmongkol"
__author_email__ = "me@puri.in.th"
"""
* Thesis
*
* Created date : 15/06/2021
*
+ o + o
+ o + +
__author__ = "Puri Phakmongkol"
__author_email__ = "me@puri.in.th"
"""
* Thesis
*
* Created date : 15/06/2021
*
+ o + o
+ o + +
@suakow
suakow / scratchpad.ipynb
Created February 23, 2022 11:24
scratchpad
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract NumberRemember{
uint _number;
function getNumber() public view returns(uint number_) {
return _number;
}
@suakow
suakow / hw3_pos_tagging.ipynb
Created February 16, 2022 09:16
hw3_pos_tagging.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suakow
suakow / scratchpad.ipynb
Created February 13, 2022 08:39
scratchpad
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suakow
suakow / scratchpad.ipynb
Created February 10, 2022 08:51
scratchpad
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@suakow
suakow / talib-install.sh
Last active February 9, 2023 05:50 — forked from artiya4u/talib-install.sh
Install TA-Lib script
#!/usr/bin/env bash
sudo apt install build-essential wget -y
# wget https://artiya4u.keybase.pub/TA-lib/ta-lib-0.4.0-src.tar.gz
wget -O ta-lib-0.4.0-src.tar.gz https://firebasestorage.googleapis.com/v0/b/suakow.appspot.com/o/Shared%2Fta-lib-0.4.0-src.tar.gz?alt=media&token=c53ddc2b-8e9e-4af2-ac53-55fd0f009650
tar -xvf ta-lib-0.4.0-src.tar.gz
cd ta-lib/
./configure --prefix=/usr
make
sudo make install