The Community Programming Thread

Started by Dr. Kraus, March 06, 2013, 05:40:22 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Dr. Kraus

So everyone was talking about in the topic less thread that a bunch of us wanted to get together and learn to code together!
Great idea, coding together with friends and people on different levels is fun and you can learn a lot from each other!
Sad thing is that I haven't seen or heard anything about anyone starting to work together on anything, only contact info from skype being pushed around the circle without any follow through.

So here we are, the Community Programming Thread! Share anything and everything programming related here (yes I know there is/was a thread before for that) but this is also to encourage everyone to actually get on skype/Line/whatever you use to communicate more than just in here.

Post your code/builds/ext. here and then just have everyone build off of it.

It would probably be a good idea to arrange some community "get-togethers" on skype or whatever and just work together on something of interest.

Anyway, have at it and I hope we can really get this all rolling!

Bella

Sorry that I haven't posted about this yet. Honestly, at this point my work in programming is about 3/4th reading and 1/4th actual coding (most of which is based off the code examples in the guides I'm reading), so I haven't had anything interesting to share. Yet.

Chocofreak13

i've been distracted by other things going on (aka preparing for BoozeFest2013), but i want to try too. ;v;
click to make it bigger

alfonso_rd_30

this action script was used to create a launcher on Multimedia Builder:


**Run("E:\p2kt\p2ktoolsvs_es_es\p2ktools3.exe","")
Run("<SrcDir>\P2KToolsVS_es_ES\P2KTools3.exe","")
**set parameters
param$='Cargando P2KTools3...|Cargando %d%%'
PluginSet("plugy","param$")
PluginRun("plugy","d_progress_set")
**display progress box
PluginRun("plugy","d_progress_box")
**start operation (set 0<pos<100 else hide progress )
For pos=0 To 101
  **set progress position
  PluginSet("plugy","pos")
  PluginRun("plugy","d_progress_upd")
  Pause("105")
Next pos
ExitTimer("200")

Dr. Kraus

Power
just the main bit of code, don't feel like typing out every last bit that is needed...


public void power(int num, int y){

      Scanner scan = new Scanner(System.in);
      num = scan.nextInt();
      y = scan.nextInt();

      if(y > 0){
     
           return math.pow(num^y)
      }

}




you do something like this, you can do it a couple of ways this is just one.