Skip to content

Instantly share code, notes, and snippets.

<p>Hei,</p>
<p>Denne gruppa har ikke hatt så mye aktivitet, og etter den siste flausen til Meetup (du kan lese mer om det <a href="https://news-proxy.freecodecamp.org/news/the-wework-meetup-debacle-and-a-new-chapter/">her</a>) er vi rett og slett blitt usikre på om vi ønsker å bruke Meetup til å organisere arrangementer fremover.</p>
<p><strong>Vi vil legge ned denne gruppen:</strong> Vi venter et par uker, i tilfelle folk har spørsmål, og anbefaler folk å følge med på en eller flere av informasjonskanalene våre for oppdateringer.</p>
<ul>
<li>This Week in Solid: Ukentlig nyhetsbrev som kan mottas <a href="https://tinyletter.com/ThisWeekInSolid">som epost</a> eller <a href="https://github.com/solid/information/blob/master/weekly-updates/this-week-in-solid.md">ses via GitHub</a></li>
<li><a href="https://forum.solidproject.org/">Forum på solidproject.com</a></li>
<li></li>
<li><a href="https://gitter.im/solid/chat">solid/chat på gitter.com</a></li>
</ul>
<p><strong>Vi lager ikke noen alternativ Meetup-gruppe e

Keybase proof

I hereby claim:

  • I am megoth on github.
  • I am megoth (https://keybase.io/megoth) on keybase.
  • I have a public key ASBfT_c6zgj_kI8nXwXOWAx2usiHCx9WgOsq3YBStCIcDAo

To claim this, I am signing this object:

cd "C:\Program Files\Microsoft SQL Server\110\Tools\Binn"
SqlLocalDB.exe start "Projects"
pause
SqlLocalDB.exe stop "Projects"
<a class="btn btn-large" href="#" ng-show="showButton">Click me!</a>
$scope.$on("checkboxSurveyCompleted", function (event, uri) {
$scope.showButton = true;
$scope.$digest();
var toSubmit = { exerciseId: $scope.exercise.id };
$scope.result.$complete(toSubmit)
.success(function () {
$scope.$emit("SetExerciseUrl", uri);
});
});
function (scope, element) {
function iframeSetup(frameRef) {
var iframe = frameRef.contentWindow ? frameRef.contentWindow.document : frameRef.contentDocument;
var finished = iframe.getElementById("ExerciseComplete") != null;
if (finished) {
scope.$emit("checkboxSurveyCompleted", scope.uriToExercises);
return;
}
var paused = iframe.getElementById("ExercisePaused") != null; // bogus ID, must be replaced with something that actually is used in checkbox
if (paused) {
@megoth
megoth / gist:3418168
Created August 21, 2012 18:26
HDO changes
diff --git a/app/assets/stylesheets/_shared.less b/app/assets/stylesheets/_shared.less
index e4480b2..453f35e 100644
--- a/app/assets/stylesheets/_shared.less
+++ b/app/assets/stylesheets/_shared.less
@@ -1,3 +1,35 @@
+@import "twitter/bootstrap/bootstrap";
+@import "twitter/bootstrap/responsive";
+
+@font-face {
+ font-family: "Neo Sans";
@megoth
megoth / gist:2635085
Created May 8, 2012 13:38
Graphite graph - Testing .size with done(function () { ... });
define([
"src/graphite/graph",
"src/graphite/dictionary",
"src/graphite/query",
"src/graphite/utils",
"src/graphite/when"
], function (Graph, Dictionary, Query, Utils, When) {
buster.testCase("Graphite graph", {
...
"Function .size": function (done) {
@megoth
megoth / graphite.loader.xhr.js
Created April 19, 2012 14:00
graphite.loader.xhr
/*global graphite*/
(function (graphite, loader, proxy) {
"use strict";
var xhr = function (options) {
this.options = graphite.extend({
"asynchronous": true,
"method": "GET",
"uri": window.location
}, options);
this.req = new XMLHttpRequest();
@megoth
megoth / exceptions.test.js
Created February 21, 2012 12:40
Buster.JS: Exception-bug (not in this case though...)
var testable = function(arg) {
if(!arg) {
throw new Error("Input not valid");
}
return arg;
};
buster.testCase("Buster.JS Exception no work", {
"testable can be called": function() {
assert.defined(testable);