Skip to content

Instantly share code, notes, and snippets.

@mprymek
mprymek / opencl-test.R
Last active July 18, 2019 14:59
OpenCL in R example
# OpenCL in R example
#
# Kernel "gpu.sum" sums two vectors.
#
# Please note that in R OpenCL library:
#
# 1. the first argument must be the output vector
# 2. the second argument must be the length of the output
# 3. you must convert the input vectors to the right type ("as.double" here)
#
defmodule TokenHolder do
require Logger
def start_link(user,passwd) do
Agent.start_link(fn ->
tok_time = get_token user, passwd
{user,passwd,tok_time}
end, name: __MODULE__)
end
# Pop item at index i from list. Returns (item,new_list)
def pop2(l,i):
l1 = l[0:i]
l2 = l[(i+1):]
return (l[i],l1+l2)
def solve(numbers,goal):
solutions = []
for i in range(len(numbers)):
(num,numbers2) = pop2(numbers,i)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mprymek
mprymek / main.go
Last active February 24, 2018 10:02
/*
Duck typing in golang example.
You can try it here: https://play.golang.org/p/kHRnpmA206r
*/
package main
@mprymek
mprymek / main.go
Last active February 25, 2018 11:23
/*
Basic Golang struct embedding example
Try it here: https://play.golang.org/p/HGfzu4m6AB8
*/
package main
/*
Golang's methods are not "virtual" or "overridable".
Don't expect OOP-like inheritance, use composition instead.
Try it here: https://play.golang.org/p/DujbnuHDZAW
*/
package main
/* Pleroma light theme customization */
#app {
background-image: none !important;
background-color: rgba(241, 241, 241, 1);
}
#heading {
background-image: none !important;
background-color: rgba(255, 255, 255, 1) !important;
@mprymek
mprymek / langosh-plain.c
Created February 4, 2019 00:03
First Langosh language proof of concept implementation
/*
Just a small weekend experiment...
First experimental implementation of the Langosh language ("plain", i.e. really minimal version).
Langosh is meant to be a language which:
- can be easily machine-generated from Scratch-like visual programming tools (Blockly preferably)
- interpreter is small enough to fit in a small MCU (ATMega328 preferably)
import asyncio
import asyncio.futures
import logging
import aiojobs
logging.basicConfig(format='[%(levelname)-7s] %(message)s', level=logging.DEBUG)
logger = logging.getLogger(__name__)
class Nursery: