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
| /* | |
| Implementation of angular mover | |
| */ | |
| class Mover2 | |
| { | |
| // location | |
| PVector location; | |
| PVector velocity; | |
| PVector acceleration; | |
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
| // new script | |
| /** | |
| * This variable PGraphics will hold the | |
| * framebuffer into which you're only | |
| * going to ddraw rectangles. | |
| */ | |
| PGraphics frameBuffer; | |
| void setup(){ | |
| size(800,600); |
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
| //import org.twitshot.*; | |
| Mover mm; | |
| Attractor aa; | |
| void setup(){ | |
| size(1024, 768); | |
| //Twitshot.spawn(this); |
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
| Liquid liquid; | |
| Surface srf; | |
| int C_BALL_COUNT = 10; | |
| int C_LIQUID_WIDTH = 300; | |
| int C_LIQUID_HEIGHT = 50; | |
| Ball[] balls = new Ball[C_BALL_COUNT]; | |
| PVector forceDownward = new PVector(0.0, 0.03); // just going down |
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
| Stack<String> stack; | |
| void draw(){ | |
| background(0); | |
| text(stack.pop(), width/2, height/2 ); | |
| stack.push(mouseX + ", " + mouseY); | |
| } |
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
| public void saveBytesZZZ(String filename, byte[] data) { | |
| saveBytesZZZ(saveFile(filename), data); | |
| } | |
| /** | |
| * @nowebref | |
| * Saves bytes to a specific File location specified by the user. |
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
| void setup() { | |
| size(400, 400); | |
| colorMode(HSB, 255); | |
| background(0, 0, 0); | |
| noStroke(); | |
| } | |
| void draw() { | |
| float r=random(10, 100); | |
| fill(color(r, 255,255)); | |
| rect(r,r, r, r); |
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
| ubuntu@ubuntu-VirtualBox:~/spring-boot-actuator-attempt$ java -jar target/myproject-1.0.0-SNAPSHOT.jar | |
| . ____ _ __ _ _ | |
| /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ | |
| ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ | |
| \\/ ___)| |_)| | | | | || (_| | ) ) ) ) | |
| ' |____| .__|_| |_|_| |_\__, | / / / / | |
| =========|_|==============|___/=/_/_/_/ | |
| :: Spring Boot :: (v0.5.0.M7) |
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
| hardstatus alwayslastline "%H %-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<" |
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 | |
| /* | |
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
| * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |