Categories

  • AngularJS (43)
  • AWS (4)
  • Continuous Integration (1)
  • CSS (24)
  • D3 (3)
  • Data Structures & Algorithms (1)
  • Database (1)
  • Deployment (2)
  • Docker (2)
  • Flask (3)
  • Fun Projects (8)
  • Git (11)
  • IOS (12)
  • JavaScript (62)
  • Kendo (2)
  • Linux (2)
  • Marketing (2)
  • NextJS (6)
  • NodeJS (4)
  • OS X (24)
  • Performance (8)
  • PHP (4)
  • Python (14)
  • Rails (14)
  • React Native (2)
  • ReactJS (12)
  • Recommendations (8)
  • Ruby (6)
  • SICP (3)
  • Testing (8)
  • Thoughts (33)
  • THREE.js (1)
  • Tools (16)
  • TypeScript (4)
  • Ubuntu (7)
  • Uncategorized (11)
  • VIM (4)
  • VSCode (2)
  • Webpack (4)

Archives

  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • August 2024
  • July 2024
  • July 2023
  • March 2023
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • January 2022
  • September 2021
  • April 2021
  • February 2021
  • January 2021
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • July 2019
  • June 2019
  • April 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • July 2018
  • June 2018
  • May 2018
  • February 2018
  • January 2018
  • December 2017
  • September 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • November 2016
  • October 2016
  • September 2016
  • July 2016
  • June 2016
  • May 2016
  • April 2016
  • March 2016
  • January 2016
  • December 2015
  • November 2015
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • April 2015
  • March 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • June 2014
  • May 2014
  • April 2014
  • March 2014
  • February 2014
  • January 2014
  • September 2013

Tags

AngularJS Book Charles Chrome CoffeeScript Compatibility CSS DigitalOcean Flask Fun Future Future Reference Git Jasmine JavaScript jQuery Knowledge Learn Less Map Material Design NextJS NodeJS parallax Performance PHP Programmers Proxy Psychology Python Rails ReactJS Reference RoR Ruby Ruby on Rails Self-teach Snippet Testing The Art of Learning Three.js Vim Webpack Wordpress Xcode

Most Helpful Posts

  • Angular Email Validation with Ng-Pattern (2596)
  • How to: Prevent Body From Scrolling When Overlay Is On (2291)
  • Reference: $state.go() with Parameter (1604)
  • Angular: All About Input Type="File" (1543)
  • Protractor Locators (Selectors) (1062)
  • How To Remove All NPM Proxy Settings (931)
  • Disable Popup "Please Fill In this Field" (859)
  • Cannot read property 'replace' of undefined in jQuery (562)
  • React: How To Prompt User of Unsaved Data before Leaving Site (556)
  • Object.prototype.toString.call()? (555)
  • How to: Prevent Body From Scrolling (459)
  • Angular Directive: Click Elsewhere? (402)
  • Render Post Processing with Three.js (293)
  • Angular: Requiring ng-model as Component (243)
  • Common Errors with NanoScroller (229)

Total quant of thanks: 18729

  • Email
  • LinkedIn
  • Instagram
  • GitHub
  • Widgets
  • Connect
  • Search

Have Fun Learning

Passionately Curious

Menu

Skip to content
  • Portfolio
  • Recommendations
  • Archive
  • About
  • 日志
AWS, Deployment

AWS CLI Login & Logout

January 27, 2020luciaAWS 1 Comment

AWS is a bit too rich in features.

Continue reading →
Standard
Database

Database 101

January 25, 2020luciaDatabase Leave a comment

Some blatantly obvious thing that I was oblivious to before dipping my toes into databases:

Continue reading →
Standard
Python

Heroku + Sqlite

January 25, 2020luciaFlask, Heroku 1 Comment

Doesn’t work.

Continue reading →
Standard
Continuous Integration

Github Action: Image Optimization Pipeline

January 1, 2020luciaCI, Github Actions, Github Ci Leave a comment

Whenever your pull request contains image changes, this Github action will run and create a commit of optimized images.

Continue reading →
Standard
Git

Git: Why Updating Submodules Rewinds Change

December 13, 2019luciaGit Submodule Leave a comment

When you run git submodule update --remote in a container repo, you might notice that it says:

Submodule funny_module bf722acd..02dc481d (rewind):
  < That awful bugfix

Why the rewind?!

Continue reading →
Standard
NextJS

How to Mute Warnings of "Conflicting order between"

December 11, 2019luciaWebpack 1 Comment

We use CSS modules, so it doesn’t make sense to care about importing order, but the mini-css-extract-plugin doesn’t provide an option to turn off the conflicting warning:

chunk styles [mini-css-extract-plugin]
Conflicting order between:
 * css ...
 * css ...

Here’s how to mute them.

Continue reading →
Standard
JavaScript, TypeScript

Difference between ESLint and Prettier

December 6, 2019luciaESLint, Lint, Prettier Leave a comment

What they do:

  • ESLint: underline when code doesn’t comply to logical rules. Can run a script and fix some easy errors (etc. unused variables lying around)
  • Prettier: doesn’t change the logic of code, only formats it (etc. removing extra spaces, turning double quotes to singles)
Continue reading →
Standard
Git

How to Merge When master is Not The Base Branch

November 27, 2019luciaGit, Github, Pull Requests Leave a comment

If the base branch for your repository is not the default master, you might have encountered this bizarre Pull Request problem when you try to deploy from base branch onto master:

Continue reading →
Standard
NextJS, Performance

When Webpack Takes Too Long to Process Images

November 21, 2019luciaNextJS, Webpack 1 Comment

Sorting out images in Webpack is not too bad up to a point. The url-loader + file-loader combination is usually enough to satisfy needs. However, when you have too many require() for large images, it can take up to 20s or longer to hot-reload after a compile…

Here’s how to mitigate the situation.

Continue reading →
Standard
OS X

How to Kill Whatever’s Running on Port 80

November 4, 2019luciaFuture Reference, OS X, Reference, Terminal Leave a comment

In terminal:

$ lsof -t -i tcp:80 | xargs kill

Standard

Post navigation

→ Newer posts
← Older posts
Leonpharmacy.com | Theme: Ryu by WordPress.com.
Have Fun Learning
Proudly powered by WordPress Theme: Ryu.