Skip to content

Instantly share code, notes, and snippets.

View claudiuconstantin's full-sized avatar
🖥️
Busy building things

Claudiu Constantin claudiuconstantin

🖥️
Busy building things
View GitHub Profile
@igogrek
igogrek / How I stopped loving Angular.md
Last active April 2, 2024 03:00
How I stopped loving Angular

I've worked with AngularJS for many years now and still use it in production today. Even though you can't call it ideal, given its historically-formed architecture, nobody would argue that it became quite a milestone not only for evolution of JS frameworks, but for the whole web.

It's 2017 and every new product/project has to choose a framework for development. For a long time I was sure that new Angular 2/4 (just Angular below) will become the main trend for enterprise development for years to come. I wasn't even thinking of working with something else.

Today I refuse to use it in my next project myself.

@mrgoos
mrgoos / notifications.component.html
Last active March 3, 2022 09:05
Use primeNg GrowlModule globally through a service
<p-growl [value]="msgs"></p-growl>
@zachrose
zachrose / reserved-words.txt
Created November 28, 2015 05:46
URL paths to reserve in a web app
about
admin
blog
calendar
contact
copyright
dashboard
email
errors
events
Install-WindowsUpdate -AcceptEula -SuppressReboots
# Windows configuration
Disable-InternetExplorerESC
Disable-GameBarTips
Disable-UAC
Enable-RemoteDesktop
Set-WindowsExplorerOptions -DisableShowHiddenFilesFoldersDrives -DisableShowProtectedOSFiles -DisableOpenFileExplorerToQuickAccess -EnableShowFileExtensions -EnableShowFullPathInTitleBar -EnableExpandToOpenFolder -EnableShowRibbon
Set-TaskbarOptions -Size Large -Lock -Dock Bottom -Combine Full
Update-ExecutionPolicy Unrestricted
@okunishinishi
okunishinishi / Remove all git tags
Created March 8, 2014 03:12
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d