Loading...
Logo
Processing Forum
benj.n.sugar's Profile
4 Posts
239 Responses
0 Followers

Activity Trend

Last 30 days

Loading Chart...

Show:
Private Message
    Hey All,

    I've encountered two instances recently where people on the forums had problems with their PJS sketches due to the fact that their free web host would not serve pde or js files.  Each time, I haven't been able to point them in the direction of a good service.  So, I thought we could make a list as a thread so that people can know their options.  

    Does anyone know of free or inexpensive web hosting services?   By inexpensive I mean $6.00 US or less.  Web hosts in the range of $10.00 US are easy to find.  Preferably hosts that allow to have your own domain but sure, things such as Wordpress (the site not the software) and Tumblr, too.



    hey everyone.

    how do you use syntax highlighting in zoho forums?

    i've searched the Processing forum for "syntax highlighting" and googled "zoho forums syntax highlighting" but i'm coming up empty.

    (I'm looking to you GoToLoop ;) )

    hey all.

    i was creating a simple on/off switch as i often do when debugging, println-ing lots of stuff etc.  

    in processing, that looks like this, and it works as i'd expect it to:

    1. boolean onOff = true;
    2. int i = 0;

    3. void setup(){
    4. }

    5. void draw(){
    6.     println(i);
    7.     i++;
    8. }

    9. void keyPressed(){
    10.     if(onOff){
    11.         println("turning off");
    12.         noLoop();
    13.     } else if(!onOff) {
    14.         loop();
    15.         println("turning on");

    16.     }
    17.     onOff = !onOff;
    18. }

    The equivalent coffeeScript version in CS mode will not even run.  When I comment out loop(), it works just fine.  Can anyone confirm?

    1. onOff = true
    2. i = 0;

    3. setup: ->
    4.     size 200, 200
    5.     
    6. draw: ->
    7.     println i
    8.     i++
    9.         
    10. keyPressed: ->
    11.     if onOff
    12.         println "turning off"
    13.         noLoop()
    14.     if not onOff
    15.         println "turning on"
    16.         loop()
    17.     onOff = !onOff

    when you create a post there is a check box for notifications.  does anyone know if it's possible to receive email notifications for posts you are following?  i can't seem to find any setting for this.  i tried doing a bit of googling about zoho forums in general but the number of things with "zoho", "forums", "email" and "notifications" is pretty vast.