Skip to content

Instantly share code, notes, and snippets.

View sonukapoor's full-sized avatar
🎯
Hello :)

Sonu Kapoor sonukapoor

🎯
Hello :)
View GitHub Profile
https://medium.com/@feloy/deploying-an-i18n-angular-app-with-angular-cli-fc788f17e358
@sonukapoor
sonukapoor / gist:6b35e88227f34e37a6df1c43a67608ee
Created July 12, 2017 20:12
Get all files in Unix without folders and push to eslintignore
find . -type f > ../.eslintignore
@sonukapoor
sonukapoor / README.md
Created August 4, 2017 21:20 — forked from krimple/README.md
Test and class under test for Http mocking - Angular 2 beta 1

This snippet is a working example of a test against the Http service in Angular 2.0.

It is a very simple test, and provides an example of how to:

  • Provide the right wiring to the test injector
  • Inject the fake XHRBackend (i.e. MockBackend)
  • Define a potential request
  • Run the request in the framework
  • Set expectations on the result
@sonukapoor
sonukapoor / gist:8d78f1d8b1577cb04268add8ce6cbd00
Created September 7, 2017 20:58
Creating dynamic components in angular 4
The below snippet allows us to dynamically add components into a component.
// in your component.ts
// contactContainer is a DOM element with a templateRef called #contactContainer
@ViewChild('contactContainer', { read: ViewContainerRef }) contactContainer: ViewContainerRef;
constructor(
private viewContainerRef: ViewContainerRef,
private componentFactoryResolver: ComponentFactoryResolver) {
}
@sonukapoor
sonukapoor / gist:8639fdf43357972b2e339db76de0326a
Last active May 17, 2019 18:18
VSCode User Settings with iTerm
// user settings
{
"files.insertFinalNewline": true,
"editor.minimap.enabled": false,
"prettier.singleQuote": true,
"prettier.printWidth": 120,
"editor.formatOnSave": true,
"editor.formatOnPaste": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.fontSize": 14,
@sonukapoor
sonukapoor / gist:ba547f37b49544e101ff8381fdcebcb3
Created December 5, 2017 23:51 — forked from jmervine/gist:2079897
installing mysql on ubuntu using an aws instance
$ sudo apt-get install mysql-server mysql-client
... output omitted ...
$ sudo mysqladmin -u root -h localhost password 'password'
... output omitted ...
$ mysql -u root -p
... output omitted ...
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'your_host_name' IDENTIFIED BY "password";
Query OK, 0 rows affected (0.00 sec)
mysql> FLUSH PRIVILEGES;
@sonukapoor
sonukapoor / nginx.sh
Created December 29, 2017 01:40 — forked from makevoid/nginx.sh
nginx init.d file for centos/rhel - /etc/init.d/nginx
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemon
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /etc/nginx/nginx.conf
# config: /etc/sysconfig/nginx
@sonukapoor
sonukapoor / nodejs-ubuntu-bind-port-80.md
Created December 29, 2017 16:34 — forked from drawveloper/nodejs-ubuntu-bind-port-80.md
Allow Node.js to bind to privileged ports without root access on Ubuntu

How to: Allow Node to bind to port 80 without sudo

TL;DR

Only do this if you understand the consequences: all node programs will be able to bind on ports < 1024

sudo setcap 'cap_net_bind_service=+ep' /usr/local/bin/node

Important: your node location may vary. Use which node to find it, or use it directly in the command:

-- nginx config
sudo vi /etc/nginx/nginx.conf
-- allow nginx communication with other ports
sudo setsebool -P httpd_can_network_connect 1
-- test nginx config
sudo nginx -t
-- check nginx log
@sonukapoor
sonukapoor / VS Extensions
Last active June 19, 2018 18:56
Get all VS Code extensions
# Get all VS Code extensions:
code --list-extensions | xargs -L 1 echo code --install-extension
# My fav VS Code Extentions
code --install-extension Angular.ng-template
code --install-extension CoenraadS.bracket-pair-colorizer
code --install-extension SirTori.indenticator
code --install-extension WallabyJs.quokka-vscode