In windows 10, sometimes we get an error for a particular port:
Ports are not available: listen tcp 0.0.0.0:55555: bind: An attempt was made to access a socket in a way forbidden by its access permissions. When seeing this error, our first instinct will be that somehow the port we need is being used by another application. So if we check for ports in use:
netstat -aon | find "55555" But the result may show that the port was not already being used.
8 Practical Examples of Common CSS Transitions 🧵 Thread 👇
5 CSS Mistakes you Should Avoid 🧵 Thread 👇
Beginner's Guide To SASS 🧵 Thread 👇
How to position elements in CSS. 🧵 Thread 👇
40+ High-Quality Free Resources for Web Development A Master Thread
- Drawkit http://drawkit.io
- Blush http://blush.design
- Smash illustration http://usesmash.com
- Controlhttp://control.rocks
- Error 404 http://error404.fun
- Open Doodles http://opendoodles.com
What is TypeScript? TypeScript is a typed superset of JavaScript that compiles to plain JavaScript which helps us build large scale applications with ease.
The main purpose of TS is to help developers be more productive by providing best in class tooling. (Eg. static type checking, editor intellisense, language features etc etc.)
Annotating your code isn't just about finding errors and validating the code before hand, it's also about documenting the code and conveying your intent more clearly to your future self and to other developers.
Consistency matters, they say...🤔 Starting from today, I'll post one UI tip per day for the next 50 days! Follow this thread
💡Tip #01 - Set the fixed width of your buttons if they have a loading state Otherwise, they'll shrink when loading, and it looks terrible.
💡Tip #02 - Don't hide tips if it's unnecessary Developers tend to hide tips under icons/tooltips/popups. In this case, your users will be forced to hover every icon to read the tip. It'd be better to show tips right away, if possible. 😊
git config --global http.postBuffer 524288000 | |
git clone http://github.com/large-repository --depth 1 | |
cd large-repository | |
git fetch --unshallow | |
On Linux | |
Execute the following in the command line before executing the Git command: |