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
#!/bin/bash | |
# ref : https://gist.github.com/vsivsi/589397df1b25c450127313201d8d3c40 | |
# | |
NAME=Pulsar | |
sudo scutil --set HostName ${NAME} | |
sudo scutil --set ComputerName ${NAME} | |
sudo scutil --set LocalHostName ${NAME} | |
echo "$(id -un)" |
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
{ | |
"name": "OF", | |
"version": "0.3.2", | |
"variables" : { | |
"path" : ".", | |
"addons" : "ofxMicroUI,ofxTools", //ofxPoco ofxAssimpModelLoader | |
"ofPath" : "/Volumes/tool/ofw" | |
}, | |
"externalDependencies": { | |
"OFLib" : { |
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
{ | |
"name": "OFLib", | |
"version": "0.2.0", | |
"abstracts:*": { | |
"language": "C++", | |
"language[toolchain:apple-llvm]": "Objective-C++", | |
"settings:Cxx": { | |
"cppStandard": "c++17", | |
"warningsPreset": "minimal", | |
"runtimeTypeInformation": true, |
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
01015 | Execução, por administração, empreitada ou subempreitada, de obra hidráulica e semelhantes. | |
---|---|---|
01023 | Execução de obras de constr. civil, elétrica ou semelhantes, e respec. serv. aux. ou complement. | |
01031 | Demolição. | |
01058 | Reparação, conservação e reforma de edifícios, estradas, pontes, portos e congêneres. | |
01090 | Escoramento, contenção de encostas e serviços congêneres. | |
01104 | Carpintaria e serralheria. | |
01210 | Paisagismo. | |
01228 | Colocação de tapetes, cortinas, revestimentos, vidros, divisórias, placas de gesso e congêneres. | |
01236 | Recuperação, raspagem, polimento e lustração de pisos e congêneres. | |
01244 | Calafetação. |
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
{ | |
"name": "open-frameworks", | |
"version": "1.0.0", | |
"variables" : { | |
"name" : "3dRoom2023", | |
"path" : "apps/WerkApps/3dRoom2023", | |
"addons" : "ofxMicroUI,ofxTools,ofxSyphon,ofxNetwork,ofxAssimpModelLoader" | |
}, | |
"abstracts:*": { | |
"language": "C++", |
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
{ | |
"name": "open-frameworks", | |
"version": "1.0.0", | |
"abstracts:*": { | |
"language": "C++", | |
"language[toolchain:apple-llvm]": "Objective-C++", | |
"settings:Cxx": { | |
"cppStandard": "c++17", | |
"warningsPreset": "minimal", | |
"runtimeTypeInformation": true, |
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
# Stolen from here: http://stackoverflow.com/a/20703594/850326 | |
#!/bin/sh | |
export POSIXLY_CORRECT=1 | |
if [ -z "${1}" -o -z "${2}" ] | |
then | |
echo "Usage: ${0} <name> <original-png-location>" | |
fi | |
name=$1 |
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
// #define USEFASTLED 1 | |
#define NUM_LEDS 124 | |
#ifdef USEFASTLED | |
#define FASTLED_INTERRUPT_RETRY_COUNT 0 | |
#define FASTLED_ALLOW_INTERRUPTS 0 | |
#define INTERRUPT_THRESHOLD 1 | |
#include "FastLED.h" | |
#else | |
#include <Adafruit_NeoPixel.h> |
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
#!/bin/bash | |
set -o errexit | |
set -o pipefail | |
set -o nounset | |
setup_opencv() | |
{ | |
printf "*********************************\n${FUNCNAME[0]}\n" | |
local readonly PARENT_FOLDER=${1:-third_party} |
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 "ofMain.h" | |
string pgPath = "../../../apps/projectGenerator/commandLine/bin/projectGenerator"; | |
string command = ""; | |
class ofApp : public ofBaseApp{ | |
public: | |
void setup() { | |
ofSetWindowPosition(60, 60); |
NewerOlder