Programming
There are 23 posts filed in Programming (this is page 1 of 3).
Paper is dead, long live Paper Programming
Hill for the data scientist: an xkcd story
When you delete a block of code that you thought was useless….
Computational process
Sony’s New toio Wants to Inspire a Future Generation of Robotics Engineers | Spoon & Tamago
Competitive Programmer’s Handbook
wp-linked-data — WordPress Plugins
.
wp-linked-data
- Can I turn my WordPress site into Linked Data dataset?
Java main method
To run our program, the main method must be identical to this signature
public static void main(String[ ] args)
- Public : anyone can see it
- Statuc : method can be run without creating an instance of the class containing the main method
- Void : method doesn’t return any value
- Main : name of the method
- Main’s parameters are is an array of strings called args
Methods
A method is a collection of statements grouped together for an operation
Aka functions