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
// ==UserScript== | |
// @name vimkeybindings | |
// @namespace renevier.fdn.fr | |
// @author arno <[email protected]> | |
// @licence GPL/LGPL/MPL | |
// @description use vim keybingings (i, j, k, l, …) to navigate a web page. | |
// ==/UserScript== | |
/* | |
* If you're a vim addict, and you always find yourself typing j or k in a web | |
* page, then wondering why it just does not go up and down like any good |
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
$.getJSON("<url>?callback=?",function(data){ | |
svg.selectAll(".names") | |
.data(data.entries.filter(function(d){ if(d.type == "SONG") return d;})) | |
.enter().append("foreignObject") | |
.attr("x",function(d){ return x(d.timestamp);}) | |
.attr("y", height) | |
.attr("width",300) | |
.attr("height",margin.between) | |
.append("xhtml:div") | |
.attr("class","songLabels") |
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
<% if [email protected]? %> | |
$('#cityfield').html(""); | |
$('#cityfield').html("<%=j collection_select(:resource,:CITY_ID,Country.find(1).cities,:id,:NAME, {:prompt =>'Select a city'})%>"); | |
<%else%> | |
$('#cityfield').html(""); | |
$('#cityfield').html("<%=j text_field :CITY_ID, :disabled%>"); | |
<%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
-- just the city resource | |
SELECT DISTINCT ?citylabel ?countrylabel ?pop | |
WHERE { | |
?city rdf:type dbpedia-owl:City. | |
?city rdfs:label ?citylabel. | |
?city dbpedia-owl:country ?country. | |
?country rdfs:label ?countrylabel. | |
?city dbpedia-owl:populationTotal ?pop . | |
FILTER ( lang(?countrylabel) = 'en' and lang(?citylabel) = 'en' and ?pop>10000) |
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
$('select').on('change', function(e){ | |
var index =$(':selected').first().index(); | |
var second = $('select')[1]; | |
var option = second.options[index]; | |
option.selected = true; | |
}) |
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
//This will return objects corresponding to each segment that the route consists of. | |
App.Router.router.recognizer.recognize('/some_path') | |
//to see all the routes in your application – including nested routes. | |
App.Router.router.recognizer.names |