Skip to content

Instantly share code, notes, and snippets.

@extrimua
extrimua / .bashrc
Last active September 30, 2020 12:37
Linux | Parse git branch
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
@extrimua
extrimua / init-repo
Last active April 15, 2021 09:41
Create github repository from command line
curl -u '<username>' https://api.github.com/user/repos -d '{"name": "<reponame>"}'
touch README.md
git init
git add .
git commit -m "init commit"
git remote add origin [email protected]:<username>/<reponame>.git
git push -u origin master
@extrimua
extrimua / aboutNodeJsArchitecture.md
Created October 20, 2020 20:00 — forked from zmts/aboutNodeJsArchitecture.md
A little bit about Node.js API Architecture

A little bit about Node.js API Architecture (Архитектура/паттерны организации кода Node.js приложений)

node.js

TL;DR

code: https://github.com/zmts/supra-api-nodejs

Предисловие

Одной из болезней Node.js комьюнити это отсутствие каких либо крупных фреймворков, действительно крупных уровня Symphony/Django/RoR/Spring. Что является причиной все ещё достаточно юного возраста данной технологии. И каждый кузнец кует как умеет ну или как в интернетах посоветовали. Собственно это моя попытка выковать некий свой подход к построению Node.js приложений.

@extrimua
extrimua / nginx.conf
Created April 23, 2021 11:10 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
// Model
import { User } from '../models/User.js'
// Repository
import { UserRepositoryInterface } from '../../../../domain/contracts/repository/UserRepositoryInterface.js'
export class UserRepository extends UserRepositoryInterface {
async create({ id, auth, name, photo }){
@extrimua
extrimua / docker.svg
Last active August 18, 2021 07:47
Base64
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@extrimua
extrimua / fedora-31-install-webstorm.md
Created July 22, 2021 09:57 — forked from siamkreative/fedora-31-install-webstorm.md
Installing WebStorm on Fedora 31
@extrimua
extrimua / util-inherits
Created July 28, 2021 14:29
Node.js Inherits
// Inherits Prototype
util.inherits(Constructor, SuperConstructor)
// Inherits Instance
Object.assign(new Constructor(), new SuperConstructor())
@extrimua
extrimua / hrtime.js
Created July 30, 2021 12:33
Execution Timer
const hrstart = process.hrtime()
//some code which takes time
const hrend = process.hrtime(hrstart)
console.info("Execution time (hr): %ds %dms", hrend[0], hrend[1] / 1000000);
@extrimua
extrimua / deepFreeze.js
Last active September 1, 2021 14:30
deepFreeze
const deepFreeze = obj => {
Object.keys(obj).forEach(prop => {
if (typeof obj[prop] === 'object') deepFreeze(obj[prop]);
});
return Object.freeze(obj);
};