Difference between revisions of "Main Page"

From ProgrammingExamples
Jump to: navigation, search
m
 
(28 intermediate revisions by 6 users not shown)
Line 2: Line 2:
 
This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages. Please feel free to modify the existing examples, and add new examples!
 
This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages. Please feel free to modify the existing examples, and add new examples!
  
=="Do"s and "Don't"s==
+
Please read [[Help:Editing|Editing Wiki Pages]] and [[Help:DosAndDonts|Do's and Don'ts]] before getting started.
 
+
=== "Do"s ===
+
* Create a 'dispatch page' for each new language that you add, put links to examples in that language on that page.
+
* Try to keep each example as short as possible.
+
* Try to demonstrate a single concept per example.
+
* Comment, comment, comment!
+
 
+
=== "Don't"s ===
+
* Do not treat the wiki as your own personal code dump. Things that are placed here should be useful for many people.
+
  
 
== Coding Standards ==
 
== Coding Standards ==
 
We don't want to get too carried away here, but below are some guidelines.
 
We don't want to get too carried away here, but below are some guidelines.
  
* Try to use a sensible indentation scheme.
+
* Use a sensible and internally consistent indentation scheme
* Use descriptive, fully spelled variable names (in English please).
+
* Use "best coding practices" for your language
 +
* Use descriptive, fully spelled variable names (in English please)
 
** Good: dispatchTable, dispatch_table
 
** Good: dispatchTable, dispatch_table
 
** Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
 
** Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
* Comment, comment, comment!
+
* Comment (only) to clarify your code or your intention.
  
== [[CPP|C++]] ==
+
== Languages ==
 +
* [[CPP|C++]]
 +
* [[Java]]
 +
* [[Python]]
 +
* [[Perl]]
 +
* [[Bash]]
 +
* [[Matlab]]
 +
 
 +
== Libraries ==
 +
* [[Boost]]
 +
* [[Eigen]]
 +
* [[OpenMP]]
  
 
== GUI Systems ==
 
== GUI Systems ==
====Qt====
+
* [[Qt]]
 
+
* [[wxWidgets]]
==== wxWidgets ====
+
 
+
A C++ based toolkit that is primarily used to create nice graphics and GUIs. From their [http://www.wxwidgets.org/ Home Page]:
+
<blockquote style="background-color: lightgrey; border: solid thin grey; padding:5px;">
+
wxWidgets is a C++ library that lets developers create applications for Windows, OS X, Linux and UNIX on 32-bit
+
and 64-bit architectures as well as several mobile platforms including Windows Mobile, iPhone SDK and embedded GTK+.It has popular language bindings for Python, Perl, Ruby  and many other languages. Unlike other cross-platform toolkits, wxWidgets gives its applications a truly native look and feel because it uses the platform's native API rather than emulating the GUI. It's also extensive, free, open-source and mature. Why not give it a try?
+
</blockquote>
+
 
+
One thing that this summary didn't mention is that there are more than GUI classes. There are classes that help with networking as well as many other whistles and bells. If you feel you need help there is a [http://forums.wxwidgets.org/ forum]. You can also buy the book at [http://www.amazon.com/gp/product/0131473816 Amazon] or [http://www.amazon.co.uk/gp/product/0131473816 Amazon.uk]. For more documentation, examples, tutorials, visit [http://wiki.wxwidgets.org/Main_Page Wiki Page]
+
 
+
If you have any questions, you can direct them to [http://forum.wxwidgets.org wxForum].
+
 
+
Stefano<br />
+
 
+
--[[User:Evstevemd|Evstevemd]] 16:47, 25 June 2010 (UTC)
+
 
+
== [[Java]] ==
+
  
== [[Python]] ==
+
== Visualization/Graphics/Images ==
 +
* [http://www.vtk.org/Wiki/VTK/Examples/Cxx VTK]
 +
* [http://www.itk.org/Wiki/ITK/Examples ITK]
 +
* [[OpenGL]]
  
== [[Perl]] ==
+
== Computer Vision ==
 +
* [[OpenCV]]
 +
* [[PCL]]

Latest revision as of 21:20, 21 November 2016

Welcome to ProgrammingExamples.net!

This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages. Please feel free to modify the existing examples, and add new examples!

Please read Editing Wiki Pages and Do's and Don'ts before getting started.

Coding Standards

We don't want to get too carried away here, but below are some guidelines.

  • Use a sensible and internally consistent indentation scheme
  • Use "best coding practices" for your language
  • Use descriptive, fully spelled variable names (in English please)
    • Good: dispatchTable, dispatch_table
    • Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
  • Comment (only) to clarify your code or your intention.

Languages

Libraries

GUI Systems

Visualization/Graphics/Images

Computer Vision