Skip to content

Instantly share code, notes, and snippets.

View kamicane's full-sized avatar

Valerio Proietti kamicane

View GitHub Profile
using System;
using UVtools.Core;
using UVtools.Core.Extensions;
using UVtools.Core.Scripting;
namespace UVtools.ScriptSample;
public class LayerDuper : ScriptGlobals
{
readonly ScriptNumericalInput<ushort> NumClonesInput = new()
@kamicane
kamicane / psx-controller-xinput.ino
Last active May 23, 2019 02:37
[psx-controller-xinput] PSX controller adapter to XInput with Arduino pro micro #arduino
// https://bitbucket.org/kamicane/psxpad/src/master/
#include <PSXPad.h>
// https://github.com/dmadison/ArduinoXInput
#include <XInput.h>
const int ATT_PIN = 9;
PSXPad* pad;
void setup() {
@kamicane
kamicane / promicro-sega-joystick.ino
Last active May 23, 2019 02:38
[Sega Joystick to DirectInput] #arduino
#include <SegaController.h>
#include <Joystick.h>
#define USE_DEBUG 1
// Controller DB9 pins (looking face-on to the end of the plug):
//
// 5 4 3 2 1
// 9 8 7 6
import { Component } from 'react'
import { observe } from '@nx-js/observer-util'
export default class ObserverComponent extends Component {
componentWillMount () {
const render = this.render
const initialRender = (...args) => {
let result
@kamicane
kamicane / camelize.js
Last active May 23, 2019 02:28
[Clint 2] a command line parser
'use strict'
const CAMEL_REGEXP = /[-_]+([A-z])/g
module.exports = function camelize (string) {
return string.replace(CAMEL_REGEXP, (full, match) => match.toUpperCase())
}
@kamicane
kamicane / color-conversion-algorithms.js
Last active January 16, 2017 09:05 — forked from mjackson/color-conversion-algorithms.js
RGB, HSV, and HSL color conversion algorithms in JavaScript
/**
* Converts an RGB color value to HSL. Conversion formula
* adapted from http://en.wikipedia.org/wiki/HSL_color_space.
* Assumes r, g, and b are contained in the set [0, 255] and
* returns h, s, and l in the set [0, 1].
*
* @param Number r The red color value
* @param Number g The green color value
* @param Number b The blue color value
* @return Array The HSL representation
@kamicane
kamicane / README.md
Last active May 23, 2019 02:23
[async-sequence] a generator runner

a generator runner. yield promises. be async.

@kamicane
kamicane / .requirebin-equation-stuff
Last active January 12, 2017 09:50
requirebin sketch
an early version of equation-designer, demoed on requirebin
@kamicane
kamicane / index.js
Created May 14, 2015 13:24
requirebin sketch
var Scene = require('three.cjs/scenes/Scene').Scene;
var PerspectiveCamera = require('three.cjs/cameras/PerspectiveCamera').PerspectiveCamera;
var BoxGeometry = require('three.cjs/extras/geometries/BoxGeometry').BoxGeometry;
var MeshBasicMaterial = require('three.cjs/materials/MeshBasicMaterial').MeshBasicMaterial;
var Mesh = require('three.cjs/objects/Mesh').Mesh;
var WebGLRenderer = require('three.cjs/renderers/WebGLRenderer').WebGLRenderer;
var scene, camera, renderer;
var geometry, material, mesh;
"use strict";
var rgb = require("rgb");
var lerp = function(from, to, delta) {
return (to - from) * delta + from;
};
var convertToPct = function(c, i) {
if (i === 3) return c;