This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conky.config = { | |
alignment = 'top_right', | |
background = true, | |
draw_shades = false, | |
default_color = '93A1A1', | |
color2 = '586E75', | |
cpu_avg_samples = 2, | |
double_buffer = true, | |
font = 'Bitstream Vera Sans:size=8', | |
gap_x = 25, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
So, yea, it was a sweeping gesture of the type that usually offends people, but what was missing was depth. | |
Yes, we have a problem with people writing job adverts. People are shit, overall, and are really shit and doing things they don't want. Who likes writing job adverts? Fuck, I know I don't, and I like reading them even less. Also, so so so many different people write job adverts, HR, managers, devs, someones cat. | |
With this in mind, trying to educate people to write better job adverts is going to be a difficult task! So many different types of people, job roles, companies, etc. etc. | |
So, while that might be the best solution, its very unworkable. So we need a different plan of attack. What enviroment is conductive to learning? Has all the people who will be reading these shit adverts together? Why, uni of course! I am also kinda make the assumption (i know, i know, mother of fuck ups) that they already teach you how to write CVs, take interviews, etc. n uni, so why not simply include a part abo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Generated on 2013-10-09 using generator-angular 0.4.0 | |
'use strict'; | |
var LIVERELOAD_PORT = 35729; | |
var lrSnippet = require('connect-livereload')({ port: LIVERELOAD_PORT }); | |
var mountFolder = function (connect, dir) { | |
return connect.static(require('path').resolve(dir), {maxAge: 1}); | |
}; | |
// # Globbing | |
// for performance reasons we're only matching one level down: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.directive('grid', function() { | |
return { | |
scope: { | |
panels: "=" | |
}, | |
templateUrl: 'partials/templates/grid.html', | |
link: function($scope, element, attributes ) { | |
} | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Chat(notifier, tabStatus) { | |
this.notifier = notifier; | |
this.tab_status = tabStatus; | |
}; | |
_.extend(Chat.prototype, { | |
init: function() { | |
this.join(); | |
this.open(); | |
this.leave(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_commit_hash_and_date | |
begin | |
commit = `git log -1 --pretty=format:%H` | |
git_date = `git log -1 --date=iso --pretty=format:%ad` | |
branch = `git rev-parse --abbrev-ref HEAD` | |
commit_date = DateTime.parse( git_date ).strftime("%Y-%m-%d %H%M%S") | |
rescue | |
commit = ENV["BUILD_VCS_NUMBER"] | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// /api/wut | |
public GetGuidesModule() | |
: base("/api") | |
{ | |
Get["/wut"] = p => | |
{ | |
return "Hello"; | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[UriTemplate("/api/newsletter")] | |
public class PostNewsletter : IPost<Newsletter>, IOutput<NewsletterResponse> | |
{ | |
private static dynamic Data { get { return Database.OpenConnection(GlobalSettings.DbDSN); } } | |
public NewsletterResponse Output { get; private set; } | |
public Status Post(Newsletter input) | |
{ | |
var exists = Data.NewsletterSignup.FindByEmail(input.Email); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mapper.CreateMap<INode, NavigationItem>().AfterMap((n, ni) => ni.Children = n.ChildrenAsList.MapTo<IEnumerable<NavigationItem>>()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[10:54:14]: [Execute albacore:build_deploy] C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets(2850,5): error MSB4018: The "IsCleanMSDeployPackageNeeded" task failed unexpectedly. [C:\BuildAgent\work\18e5907761dbdf95\Production\src\XX.Web\XX.Web.csproj] | |
[10:54:14]: [Execute albacore:build_deploy] C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets(2850,5): error MSB4018: System.NullReferenceException: Object reference not set to an instance of an object. [C:\BuildAgent\work\18e5907761dbdf95\Production\src\XX.Web\XX.Web.csproj] | |
[10:54:14]: [Execute albacore:build_deploy] C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.targets(2850,5): error MSB4018: at Microsoft.Web.Publishing.Tasks.Common.Utility.CheckMSDeploymentVersion() [C:\BuildAgent\work\18e5907761dbdf95\Production\src\XX.Web\XX.Web.csproj] | |
[10:54:14]: [Execute albacore:build_deploy] C:\Program Files (x86)\MSBuild\Microso |
NewerOlder