This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@theme "lb" | |
configuration { | |
font: "mono 14"; | |
modi: "window,run,ssh,drun"; | |
kb-mode-next: "Shift+Right,Tab"; | |
kb-mode-previous: "Shift+Left,ISO_Left_Tab"; | |
kb-element-next: "Control+Tab"; | |
kb-element-prev: "Control+ISO_Left_Tab"; | |
kb-row-up: "Up,Control+p"; | |
kb-row-tab: ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
import bmesh | |
import csv | |
import ntpath | |
from mathutils import Vector | |
from bpy_extras.object_utils import object_data_add | |
path = '/home/ortes/GISTRE/GPGPU/icp-gpgpu/cmake-build-release/' | |
#path = '/home/ortes/GISTRE/GPGPU/icp-gpgpu/data_students/' | |
def instantiate(filename): | |
file = open(path + filename) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
// initialize the tape with 30,000 zeroes | |
unsigned char tape[30000] = {0}; | |
// set the pointer to point at the left-most cell of the tape | |
unsigned char* ptr = tape; |