Posts

Showing posts with the label C#

200+ Programming Resources

Image
200+ Programming Resources This is an Open Source project created by my friend KrOW started on Sololearn and continuing to grow on Github . This program contains over 200 links and Resources to help Programmers at every level find helpful information. *Featured Code Created by KrOW I love how KrOW added a link to see this code running in this  Github  repo reading the code is awesome in many aspects but it helps me so much to see a code running to fully grasp it's potential. If you have links you would like to see added feel free to leave them in comments here and I will forward them to KrOW or suggest/add them via  Sololearn  or  Github . Thanks and Happy Coding!                

Top Ten Best Apps to Learn Programming

Image
The Top 10 Best Apps to Learn Programming Languages #10  Encode Encode offers bite-sized courses with code examples and challenges to get you coding. This is a good app for beginners who wish to learn the fundamentals. #9   Udemy Udemy is an online marketplace with over 80,000 courses available. Most of these are not free but if you search around you can find lots of great deals on them. #8  w3schools W3Schools is a great resource for online or offline Learning. It's easy to understand format is an asset to Beginners as well as Experienced Programmers. #7  Udacity Udacity offers a School of Programming as well as Schools for AI, Data Science, Nano Degrees and much more. #6  mimo Mimo is a fun app to learn not only Programming but Game Building, App Development, Ethical Hacking, and more. #5  Coursera Coursera offers many great cour...

Bubble Sort C#

Image
Bubble Sort using C# A Bubble Sort is an algorithm used to sort thru a list by comparison of data adjacent to itself then sorting if necessary. This process continues untill the entire list is sorted. *Featured Code Created By:  Shane Overby C# /*     Original by me, Shane Overby          This is my own implementation of the Bubble Sort algorithm          You can download this code for LINQPad, here: http://share.linqpad.net/c5rmaq.linq          Input: None          Output: 1.) an unsorted list of random numbers             2.) an unsorted control list             3.) the same list of random numbers, sorted             4.) control list, sorted using <List>.Sort()          Instructions:    ...

8 Codes to Find Versions

Image
The following is a collection of Codes used to Determine the Language or Compiler Version being used.    *The following Featured Codes were Created by  John Wells PHP Version <?php echo "PHP Version ".phpversion()."<br>"; ?> Click here to run this code Java Version public class Program {   public static void main(String[] args) {     System.out.format("Java Version = '%s'",         System.getProperty("java.version"));   } } Click here to see this code run Swift Version #if swift(>=4.2)  print("Running Swift 4.2 or later") #else #if swift(>=4.1)  print("Running Swift 4.1") #else #if swift(>=4.0)  print("Running Swift 4.0") #else  print("Running Swift earlier than 4.0") #endif #endif #endif Click here to run this code Ruby Version print "ruby #{ RUBY_VERSION }p#{ RUBY_...

Hello World in 10 Programming Languages

Image
Java Hello World public class Hello {       public static void main(String[] args){           System.out.println("Hello World!");} } Click here to see this code run HTML5 Hello World <!DOCTYPE html> <html>     <head>         <title>Page Title</title>     </head>     <body>         <h1>Hello World</h1>     </body> </html> Click here to run this code Python Hello World print("Hello World") Click here to see this code run C Hello World #include <stdio.h> int main() { printf("Hello World");      return 0;} Click here to see this code run C++ Hello World #include <iostream> using namespace std; int main() { cout << "Hello W...