Skip to content

Instantly share code, notes, and snippets.

View nimatrazmjo's full-sized avatar
🎯
Focusing

Nimatullah Razmjo nimatrazmjo

🎯
Focusing
View GitHub Profile
@nimatrazmjo
nimatrazmjo / 19 Tips For Everyday Git Use
Created December 30, 2022 12:49 — forked from numberwhun/19 Tips For Everyday Git Use
19 Tips For Everyday Git Use
Taken from: http://www.alexkras.com/19-git-tips-for-everyday-use/
19 Tips For Everyday Git Use
September 8, 2015 by Alex Kras 31 Comments
TwitterHacker NewsRedditFacebookShare1,491
I’ve been using git full time for the past 4 years, and I wanted to share the most practical tips that I’ve learned along the way. Hopefully, it will be useful to somebody out there.
If you are completely new to git, I suggest reading Git Cheat Sheet first or checking out this free tutorial. This article is aimed at somebody who has been using git for three months or more.
@tombasche
tombasche / devopsreading.md
Last active March 29, 2021 17:26
DevOps Reading List

Books to read to learn DevOps

  • The DevOps Handbook - Kim, Humble, Debois, Willis, Allspaw

  • The Phoenix Project - Gene Kim

  • The Unicorn Project - Gene Kim

  • Reinventing Organisations - Frederic Laloux

@mihaiserban
mihaiserban / aws.js
Created November 2, 2018 14:28
AWS SNS handle SES bounce/complaints
const express = require("express");
const router = express.Router();
const User = require("../models/user");
const AWS = require("aws-sdk");
AWS.config.update({
accessKeyId: process.env.accessKeyId,
secretAccessKey: process.env.secretAccessKey,
region: "us-east-1"
});
@adamtester
adamtester / app.module.ts
Created September 1, 2017 13:53
Angular 4 Hash URL on local, HTML5Mode on production
import { NgModule } from '@angular/core';
...
import { environment } from '../environments/environment';
@NgModule({
...
providers: [{
provide: LocationStrategy,
useClass: environment.production ? PathLocationStrategy : HashLocationStrategy,
}],
@nimatrazmjo
nimatrazmjo / README.md
Created June 13, 2016 06:25 — forked from jxson/README.md
README.md template

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.

Motivation