Skip to content

Instantly share code, notes, and snippets.

View victorb's full-sized avatar
๐Ÿ„โ€โ™‚๏ธ
๐“ข๐“พ๐“ป๐“ฏ๐“ฒ๐“ท๐“ฐ - ๐“ฝ๐“ฑ๐“ฎ - ๐“ฌ๐”‚๐“ซ๐“ฎ๐“ป๐“ผ๐“น๐“ช๐“ฌ๐“ฎ

Victor Bjelkholm victorb

๐Ÿ„โ€โ™‚๏ธ
๐“ข๐“พ๐“ป๐“ฏ๐“ฒ๐“ท๐“ฐ - ๐“ฝ๐“ฑ๐“ฎ - ๐“ฌ๐”‚๐“ซ๐“ฎ๐“ป๐“ผ๐“น๐“ช๐“ฌ๐“ฎ
  • Stuff
  • Barcelona, Spain
  • 13:04 (UTC +08:00)
  • Bluesky @victor.earth
View GitHub Profile
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>>NSA angรฅende hur man anvรคnder XKeyscore (รถvervakningsprogram frรฅn NSA) med Sverige som exempel</title>
<style>
body,html {
color: #333;
width: 600px;
margin: 1em auto;
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>>NSA angรฅende hur man anvรคnder XKeyscore (รถvervakningsprogram frรฅn NSA) med Sverige som exempel</title>
<style>
body,html {
color: #333;
width: 600px;
margin: 1em auto;
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>>NSA angรฅende hur man anvรคnder XKeyscore (รถvervakningsprogram frรฅn NSA) med Sverige som exempel</title>
<style>
body,html {
color: #333;
width: 1024px;
margin: 1em auto;
> whois xkeyscore.com
Whois Server Version 2.0
Domain names in the .com and .net domains can now be registered
with many different competing registrars. Go to http://www.internic.net
for detailed information.
Domain Name: XKEYSCORE.COM
Registrar: ENOM, INC.
var currentEmails = {};
var detectedTransport = null;
jQuery(document).ready(function () {
unsub(theinbox);
connectee()
});
var dataPack;
var connected = false;
function setKaptcha() {
@victorb
victorb / app.js
Created September 24, 2013 16:37
Easy AngularJS Directive for Google Places Autocomplete
var myApp = angular.module('myApp', []);
myApp.directive('googleplace', function() {
return {
require: 'ngModel',
link: function(scope, element, attrs, model) {
var options = {
types: [],
componentRestrictions: {}
};
#
# Wide-open CORS config for nginx
#
location / {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
#
@victorb
victorb / pre-commit
Created January 9, 2014 14:05
Make sure there is no var_dump, die or console.log in new changes
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# # Installation:
# touch .git/hooks/pre-commit
# chmod u+x .git/hooks/pre-commit
angular.module('silviaModule.Slider', ['ngSanitize'])
.directive('svSlider', function() {
return {
restrict: 'E',
scope: {
'ngModel': '='
},
template: '<div ng-bind-html="slide"></div>',
controller: function($scope, $sce) {
$scope.$watch('ngModel', function(newVal) {
tr {
position: relative;
}
.clicky {
position: absolute;
opacity: 0;
}