Skip to content

Instantly share code, notes, and snippets.

View vbfox's full-sized avatar
❄️
Winter is coming

Julien Roncaglia vbfox

❄️
Winter is coming
View GitHub Profile
@vbfox
vbfox / fullscreenMode.js
Created January 31, 2012 12:54
Just reading around the full screen API and implementing as i read for fun a small wrapper
// http://hacks.mozilla.org/2012/01/using-the-fullscreen-api-in-web-browsers/
function fullscreenMode()
{
this.request = function() {
var documentElement = document.documentElement;
if (documentElement.requestFullscreen) {
return documentElement.requestFullscreen();
}
else if (documentElement.mozRequestFullScreen) {
@vbfox
vbfox / GetReferencedAssemblies.cs
Created August 6, 2012 09:26
GetReferencedAssemblies & GetDirectlyReferencedAssemblies
static class Utils
{
static IEnumerable<Assembly> GetDirectlyReferencedAssemblies(Assembly startAssembly)
{
return startAssembly.GetReferencedAssemblies()
.Select(TryLoad)
.Where(a => a != null && !a.GlobalAssemblyCache);
}
static IEnumerable<Assembly> GetReferencedAssemblies(Assembly startAssembly)
@vbfox
vbfox / ZipVisualStudioTemplates.cs
Created October 25, 2012 13:59
Create zips as expected by visual studio as templates
void Main()
{
var root = new DirectoryInfo(@"C:\temp\tmls\Visual Studio Templates");
var works = from dir in root.GetDirectories("*.*", System.IO.SearchOption.AllDirectories)
where dir.Parent.Name == "1033"
select new {
Archive = Path.Combine(dir.Parent.FullName, dir.Name + ".zip"),
Glob = Path.Combine(dir.FullName, "*"),
Dir = dir
namespace HackNSlash
{
using System;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
@vbfox
vbfox / TwitterRandomSquareBackground.cs
Created April 8, 2014 21:56
Generate a bitmap composed of random squares in different shades of blue
void Main()
{
var bmp = new Bitmap(1920, 1200);
const int size = 20;
Random r = new Random();
Color colorA = Color.FromArgb(0, 148, 255);
Color colorB = Color.FromArgb(145, 216, 255);
@vbfox
vbfox / ReferenceMethodGroup.cs
Last active August 29, 2015 13:59
DOES NOT WORK, GENERATED IL DOES NOT CONTAIN THE EXPECTED CALL. An exploration on how a mock framework can get a call to a method without specifying the arguments and then mock the real call. The C# compiler make it hard as method groups can't appear anywhere in the language. Well except in one place it seem...
void Main()
{
IFoo foo = new Foo();
A.CallMethodWithAnyArgs(() => A.Hack(__arglist(foo.Bar)));
}
public static class A
{
public static void CallMethodWithAnyArgs(Action callSpecification)
{
@vbfox
vbfox / teamCityEscape.fsx
Created August 21, 2014 08:05
FAKE: Escape special team city comments
let private teamCityEscapeChars =
[ ('\'', "|'"); ('\r', "|r"); ('\n', "|n"); ('|', "||"); ('[', "|["); (']', "|]") ]
|> Map.ofSeq
let private teamCityEscape s =
let final = s |> Seq.map (fun c ->
match teamCityEscapeChars |> Map.tryFind c with
| Some(replacement) -> replacement
| _ -> string(c)
@vbfox
vbfox / Zip7.fsx
Created August 21, 2014 08:07
Call 7-Zip from a FAKE F# script
let private encodeParameterArgument original =
if String.IsNullOrEmpty(original) then
original
else
let temp = Regex.Replace(original, @"(\\*)" + "\"", @"$1\$0");
Regex.Replace(temp, @"^(.*\s.*?)(\\*)$", "\"$1$2$2\"");
let private encodeParameterArguments (arguments:seq<string>) =
String.Join(" ", arguments |> Seq.map encodeParameterArgument)
@vbfox
vbfox / HtmlFragment.cs
Created August 27, 2014 13:46
HTML Fragment for clipboard
static class HtmlFragment
{
const string HTML_FRAGMENT_HEADER = "Version:0.9\r\nStartHTML:{0:000000}\r\nEndHTML:{1:000000}"
+ "\r\nStartFragment:{2:000000}\r\nEndFragment:{3:000000}\r\n";
const string HTML_FRAGMENT_BEGIN = "<html>\r\n<head>\r\n"
+ "<meta http-equiv=\"Content-Type\" content=\"text/html; charset={0}\">\r\n</head>\r\n"
+ "<body>\r\n<!--StartFragment-->";
const string HTML_FRAGMENT_END = "<!--EndFragment-->\r\n</body>\r\n</html>\r\n";
@vbfox
vbfox / keybase.md
Created September 25, 2014 09:22
keybase

Keybase proof

I hereby claim:

  • I am vbfox on github.
  • I am vbfox (https://keybase.io/vbfox) on keybase.
  • I have a public key whose fingerprint is 38F5 0CAE 98D0 1EC5 F05F 75F5 E837 FAF6 2D23 1094

To claim this, I am signing this object: