Skip to content

Instantly share code, notes, and snippets.

@devfred
devfred / gist:9802185560e9b0836a12fe8c8e158cf1
Created August 9, 2020 19:29 — forked from metavida/gist:601087
How to retrieve a Report record via the Haiku LMS API, using C#.
// Based on code from the following sources:
// * http://www.voiceoftech.com/swhitley/index.php/2009/03/twitter-oauth-with-net/
// * http://oauth.googlecode.com/svn/code/csharp/
// Note: if you're using mono the following command will compile this code `gmcs -r:System.Web.dll this_file.cs`
using System;
using System.Security.Cryptography;
using System.Collections.Generic;
using System.Text;
using System.Net;
@devfred
devfred / nginx.conf
Created November 16, 2016 08:56 — 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
@devfred
devfred / haproxy.cfg
Created November 16, 2016 07:32 — forked from patmandenver/haproxy.cfg
haproxy with letsencrypt forwarding
global
log 127.0.0.1 syslog
maxconn 1000
user haproxy
group haproxy
daemon
defaults
log global
@devfred
devfred / nginx.conf
Created November 16, 2016 07:29 — forked from patmandenver/nginx.conf
nginx letsencrypt file
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
use epoll;
multi_accept on;
@devfred
devfred / audio-api-wrapper.ts
Last active February 17, 2020 19:17
Typescript: HTML5 Audio Wrapper for angular2
/**
* @class
* @description
* Wrapper for HTML5 audio.
*/
import {Injectable, NgZone} from 'angular2/core';
import {Observer} from 'rxjs/Observer';
import {Observable} from 'rxjs/Observable';
declare var AudioContext:any;
var UpdateQueryStringParameter = function(uri, key, value) {
var re = new RegExp("([?&])" + key + "=.*?(&|$)", "i");
var separator = uri.indexOf('?') !== -1 ? "&" : "?";
if (uri.match(re)) {
return uri.replace(re, '$1' + key + "=" + value + '$2');
}
else {
return uri + separator + key + "=" + value;
}
};
@devfred
devfred / gist:586f9604266c342b788e
Last active December 6, 2015 11:14
Configure github auth in jspm
jspm registry config github
@devfred
devfred / view.ascx
Created October 22, 2015 20:57 — forked from SCullman/view.ascx
DNN, ko and localization
<script>
var resources = <%=Resources%>;
var viewModel = {localize:resources};
ko.applyBindings(viewModel);
</script>
<span data-bind="text:localize.Message"></span>
<span data-bind="text:localize.Message_Help"></span>
@devfred
devfred / titanium_app.js
Last active August 29, 2015 14:24
Titanium app - open map/navigation app in android from WebView
var Bind = function(evtName, handler){
Ti.App.addEventListener('app:' + evtName, handler);
};
var NavigateTo = function(e){
Ti.Platform.openURL('http://maps.google.com/maps?daddr=' + e.dest +'&directionsmode=driving');
};
Bind('NavigateTo', NavigateTo);
@devfred
devfred / node-exec.js
Created July 12, 2015 17:43
Execute command using node
var exec = require('child_process').exec;
var child;
child = exec('msbuild', function (error, stdout, stderr) {
console.log('stdout: ' + stdout);
console.log('stderr: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error);
}
});