Skip to content

Instantly share code, notes, and snippets.

View thomasfl's full-sized avatar
🏠
Working from home

Thomas Flemming thomasfl

🏠
Working from home
View GitHub Profile
This is a plain file.
require 'rubygems'
puts "Mongo bongo"
require 'rubygems'
require 'vortex_client'
vortex = Vortex::Connection.new("https://vortex-dav.uio.no/")
print "Title: "
title = gets
print "Introduction: "
introduction = gets
print "Body: "
require 'rubygems'
require 'vortex_client'
include Vortex
vortex = Vortex::Connection.new("https://vortex-dav.uio.no/")
vortex.cd('/brukere/thomasfl/events/')
event = HtmlEvent.new(:title => "My Sample Event 1",
:introduction => "Sample event introduction",
:body => "<p>Hello world</p>",
:startDate => "19.06.2010 17:56",
require 'rubygems'
require 'vortex_client'
include Vortex
vortex = Vortex::Connection.new("https://vortex-dav.uio.no/")
vortex.cd('/brukere/thomasfl/events/')
event = HtmlEvent.new(:title => "My Sample Event 1",
:introduction => "Sample event introduction",
:body => "<p>Hello world</p>",
:startDate => "19.06.2010 17:56",
require 'rubygems'
require 'vortex_client'
include Vortex
vortex = Vortex::Connection.new("https://vortex-dav.uio.no/", ENV['DAVUSER'], ENV['DAVPASS'])
vortex.cd('/brukere/thomasfl/events/')
collection = ArticleListingCollection.new(:url => 'my-collection', :title => 'My articles')
path = vortex.create(collection)
puts "Created folder: " + path
# -*- coding: utf-8 -*-
# Generer vortex sitemap. Eksempel:
#
# $generate_vortex_sitemap.rb http://www.iss.uio.no/
#
# Author: Thomas Flemming, thomas.flemming@usit.uio.no 2010
#
require "net/https"
require "uri"
We couldn’t find that file to show.
def Math.pow(x,y)
x**y
end
## Converts from utm to lat_lng. Default zone is the one in which
## Oslo and Akershus falls.
def utm_to_lat_lng(easting, northing, zone=32, northernHemisphere=true)
if not northernHemisphere then
northing = 10000000 - northing
end