Using Paint.net and the Seismograph effect from EdHarvey’s Effects. Hits: 772
Category Archives: fun
Coding Run
Posted by Pour Raphael Date: 2018-06-20
This is: CODING RUN!!! Test out an idea in a small amount of time to distract yourself from your business. While learning some Math I thought about the difficulty of an easy glm-alike Vector Datatrype in C. 20 minutes later I got this: #include <stdlib.h> #include <stdio.h> #include <math.h> typedef struct{ union{ double x; double […]
- Comments are off for this post
Realtime-Systems and RMS in a nutshell…
Posted by Pour Raphael Date: 2017-11-14
Hits: 364
- Comments are off for this post
Prolog for Cloud-Rapper
Posted by Pour Raphael Date: 2017-07-06
While doing some Prolog excercises where I had to develope a kind of language parser, I thought of implementing a “Cloud-Rapper”-Parser which analyses a MoneyBoy-ish Sentence. % % Autor: Raphael Pour % Datum: 06.07.2017 % usage: satz(Satz,Rest,Subject,Object,Verb). % example: satz([1,gurl,spotted,1,boi],[],S,O,V). % satz(In, Rest, S,O,V) :- nominalP(In,S, R), verbalP(R,V,O,Rest). nominalP(In,N, Rest) :- artikel(In,R), nomen(R,N,Rest). verbalP(In,V,N,Rest) :- […]
- Comments are off for this post
WebDev every time
Posted by Pour Raphael Date: 2017-05-26
How it should be vs. how it actually is Hits: 354
- Comments are off for this post