Spark:
https://youtu.be/Zb9YW8XjxnE?t=32m22s
Talend:
https://www.talend.com/resources/webinars/talend-open-studio-for-big-data-for-dummies/?aliId=318108320
Pentaho:
https://talendexpert.com/pentaho-vs-talend/
Hello, welcome to my blog containing some computer tips and experiments.
Wasit Limprasert
วสิศ ลิ้มประเสริฐ
YouTube
| GitHub
| Publications
Tuesday, 5 December 2017
Friday, 24 November 2017
Install legacy boot in previously installed UEFI
Here's what you can do:
1. Go into BIOS F1 setup -> "Restart" menu tab -> Set "OS Optimized Defaults" to "Disabled.
2. Press F9 to Setup Defaults.
3. Tab over to the "Startup" menu tab and verify the following settings:
- "UEFI/Legacy Boot" set to [Both]
- "UEFI/Legacy Boot Priority" set to [UEFI First]
- "CSM Support" set to [Yes]
4. Press F10 to Save and Exit the BIOS.
5. Boot to the Windows 10 installation media. In my case, I'm using a CD/DVD to USB.
6. Windows 10 should then see your NVMe drive and be able to install the OS cleanly.
1. Go into BIOS F1 setup -> "Restart" menu tab -> Set "OS Optimized Defaults" to "Disabled.
2. Press F9 to Setup Defaults.
3. Tab over to the "Startup" menu tab and verify the following settings:
- "UEFI/Legacy Boot" set to [Both]
- "UEFI/Legacy Boot Priority" set to [UEFI First]
- "CSM Support" set to [Yes]
4. Press F10 to Save and Exit the BIOS.
5. Boot to the Windows 10 installation media. In my case, I'm using a CD/DVD to USB.
6. Windows 10 should then see your NVMe drive and be able to install the OS cleanly.
Friday, 27 October 2017
Sunday, 1 October 2017
Jupyter Latex in Thai
\usepackage[thai]{babel}
- https://www.ctan.org/tex-archive/language/thai/thailatex
- https://github.com/jgm/pandoc/releases/tag/1.19.2.1
Monday, 28 August 2017
openvpn note
docker
server
https://github.com/kylemanna/docker-openvpn
client
https://askubuntu.com/questions/229800/how-to-auto-start-openvpn-client-on-ubuntu-cli
openvpn client config
1. create a config file from server [uname].ovpn
2. rename and save to $ cat /etc/openvpn/[uname].conf
OPTARGS=""
OMIT_SENDSIGS=0
curl -fsSL get.docker.com -o get-docker.sh sh get-docker.sh
server
https://github.com/kylemanna/docker-openvpn
client
https://askubuntu.com/questions/229800/how-to-auto-start-openvpn-client-on-ubuntu-cli
openvpn client config
1. create a config file from server [uname].ovpn
2. rename and save to $ cat /etc/openvpn/[uname].conf
3. edit /etc/default/openvpn to
AUTOSTART="all"OPTARGS=""
OMIT_SENDSIGS=0
Tuesday, 11 July 2017
set up Jupyter on Ubuntu
sudo apt-get update && sudo apt-get -y upgrade
sudo apt-get install python-pip
pip install --upgrade pip
install jupyter
jupyter notebook --no-browser --port 8888 --ip='*'
sudo apt-get install python-pip
pip install --upgrade pip
install jupyter
jupyter notebook --no-browser --port 8888 --ip='*'
Thursday, 11 May 2017
simple Django deployment on Digital Ocean
This is a basic deployment, installing all packages. I next time I should use docker compose. The simple deployment are following steps:
- create a Droplet from original Ubuntu 16.04
- sudo apt-get update
- sudo apt-get install build-essential libssl-dev libffi-dev python-dev
- sudo apt-get -y install python-pip
Subscribe to:
Posts (Atom)