Skip to content

Instantly share code, notes, and snippets.

View kristjanmik's full-sized avatar

Kristján Ingi Mikaelsson kristjanmik

View GitHub Profile
function WGS84_To_ISN93(l,m){
l = parseFloat(l);
m = parseFloat(m);
var k=l*0.0174532925199433;
var p=0.0818191913305*Math.sin(k);
var o=11616778.382033*Math.pow(Math.tan(0.785398163397448-(k/2))/Math.pow((1-p)/(1+p),0.04090959566525),0.90633380084752);
var q=(m+19)*0.0158185089469038;
return {
x:Math.round((500000+o*Math.sin(q))*1000)/1000,
y:Math.round((3482044.27322585-o*Math.cos(q))*1000)/1000

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@kristjanmik
kristjanmik / ti.android.events.js
Last active July 25, 2016 14:58
A proper way to handle pause and resume event in titanium for android
var win = Ti.UI.createWindow({});
win.addEventListener("open", function(e) {
win.activity.addEventListener("resume", function() {
Ti.App.fireEvent('resume')
});
//Notice the pause event
win.activity.addEventListener("pause", function() {
Ti.App.fireEvent('paused')
});
#!/bin/bash
echo "Starting the install process"
sleep 2
sudo apt-get update
echo "Installing Apache2"
sleep 2
sudo apt-get install -y apache2
@kristjanmik
kristjanmik / gist:6563816
Created September 14, 2013 17:20
Restart titanium build on file change
var chokidar = require('chokidar'),
spawn = require('child_process').spawn,
utils = require('util');
var watcher = chokidar.watch('./', {ignored: /^build/, persistent: true});
var lastUpdate = new Date().getTime();
function update(path){
if(typeof path === 'object' || path.indexOf('Resources') !== -1 || path.indexOf('build') !== -1 || path.indexOf('monitor.js') !== -1){
return;
@kristjanmik
kristjanmik / nodeserver
Last active December 22, 2015 21:49
On demand node.js server install script
#!/bin/bash
###Node.js ###
sudo apt-get update
sudo apt-get install -y python-software-properties
sudo apt-get install -y python
sudo apt-get install -y g++
sudo apt-get install -y make
sudo apt-get install -y software-properties-common
sudo add-apt-repository --yes ppa:chris-lea/node.js
var cluster = require('cluster');
if (cluster.isWorker) {
console.log('Worker ' + process.pid + ' has started.');
// Send message to master process.
process.send({msgFromWorker: 'This is from worker ' + process.pid + '.'})
// Receive messages from the master process.
@kristjanmik
kristjanmik / gist:5130899
Created March 10, 2013 23:02
Instagram code on nfvi.is
(function($){
$.fn.instagram = function(options) {
var that = this,
apiEndpoint = "https://api.instagram.com/v1",
settings = {
hash: null
, userId: null
, locationId: null
, search: null
, accessToken: null
function formWarning(text,tab){
if(tab == 'location' && !mapTabLoaded){
loadMap();
mapTabLoaded = true;
}
var warning = '<div class="alert">'+
'<button type="button" class="close" data-dismiss="alert">&times;</button>'+
'<strong>ATH!</strong> '+text+
'</div>';
$('.submit-warning').html(warning);
@kristjanmik
kristjanmik / nodejitsu error
Created December 8, 2012 13:07
nodejitsu error
➜ apis git:(master) ✗ jitsu deploy
info: Welcome to Nodejitsu ylgur
info: jitsu v0.10.3-1, node v0.8.1
info: It worked if it ends with Nodejitsu ok
info: Executing command deploy
info: Analyzing application dependencies in server.js
info: Creating snapshot 0.0.0-44
info Uploading: [============================ ] 97%
error: Error running command deploy
error: Nodejitsu Error (500): Internal Server Error