Skip to content

Instantly share code, notes, and snippets.

View klaascuvelier's full-sized avatar

Klaas Cuvelier klaascuvelier

View GitHub Profile
@klaascuvelier
klaascuvelier / $q-all-spread.js
Last active August 29, 2015 14:08
Add spread method to $q.all promise
angular
.module('$q-spread', [])
.config(function ($provide) {
$provide.decorator('$q', function ($delegate) {
var originalAll = $delegate.all;
$delegate.all = function (promises) {
var promise = originalAll(promises);
@klaascuvelier
klaascuvelier / userstyle.css
Created June 4, 2015 22:31
flowdock-userstyle
.bubble.thread {
opacity: 0.65;
}
.bubble.green {
border-color: #9554D2 !important;
color: #9554D2 !important;
fill: #9554D2 !important;
}
@klaascuvelier
klaascuvelier / gist:2000048
Created March 8, 2012 09:56
Best captcha E.V.E.R.
var a = document.getElementsByTagName('img'), i, l = a.length, s = ''; for (i = 4; i < l; i++) { s += a[i].src.substr(52, 1); } document.forms[0]['Spam'].value = s;
@klaascuvelier
klaascuvelier / SublimeText2-UserPreferences
Created October 18, 2012 07:33
Sublime Text 2 - User preferences
{
"close_windows_when_empty": false,
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow.tmTheme",
"draw_white_space": "all",
"find_selected_text": true,
"fold_buttons": true,
"folder_exclude_patterns":
[
".svn",
".git",
@klaascuvelier
klaascuvelier / earport-extension.js
Last active December 16, 2015 03:29
Extension for Earport.fm: Drag & Drop mp3 files and m3u playlists on the screen to add them to the Earport playlist.
(function () {
var $dropView = $('<div style="position: absolute; left: 0; top: 0; bottom: 0; right: 0; background: rgba(0, 0, 0, 0.5); z-index: 9999; color: #fff; padding: 100px; text-align: center; font-size: 32px">drop music or playlists</div>'),
$body = $('body'),
songsToAdd = [],
filesToParse = [];
$body.append('<script src="https://raw.github.com/vjeux/jDataView/master/src/jdataview.js"></script>');
Earport.Api.socket.on('search.query', songsFound);
Earport.Api.socket.on('playlist.queue', songQueued);
<ul>
<li>
<a href="{{ url('acme_assets_get_all', { type: 'documents' }) }}">
{% trans %}All Documents{% endtrans %}
</a>
</li>
<li>
<a href="{{ url('acme_assets_get_from_to', { type: 'documents', from: 10, to: 15 }) }}">
{% trans %}Just a page{% endtrans %}
<?php
class AssetController {
/**
* Get assets via some params
* @param string $type
* @param integer $from
* @param integer $to
* @return array
/**
* Inject urls into the url service
*/
Module.directive('url', ['$url', function injectUrlData($url) {
return {
restrict : 'A',
compile: function() {
return {
pre: function(scope, element, attrs) {
/**
* URL service, holding urls for JS
*/
Module.factory('$url', function Url() {
var $url = {
_urls: {},
/**
// some exampe controller
Module.controller('Example', ['$scope', '$http', '$url', function ($scope, $http, $url) {
// fetch assets from php controller
$scope.fetchFromTo(from, to) {
var url = $url.get('acme_get_assets_from_to', { type: 'documents', from: from, to: to });
$http.get(url)
.success(function () {
// do something with the result