This file contains hidden or 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
using UnityEngine; | |
using System.Collections.Generic; // Added for the dictionary | |
public class HeightmapGeneratorCullBlack : MonoBehaviour | |
{ | |
public Texture2D heightMap; | |
public Material material; | |
public Vector3 size = new Vector3(200, 30, 200); | |
void Start() |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
nvm install 14
nvm use 14
This file contains hidden or 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
<?php | |
class SDXLNumerologyElement { | |
public $ratio; | |
public $width; | |
public $height; | |
} | |
class SDXLResizer { | |
public static $theNumerologyElements = array( |
This file contains hidden or 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
Kyle K. | |
Kei H. | |
kahron s. | |
Alan H. | |
Ashita A. | |
Shahir A. | |
Moin B. | |
Mustafa T. | |
arib k. | |
Omar K. |
This file contains hidden or 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
(Old 2016 profile:) I build award-winning AR + AI apps and software platforms - solo. Here are some "startups" that I built: | |
faced.io FaceShop and FaceMaskDesigner https://www.youtube.com/watch?v=-0DaehzzNLg | |
ArtformAR https://www.youtube.com/watch?v=zklZxlarVjY | |
SnapShop https://www.youtube.com/watch?v=JvaVsuH6vj4 | |
SnapGlass.es https://www.youtube.com/watch?v=HAvNJs7sf7A | |
HoloYummy https://www.youtube.com/watch?v=VbLkQg1_EB4 | |
PlatoAR https://www.youtube.com/watch?v=V2I1gFwG-kM |
This file contains hidden or 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
get rid of system brew - install 2.7.7 using rvm | |
https://www.engineyard.com/blog/how-to-install-ruby-on-a-mac-with-chruby-rbenv-or-rvm/ |
This file contains hidden or 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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class CameraShotToPlane : MonoBehaviour | |
{ | |
public bool debugMode = true; | |
public GameObject goDebugPoint; | |
public Camera cameraToRaycastFrom; |
This file contains hidden or 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
using AOT; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
using UnityEngine; | |
namespace DlibFaceLandmarkDetector.UnityUtils | |
{ |
This file contains hidden or 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
<?php ini_set('memory_limit','512M');set_time_limit(0); | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); | |
require_once( 'vendor/autoload.php' ); | |
// couldn't JsonMachines to work for poly_dump json (250M, with verbose objects) | |
//use \JsonMachine\JsonMachine; | |
//$string = file_get_contents("test.json"); |