Skip to content

Instantly share code, notes, and snippets.

@modohash
modohash / index.html
Created August 16, 2015 20:15
Angular ES6 - index.html (part 1)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>AngularJS with Modern Tools</title>
</head>
<body>
<h1>Lets bring AngularJS 1.x up to speed!</h1>
</body>
</html>
QJsonObject json;
json[“description”] = “some description”;
json[“age”] = 26;
@modohash
modohash / simple_ocl.cpp
Created June 12, 2013 13:42
The simplest OpenCL program ever!
#include <CL/cl.h>
int main(int argc, char **argv){
cl_platform_id test;
cl_uint num;
cl_uint ok = 1;
clGetPlatformIDs(ok, &test, &num);
return 0;
}