Skip to content

Instantly share code, notes, and snippets.

{"reqId":"EJs2HnUkT0AxDBTcmxas","level":4,"time":"2020-09-24T08:35:43+00:00","remoteAddr":"193.77.153.115","user":"luka","app":"webdav","method":"MKCOL","url":"/remote.php/dav/calendars/luka/calendargooglecom","message":{"Exception":"Sabre\\VObject\\Recur\\NoInstancesException","Message":"This recurrence rule does not generate any valid instances","Code":0,"Trace":[{"file":"/var/www/cloud/apps/dav/lib/CalDAV/CalDavBackend.php","line":2242,"function":"__construct","class":"Sabre\\VObject\\Recur\\EventIterator","type":"->","args":[{"name":"VCALENDAR","parent":null,"__class__":"Sabre\\VObject\\Component\\VCalendar"},"cdi64cr5cos3ebb16sp3ab9k6so3cbb2c8pj4bb674r3io9mcoq32p1g6k@google.com"]},{"file":"/var/www/cloud/apps/dav/lib/CalDAV/CalDavBackend.php","line":1052,"function":"getDenormalizedData","class":"OCA\\DAV\\CalDAV\\CalDavBackend","type":"->","args":["BEGIN:VCALENDAR\r\nVERSION:2.0\r\nPRODID:-//Sabre//Sabre VObject 4.3.0//EN\r\nCALSCALE:GREGORIAN\r\nBEGIN:VTIMEZONE\r\nTZID:Europe/Belgrade\r\nX-LIC-LOCATION:

Keybase proof

I hereby claim:

  • I am novadeviator on github.
  • I am lukaprincic (https://keybase.io/lukaprincic) on keybase.
  • I have a public key ASBcD_Pdy-XkdayXrN34oLExHgzS87XP67GOYsjEu_LwEQo

To claim this, I am signing this object:

@novadeviator
novadeviator / strip.pde
Created August 4, 2015 17:08
processing sketch wobling the texture
// undecorate window (remove window borders etc) - - - - - - - - - - - - - - -
public void init() { frame.removeNotify(); frame.setUndecorated(true);
frame.addNotify(); super.init(); }
// declarations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PImage texture1;
float oscilator;
@novadeviator
novadeviator / videoencode subtitles
Created October 25, 2013 08:53
hardcoding subtitles and then creating versions for web
if [[ -z $2 ]]
then
echo "error. i need a video file to work on."
echo "use command [video file] [subtitles file (srt)]"
else
FILE=$1
SUBS=$2
@novadeviator
novadeviator / gist:6682492
Created September 24, 2013 09:36
non working code for iteration of loopers/recorders
/************************************************************************************************/
// init 10 buffers from 0-9
(0..9).collect({|n| Buffer.alloc(s, s.sampleRate * 10, 1, bufnum:n)});
( // buffer recorder Synth definition
SynthDef( "BufferRecorder", { | bufnum = 0 |
var input;
@novadeviator
novadeviator / gist:6682420
Created September 24, 2013 09:27
series of loop recorders and players. one is working, but how iterate to get 10 of them.
/************************************************************************************************/
// init 10 buffers from 0-9
(0..9).collect({|n| Buffer.alloc(s, s.sampleRate * 10, 1, bufnum:n)});
( // buffer recorder Synth definition
SynthDef( "BufferRecorder", { | bufnum = 0 |
var input;
@novadeviator
novadeviator / gist:6563549
Created September 14, 2013 16:48
supercollider error paste
localhost
Parsing settings for bee '2'
Parsing settings for proxy 'crowd'
Parsing settings for control 'buf3'
Parsing settings for control 'amp1'
Parsing settings for control 'buf1'
Parsing settings for control 'buf2'
Parsing settings for control 'amp3'
Parsing settings for control 'amp2'
Parsing settings for proxy 'stretch_tilt'
@novadeviator
novadeviator / gist:6335676
Created August 25, 2013 19:15
not sure why trigger does't work here (see Latch)
~grain_reveal = NodeDef {
arg buf, interval = 0.02, dur = 0.1,
threshold = 0.002, grow = 0.7, attack = 3, decay = 15,
in, trigger;
var energy, sound;
energy = (in - threshold).max(0) * grow;
energy = Decay2.kr(energy, attack, decay).min(1.0);