Reading Linux partition on Windows
https://www.diskinternals.com/thanks/linux_reader/
https://sourceforge.net/projects/ext2fsd/
http://www.paragon-drivers.com/extfs-windows/
https://sourceforge.net/projects/ext4explore/ ==> can't find any linux partition on SD card.
https://sourceforge.net/projects/ext2fsd/
http://www.paragon-drivers.com/extfs-windows/
https://sourceforge.net/projects/ext4explore/ ==> can't find any linux partition on SD card.
Reading Linux partition on Windows
Reviewed by KimWorks
on
December 31, 2017
Rating: 5
Fonts for coding
https://github.com/tonsky/FiraCode
http://larsenwork.com/monoid/
https://github.com/naver/d2codingfont/
http://larsenwork.com/monoid/
https://github.com/naver/d2codingfont/
Fonts for coding
Reviewed by KimWorks
on
December 31, 2017
Rating: 5
No Coin browser extension
Reviewed by KimWorks
on
December 26, 2017
Rating: 5
Reference Projects
DIY Thermocam
https://makezine.com/projects/diy-thermocam/
Random number drawing art
https://makezine.com/projects/draw-abstract-art-random-number-generator/
EL wire
https://www.sparkfun.com/tutorials/404
http://www.instructables.com/id/How-to-Solder-EL-Electroluminescent-Wire/
Keras/Deep learning on RPi
https://www.pyimagesearch.com/2017/12/18/keras-deep-learning-raspberry-pi/
NLP learning resources
https://github.com/gutfeeling/beginner_nlp/blob/master/README.md
Kali Linux on RPi
http://www.zdnet.com/google-amp/article/kali-linux-2017-3-hands-on-the-best-alternative-to-raspbian-for-raspberry-pi/
ARToolKit for Unity on Windows (Augmented Reality)
https://www.artoolkit.org/documentation/doku.php?id=6_Unity:unity_on_windows
Photo EXIF data
https://stackoverflow.com/questions/23064549/get-date-and-time-when-photo-was-taken-from-exif-data-using-pil
https://github.com/ianare/exif-py
Date Infer
https://pypi.python.org/pypi/dateinfer/0.1.0
https://github.com/jeffreystarr/dateinfer
https://stackoverflow.com/questions/9507648/datetime-from-string-in-python-best-guessing-string-format
TensorFlow - Age/Gender detecction
https://github.com/dpressel/rude-carnie
Machine Translation
https://research.google.com/pubs/pub45610.html
https://github.com/tensorflow/nmt
Face Recognition
https://github.com/ageitgey/face_recognition
https://realpython.com/blog/python/face-recognition-with-python/
https://pypi.python.org/pypi/face_recognition
https://www.superdatascience.com/opencv-face-recognition/
https://medium.com/@ageitgey/machine-learning-is-fun-part-4-modern-face-recognition-with-deep-learning-c3cffc121d78
https://thecodacus.com/opencv-python-face-detection/#.WkJ8ad-nG73
Dialog
https://github.com/naver/attention-dialog-embedding
https://dbd-challenge.github.io/dbdc3/
Siklui
http://sikulix.com/
https://github.com/RaiMan/
Ardyuni and Unity3D interactive
https://www.hackster.io/relativty/wrmhl-arduino-and-unity3d-interactive-experience-cc18b3
Reference Projects
Reviewed by KimWorks
on
December 26, 2017
Rating: 5
EPS on Windows
Two methods:
- GIMP + GhostScript
- Inkscape + GhostScript
#1, GIMP and GS
- Install GIMP and GS
- find location of "gswin64.exe"
- add this to Environment Var's System Var:
GS_PROG <Location of gswin64.exe> - Start GIMP, and open EPS file.
#2, Inkscape and GS
- Install Inkscape and GS
- find location of GS's lib and bin directories,
e.g.) C:\Program Files\gs\gs9.22\lib and C:\Program Files\gs\gs9.22\bin - Add them to Env Var's System Var's PATH
- Start Inkscape and open EPS file.
RESOURCES / REFERENCES
- Software
- GIMP, https://www.gimp.org/downloads/
- Inkscape, https://inkscape.org/en/release/
- Ghostscript, https://www.ghostscript.com/download/gsdnld.html
- GIMP + ghostscript, https://www.organicweb.com.au/10059/general-technology/eps-settings-gimp/
- Inkscape + ghostscript, https://inkscape.org/en/learn/faq/#how-open-eps-files-windows
EPS on Windows
Reviewed by KimWorks
on
December 26, 2017
Rating: 5
Math Equation on web
http://asciimath.org/
MathJax,
https://www.mathjax.org/
Google's Latex,
https://sites.google.com/site/gencoreoperative/index/articles-and-hacks/google-s-latex
Math Equation on web
Reviewed by KimWorks
on
December 25, 2017
Rating: 5
Automating TextNow
Python code, confirmed and worked: https://github.com/dPhoeniixx/Textnow-API
PHP, https://github.com/imndr/textnow
Some code not yet checked, https://github.com/enflick
Other text message API, https://textbelt.com/
Automating TextNow
Reviewed by KimWorks
on
December 25, 2017
Rating: 5
Docker Toolbox - change machine location
Environment: Win 10, 64-bit
Installed Docker Toolbox. It stores VM image on C: drive,
C:\Users\<USER NAME>\.docker\machine\machines\default
Want to move this to D: drive which is a large HDD, to save relatively smaller C: SSD.
https://stackoverflow.com/questions/33933107/change-docker-machine-location-windows
Installed Docker Toolbox. It stores VM image on C: drive,
C:\Users\<USER NAME>\.docker\machine\machines\default
Want to move this to D: drive which is a large HDD, to save relatively smaller C: SSD.
- Decide where to install on D: --> e.g.) D:\cloud_tools\docker\
- Set up environment variables:
- DOCKER_CERT_PATH --> D:\cloud_tools\docker\.docker\machine\certs
- DOCKER_TOOLBOX_INSTALL_PATH --> C:\Program Files\Docker Toolbox
- MACHINE_STORAGE_PATH --> D:\cloud_tools\docker\.docker\machine
- Move everything under C:\Users\<USER NAME>\.docker\ to D:\loud_tools\docker\.docker\
- Restart PC and try it.
https://stackoverflow.com/questions/33933107/change-docker-machine-location-windows
Docker Toolbox - change machine location
Reviewed by KimWorks
on
December 25, 2017
Rating: 5
Setting up GIT server
Setting up private Git server and Github like UI.
Environment
Server: Ubuntu 16 - 64bitClient: Windows
Steps
- Install necessary S/W: git, sshd$ sudo apt-get install git-core
- Add user
$ sudo -i
$ adduser git
$ su - git
$ cd
$ mkdir .ssh && chmod 700 .ssh
$ touch .ssh/authorized_keys && chmod 600.ssh/authorized_keys
- decide on where repository will be
e.g.) /opt/git-repo
$ mkdir /opt/git-repo
$ chown -R git:git /opt/git-repo
- Install UI
https://gitea.io/en-us/
docs, https://docs.gitea.io/en-us/
GMAIL, smtp.gmail.com, port 587
Read/follow this to make this as a service, https://www.therandombits.com/313/gitea-run-as-systemd-service-in-ubuntu-16-04-lts/
More gitea configuration options,
https://github.com/go-gitea/gitea/blob/master/custom/conf/app.ini.sample
https://docs.gitea.io/en-us/config-cheat-sheet/
Setting up GIT server
Reviewed by KimWorks
on
December 23, 2017
Rating: 5

Subscribe to:
Posts
(
Atom
)