Deep Work
Here are some quotes from a section from the book Deep Work by Cal NewPort that I greatly enjoyed and find quite accurate and insightful: “Most people assumed (and still do) that relaxation makes them happy. We want to work … Read More
Beginner to Advanced List Comprehension practice Python dictionary comprehension
To connect codio to GitHub follow these docs
Ever since I downloaded Adobe Acrobat Reader, I noticed that all my PDFs open with Adobe, which I did not prefer as I liked the Preview interface. In order to make preview the default app for opening pdf files, you … Read More
Explanation of two’s complement: https://www.cs.cornell.edu/~tomf/notes/cps104/twoscomp.html Idea: Take binary digits, flip them all, then add 1 To undo two’s complement: -1 from binary digit, flip all digits, convert
Since I’m currently doing KMeans Clustering for my AI class, here are some resources I found helpful: sklearn.cluster.KMeans: https://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html Example code of kMeans segmentation: https://www.idtools.com.au/segmentation-k-means-python/ Image Segmentation using KMeans: Open CV Tutorial: https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_ml/py_kmeans/py_kmeans_opencv/py_kmeans_opencv.html Open CV Full Tutorial with Python:
I had some confusions in my AI class regarding how k-fold cross validation worked, and I found this very concise and clear explanation for it:
Creating collapsible: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_collapsible_animate Expand div when checkbox is checked: https://stackoverflow.com/questions/7996291/when-checkbox-is-checked-expand-div
Vim can be very annoying to navigate and use when everything is one color, there are no line numbers to help debug, and you must only use arrow keys to navigate. Here is how to customize your vim for easier … Read More
For my research at school, we are building an iOS application to help the visually impaired navigate through new environments. To do so, we had to go through a few Swift tutorials. Here are some that were provided that I … Read More