Skip to content

Instantly share code, notes, and snippets.

@bryanmenard
bryanmenard / privacy.policy.txt
Created June 20, 2018 03:34 — forked from walkergv/privacy.policy.txt
Privacy Policy Boilerplate
Privacy Policy
Your privacy and security are important to us.
We recognize and respect your need for privacy and security as you visit our site. When you visit our site to view any pages, read product information, or use our on-line calculators and tools, you do so without telling us who you are and without revealing any personal information. While we do not collect identifying information about visitors to our site, we do use standard software to collect information for the strict purpose of tracking activity on our site. This allows us to better understand how many people use our site and which pages and features are most popular. The only information we normally collect and store is:
The name of your Internet service provider
The web site that referred you to us (if any)
The date and time the pages were accessed
The page or pages you requested
@bryanmenard
bryanmenard / PrivacyPolicy.html
Last active February 8, 2018 16:26 — forked from alphamu/Android Privacy Policy Template
A template for creating your own privacy policy for Android apps. Look for "[" and "<!--" to see where you need to edit this app in order to create your own privacy olicy.
<html>
<body>
<h2>Privacy Policy</h2>
<p>Cactusoft built the Notasheet app as a commercial app. This SERVICE is provided by Cactusoft and is intended for use as is.</p>
<p>This page is used to inform website visitors regarding our policies with the collection, use, and
disclosure of Personal Information if anyone decided to use our Service.</p>
<p>If you choose to use our Service, then you agree to the collection and use of information in
@bryanmenard
bryanmenard / README.md
Created July 19, 2017 20:39 — forked from aaronk6/README.md
launchUri

Cross-browser implementation of navigator.msLaunchUri

Microsoft’s navigator.msLaunchUri method only works in Internet Explorer on Windows 8. Therefore I came up with a (nearly) cross-browser implementation that uses the native msLaunchUri when it’s available and falls back to adventurous hacks when running in other browsers.

Description

launchUri (uri, successCallback, noHandlerCallback, unknownCallback)
@bryanmenard
bryanmenard / Feedly.js
Created March 17, 2013 19:56
My Personal Feedly Userscript
// ==UserScript==
// @name My Personal Feedly
// @namespace http://bryblog.com/userscripts
// @version 1.0
// @description My Personal Feedly
// @match http://www.feedly.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// @author Bryan Ménard
// ==/UserScript==
@bryanmenard
bryanmenard / RouteTestsBase.cs
Last active December 14, 2015 11:39
RouteTestsBase - Base class for testing routes in ASP.NET MVC using action-centric tests
// Release under MIT license Copyright (c) 2013 Bryan Menard, http://www.bryblog.com/license.txt
using System;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using NUnit.Framework;
@bryanmenard
bryanmenard / hec-zc2-userscript.js
Created October 13, 2012 22:43
HEC ZoneCours 2 Improvements
// ==UserScript==
// @name HEC ZoneCours 2 Improvements
// @version 0.1
// @id hec-zc2-improvements
// @include https://zonecours2.hec.ca/portal*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// @author Bryan Ménard
// ==/UserScript==
(function ($) {
@bryanmenard
bryanmenard / ComponentContainer.cs
Created November 14, 2011 03:24
dioc - Dependency injection and Inversion of control
// Release under MIT license Copyright (c) 2011 Bryan Menard, http://www.bryblog.com/license.txt
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Dioc
{