- Access the developer console https://console.developers.google.com
- Create a new project
- In APIs and Oauth section:
a. In APIs section - enable gmail api
b. In Credentials section -
1. Click Create new client ID
2. Fill email and project name
3. Save
| #!/usr/bin/env python | |
| # Will split a png cubemap/skymap image produced by blender into 6 separated image files for use in a skybox within unity | |
| # Requires Python Imaging Library > http://www.pythonware.com/products/pil/ | |
| # The author takes no responsibility for any damage this script might cause, | |
| # feel free to use, change and or share this script. | |
| # 2013-07, CanOfColliders, [email protected] | |
| from PIL import Image |
| # install wine and ltspice | |
| sudo apt-get install wine | |
| # sudo pacman -S wine | |
| cd /tmp/ | |
| wget http://ltspice.linear-tech.com/software/LTspiceIV.exe | |
| wine LTspiceIV.exe | |
| rm LTspiceIV.exe | |
| # start lstpice through wine | |
| wine ~/.wine/drive_c/Program\ Files/LTC/LTspiceIV/scad3.exe |
I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).
Use ssh keys and define host aliases in ssh config file (each alias for an account).
or might be easy with gdisk/fdisk ? I'm not sure about this.
------------------------------------------------------------------------
see the reference for more detail, if you want.
https://richardstechnotes.wordpress.com/2015/12/18/setting-up-an-nvme-ssd-on-ubuntu-14-04-lts/
http://takatakamanbou.hatenablog.com/entry/2015/10/25/235600 : Japanese website
We need to use docker-machine to handle USB ports inside the docker.
- Install docker-machine: https://docs.docker.com/machine/install-machine/
- Docker version: 18.09.2, build 6247962
- Install virtualbox >= 6.0
Let suppose I have two github accounts, https://github.com/rahul-office and https://github.com/rahul-personal. Now i want to setup my mac to easily talk to both the github accounts.
NOTE: This logic can be extended to more than two accounts also. :)
The setup can be done in 5 easy steps:
| name: Running Tests | |
| on: [push] | |
| jobs: | |
| Test: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: |