Problem with LeetCode and SWE jobs

This is a rant about software engineering interviews and LeetCode. šŸ—Æļø Preamble In 2024, hundreds of thousands of people worldwide are grinding through LeetCode, aiming to break into the tech industry, drawn by the high salaries it offers. šŸ¤” What does LeetCode actually bring? LeetCode offers little more than these benefits: Algorithm exercises and data structure knowledge Coding under pressure (Why though? Are we in a war zone now?) Passing coding interviews However, completing LeetCode doesnā€™t prove youā€™re a good software engineer. It only shows you can code basic algorithms and solve programming puzzles. It doesnā€™t test essential skills like collaboration, communication, documentation, design patterns, system architecture, low-level programming, or core computer science knowledge. ...

September 7, 2024 Ā· 2 min Ā· 379 words Ā· Jen-Chieh Shen

Being 10x engineer in my first job

Recently, I came across a post on LinkedIn with the eye-catching title, ā€œI think Iā€™ve met a 10x engineer.ā€ But as I read through the post, I started to have doubts. The author described how one of their colleagues had managed to fix a bunch of complex bugs in a short amount of time, which left them in awe. šŸ¤” But is that really what defines a 10x engineer? It brought back memories of my own experience as a so-called 10x engineer during my first job! ...

September 6, 2024 Ā· 3 min Ā· 505 words Ā· Jen-Chieh Shen

Elisp Language Server

Repo link: https://github.com/jcs090218/ellsp Iā€™ve recently created a language server for Emacs Lisp. Itā€™s interesting since people donā€™t think a language server for Emacs Lisp will provide any value. The statement is correct, and so do I. Emacs Lisp is only used within the Emacs editor, and Emacs itself is an Emacs Lisp interpreter. Therefore, a language server for Emacs Lisp would hardly bring any benefits to Emacs users. But imagine you can code elisp (short for Emacs Lisp) outside of Emacs. That sounds interesting, huh? šŸ¤” ...

November 19, 2023 Ā· 2 min Ā· 412 words Ā· Jen-Chieh Shen

How to build your own ELPA with Eask?

ELPA stands for Emacs Lisp Package Archive. Itā€™s used for Emacs users to download packages from, and itā€™s also the place where Emacs Lisp developers will host their packages. Here is a list of famous ELPA; see their site for more information! GNU Elpa (official) NonGNU Elpa (official) MELPA ā“ Why? So why do we want to host our own ELPA? Arenā€™t those ELPAs enough? Yes, in general, you donā€™t need to host ELPA yourself since most packages you need will be available in one of those ELPA (packages can co-exist between ELPA). Here are several reasons why you might want to build your own ELPA: ...

September 15, 2023 Ā· 4 min Ā· 652 words Ā· Jen-Chieh Shen

My first VSCode plugin

Repo Link: https://github.com/shader-ls/vscode-shader Aug 23rd, 2023. Iā€™ve created my first VSCode plugin ā€“ vscode-shader. My intention was simple: to create a language serverā€™s client in VSCode for my shader-language-server that I created a couple of months ago. šŸ¤” šŸ”° Simple and good UX First of all, it is very simple to develop a VSCode plugin. Especially developing a language serverā€™s client for VSCode. There are many examples and good documentation on their site, making it very easy for developers. I am using uniteai and grammarly-language-server as the references. ...

August 24, 2023 Ā· 1 min Ā· 193 words Ā· Jen-Chieh Shen

Shader Language Server (LS)

Repo Link: https://github.com/shader-ls/shader-language-server April 30th, 2023. I have created my first language server that is actually useful to someone. I tried a language server a while back, but it was just an example server, so itā€™s not very useful, and itā€™s only for educational purposes. The target language I chose to write is the ShaderLab language. ShaderLab is used in Unity Engine, so you can write custom shaders to stylize your game. Unlike regular programming languages, ShaderLab is much simpler to analyze, so the language server can respond to the client side. ...

August 23, 2023 Ā· 3 min Ā· 516 words Ā· Jen-Chieh Shen

Long Journey with Emacs

āš ļø The intention of this post is to remind myself why Emacs isnā€™t worth my time anymore. Iā€™ve been using Emacs since 2015. I have developed more than 150 elisp packages, and maintained over 200 packages (including my packages). Itā€™s been a long journey staying in the Emacs community, I think itā€™s a good for me to slow myself down and step back a little and think what Iā€™ve accomplished through out these years. ...

July 8, 2023 Ā· 5 min Ā· 865 words Ā· Jen-Chieh Shen

Emacs Eask 101 - Build tool

Iā€™ve developed more than 50 elisp packages, and maintain 100 or more of them. Developing an elisp package isnā€™t easy for a beginner, especially for those who want to publish their package to an ELPA. e.g., GNU Elpa, NonGNU Elpa, MELPA, etc. Thatā€™s why I use Eask to help me develop elisp packages. Therefore, in this article, Iā€™m going to teach people how to use this tool to help you build your own elisp packages! šŸ˜„ ...

April 10, 2023 Ā· 4 min Ā· 659 words Ā· Jen-Chieh Shen

Fastest ELPA

Whatā€™s the fastest ELPA? Letā€™s define it first! The ELPA runs the fastest? No, that doesnā€™t make any sense. The ELPA serves you the fastest? Maybe. The definition for fastest ELPA in this article means it builds your packages the fastest! You might wonder why and how! Let me explain it to you! Normal ELPA, like MELPA, builds packages from the recipes directory, so it takes O(n) to do so. The more packages one ELPA holds, take longer the time to get packages to update to the server. The general solution is to use a more powerful PC to reduce the build time. ...

April 10, 2023 Ā· 2 min Ā· 403 words Ā· Jen-Chieh Shen

First server migration

I have always been using AWS as my main web hosting choice. But I have come to the point that I reckon the price and services arenā€™t something that I need. Therefore, I have decided to switch to another web hosting company just for another taste. The main reasons are listed below: AWS charges you money when you click on their services without notifying the user. I dislike how it functions. The price is too high, plus I donā€™t really need it UI is awful, and UX is bad Jargons arenā€™t transferable (Iā€™m picky) Now, letā€™s move into details. ...

September 10, 2022 Ā· 3 min Ā· 488 words Ā· Jen-Chieh Shen