Skip to content

Instantly share code, notes, and snippets.

View chjlsch's full-sized avatar

Christoph Schneider chjlsch

  • Switzerland
  • 10:30 (UTC +02:00)
View GitHub Profile
@scokmen
scokmen / HttpStatusCode.ts
Created April 25, 2017 11:10
Typescript Http Status Codes Enum
"use strict";
/**
* Hypertext Transfer Protocol (HTTP) response status codes.
* @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes}
*/
enum HttpStatusCode {
/**
* The server has received the request headers and the client should proceed to send the request body
@mandiwise
mandiwise / Count lines in Git repo
Last active September 6, 2024 09:50
A command to calculate lines of code in all tracked files in a Git repo
// Reference: http://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository
$ git ls-files | xargs wc -l