Skip to content

Instantly share code, notes, and snippets.

View CSRaghunandan's full-sized avatar

Chakravarthy Raghunandan CSRaghunandan

  • Xerus Systems
  • Bengaluru
View GitHub Profile
@CSRaghunandan
CSRaghunandan / # llvm - 2018-09-23_10-50-21.txt
Created September 23, 2018 05:37
llvm on macOS 10.13.6 - Homebrew build logs
Homebrew build logs for llvm on macOS 10.13.6
Build date: 2018-09-23 10:50:21
@CSRaghunandan
CSRaghunandan / # llvm - 2018-09-21_21-36-43.txt
Created September 21, 2018 17:48
llvm on macOS 10.13.6 - Homebrew build logs
Homebrew build logs for llvm on macOS 10.13.6
Build date: 2018-09-21 21:36:43
@CSRaghunandan
CSRaghunandan / nginx.conf
Last active February 20, 2020 06:06
nginx conf for rtmp hls
#user nobody;
worker_processes 4;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
@CSRaghunandan
CSRaghunandan / nginx.conf
Last active April 20, 2024 19:47
Nginx configuration for serving mp4 videos
#user nobody;
worker_processes 4;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
@CSRaghunandan
CSRaghunandan / test1-age-calculator.js
Last active July 30, 2016 07:13
WireDelta Sample Test
var calculateAgeManual = function (birthYear, currentYear) {
var age = currentYear - birthYear;
console.log("You are either " + age + " or " + (age - 1) + " years old");
};
// gets the current year from javascript
var calculateAgeAutomatic = function (birthYear) {
var date = new Date(),
currentYear = date.getFullYear(),
age = currentYear - birthYear;