Skip to content

Instantly share code, notes, and snippets.

View designstorming's full-sized avatar
🇷🇸

Milan designstorming

🇷🇸
  • Belgrade, Serbia
View GitHub Profile
@designstorming
designstorming / ogl.d.ts
Last active February 6, 2021 17:40
Typescript definition for ogl.js (https://github.com/oframe/ogl)
/** Declaration file generated by dts-gen */
export class Animation {
constructor(...args: any[]);
update(...args: any[]): void;
}
export interface Position {
@designstorming
designstorming / str2hex.js
Created February 21, 2019 15:27
Convert string to hex array
/**
* This will convert string to hex array
*
* Steps:
* 1. Split string into letter array
* 2. Iterate over every item
* 3. Convert item to decimal code
* 4. Convert result to hex string
* 5. Lastly, parse integer to hex
*/