Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| Don't worry about what anybody else is going to do. The best way to | |
| predict the future is to invent it. | |
| -- Alan Kay | |
| Premature optimization is the root of all evil (or at least most of it) | |
| in programming. | |
| -- Donald Knuth | |
| Lisp has jokingly been called "the most intelligent way to misuse a | |
| computer". I think that description is a great compliment because it |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
| class PngIconConverter | |
| { | |
| /* input image with width = height is suggested to get the best result */ | |
| /* png support in icon was introduced in Windows Vista */ | |
| public static bool Convert(System.IO.Stream input_stream, System.IO.Stream output_stream, int size, bool keep_aspect_ratio = false) | |
| { | |
| System.Drawing.Bitmap input_bit = (System.Drawing.Bitmap)System.Drawing.Bitmap.FromStream(input_stream); | |
| if (input_bit != null) | |
| { | |
| int width, height; |
| // Copyright (c) 2006, 2008 Tony Garnock-Jones <[email protected]> | |
| // Copyright (c) 2006, 2008 LShift Ltd. <[email protected]> | |
| // | |
| // Permission is hereby granted, free of charge, to any person | |
| // obtaining a copy of this software and associated documentation files | |
| // (the "Software"), to deal in the Software without restriction, | |
| // including without limitation the rights to use, copy, modify, merge, | |
| // publish, distribute, sublicense, and/or sell copies of the Software, | |
| // and to permit persons to whom the Software is furnished to do so, | |
| // subject to the following conditions: |
| using (StackExchange.Profiling.MiniProfiler.Current.Step("Call Methods")) | |
| { | |
| //Some work to be done here | |
| } |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(clock_timestamp(), query_start), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
| using System; | |
| using System.Net.WebSockets; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace Coe.WebSocketWrapper | |
| { | |
| public class WebSocketWrapper | |
| { |
| public static class DynamicBinderExtensions | |
| { | |
| public static dynamic DynaBind(this INancyModule module) | |
| { | |
| return module.Bind<DynamicDictionary>(); | |
| } | |
| } |