- Setup Angular Notifier
- Angular Notifier Not Styling Fix
- Angualr Notifier From Scratch
- Angular Notifier For Angular
- Simple Notifier For Angular
You should try the bulma framework
Wait?
Have you already tried it but you want different flavors of it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax on | |
| set noerrorbells | |
| set tabstop=4 softtabstop=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| set smartindent | |
| set nu | |
| set nowrap |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aaron-bond.better-comments | |
| Angular.ng-template | |
| aslamanver.vsc-export | |
| bar9.stories | |
| BeardedBear.beardedicons | |
| BeardedBear.beardedtheme | |
| benawad.VSinder | |
| bmewburn.vscode-intelephense-client | |
| brapifra.phpserver | |
| burkeholland.simple-react-snippets |
I will be sharing links that I am reading, right here.
Generate A Pallete Here : https://material.io/design/color/the-color-system.html#tools-for-picking-colors
Delete All Unused old node_modules folders from your pc at once.
Just Use npx npkill for removing node modules
and for searching unused packages npx depcheck
I Found This Solution at It's an HashNode Blog
I am creating this gist because I often wonder how many web projects I have created that are hosted live but perhaps not accessible to the public. Or Sometimes even I forget about them.
So this is the solution for me. I will put almost every link of my projects in this gist. (It's hard to find them all because I have a lot of projects hosted that I don't even know about.)
Okey Let's Start:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // My react hook getting username from router params | |
| // I don't need a hook in this case, but I'll make one anyway, because it looks cool | |
| // its the most simple react hook ever, technically it's not even a hook | |
| export default function useUsername() { | |
| const url = new URL(window.location.href) | |
| const username = url.pathname.split('/')[1] | |
| return username | |
| } |
OlderNewer