TOC
-
- Machine Learning
- Paper
- Hacking Tools
- Spaced Repetition
- Data Science
- Emoji
- Machine Learning Spreadsheet
- Git Search Engine
- Github Action
- Paper Article
- Deep Face
- Electronics
- Weather API
- Paper
- Whiteboard Sharing
- Paper
- Search Engine
- Graphing Software
- Weather Data
- Qur'an
- Research Proposal
- Fourier Transform
- Machine Learning
- CNN
- Python
- Machine learning
- Machine Learning
- Cartoon
- Article
- User Question
- Cloud
- Summarization
- Social Space
- Machine Learning
- Logic
- Machine Learning
- Awk
- Basic Linux
2021 September
Machine Learning
Paper
- Multiplying Matrices Without Multiplying
- Use of artificial intelligence for image analysis in breast cancer screening programmes: systematic review of test accuracy | The BMJ
Hacking Tools
Spaced Repetition
- Anki - powerful, intelligent flashcards
- Mochi — Spaced repetition made easy
- Rekowl | You personal knowledge library
- Spaced Repetition
- SuperMemo® - learn languages effectively | SuperMemo.com
- Logseq, Obsidian and Roam with community plugins
- RemNote | The Best Way to Remember and Organize What You Learn
Data Science
Emoji
Machine Learning Spreadsheet
Git Search Engine
Github Action
Crowd Generated
Text
- Your World of Text (replace link with everything else)
-
Our World of Text (replace link with everything else)
Draw
- Rustpad
-
Pixel
- Pixelator similar to reddit /r/place
-
Map
- Padlet
Paper Article
Deep Face
Electronics
Weather API
Paper
Whiteboard Sharing
Paper
- Paper to HTML | Allen Institute for AI pdf to html
Search Engine
Graphing Software
Weather Data
- Meteostat - Historical Weather and Climate Data
- Prakiraan dan Kondisi CuacaJakarta - The Weather Channel | Weather.com
Qur'an
Research Proposal
- https://owll.massey.ac.nz/assignment-types/research-proposal-structure.php
- https://research.com/research/how-to-write-a-research-proposal
- https://www.scribbr.com/dissertation/research-proposal/
- https://www.monash.edu/rlo/graduate-research-writing/write-the-thesis/writing-a-research-proposal
Fourier Transform
- Circles Sines and Signals - Introduction
- myFourierEpicycles - draw your own fourier epicycles.
- (1) What is a Fourier Series? (Explained by drawing circles) - Smarter Every Day 205 - YouTube
- Fourier series visualisation with d3.js. - bl.ocks.org
Machine Learning
- The First Rule of Machine Learning: Start without Machine Learning
- Machine Learning: The High Interest Credit Card of Technical Debt – Google Research So little of success in ML comes from the sexy algorithms and so much just comes from ensuring a bunch of boring details get properly saved in the right place. After months learning about machine learning for time series forecasting, several chapters in a book on deep learning techniques for time series analysis and forecasting, the author kindly pointed out that there are no papers published up to that point that prove deep learning (neural networks) can perform better than classical statistics. Career lesson: Ask a lot of questions early in a project's life. If you're working on something that uses machine learning, ask what system it's replacing, and make sure that someone (or you) runs it manually before spending the time to automate.
Rules of Machine Learning: | ML Universal Guides | Google Developers
CNN
Python
Machine learning
- mljar-supervised · PyPI Automated Machine Learning Python package that works with tabular data
- Magicsheets: Machine Learning in your spreadsheet
Machine Learning
Cartoon
Article
User Question
Cloud
Summarization
Social Space
Machine Learning
Logic
Machine Learning
Awk
- sandbox.bio Learn awk in sandbox
Basic Linux
Note that these suggestions are off the top of my head and surely biased by my own needs.
-
bash
shell basics- Navigating the shell.
- Using one of the common editors, such as
vim
,emacs
, ornano
. My personal favorite isvim
, but that's probably because I've been using it (or its predecessor,vi
) longer than most redditors have been alive. - Listing (
ls
) and deleting (rm
) files. - Changing file permissions (
chmod
).
- Using the
find
command. - Using basic Linux tools in pipelines, such as
tr
,wc
,basename
,dirname
, etc. - Using
awk
/gawk
. This tool is so incredibly powerful. I use it almost daily. - Using
apt
. Note thatapt-get
is the older package manager, and although it's largely compatible withapt
, there are some differences. -
Programming
- Learn the basics of
bash
shell programming, including conditional statements, looping structures, variables, etc. - Definitely learn
python
, with a focus onpython3
. - php: see Web Dev below.
- Learning C and/or C++ are desirable too, but you don't need this skill immediately. However, knowing these languages will give you better knowledge for compiling packages and eventually writing your own.
- Learn the basics of
-
Web servers
- You won't go wrong with
apache2
, but these days, I'm usingnginx
more often. - Installing SSL/TLS certs.
- You won't go wrong with
-
Networking
- Using
iptables
to configure firewall rules. - Using
ip route
to configure routes.
- Using