C# 1 month in, What Next?

Soldato
Joined
9 Dec 2006
Posts
9,287
Location
@ManCave
So been programming in C# for 1 month on/off

Created a few applications so far

Shut-down Application:
for work
Checks the date/Time & asks the user if they are ready to shut-down, if not waits till next selected date.
was made for work to ensure pcs are rebooted each week.

AutoUSB
Scans your PC for Removable USB disks & once you have selected a file(s) will allow you to copy to every usb drive one at once. (tested with 32 usb drives) :)

QKTwitch
posted this on the forum, but allows you to save Twitch usernames & load there Stream on the desktop as well as their chat.

Request Annoyance
For work
checks MYSQL Database When a user is using a Server without a Request Reminds them Every 10 minutes to set-up a Request in the database.

Script IDE
for work
Script ide to allow us to code in house scripts faster & more efficient


what Next? any ideas they could be useful?

was thinking of making a text-based game, but would anyone play it. i doubt it. and I don't think ill have a chance making a 2d game.????
 
Associate
Joined
14 May 2010
Posts
1,136
Location
Somerset
How about trying to communicate with external APIs. E.g. write a program which gives you the distance between 2 postcodes by using the Google Maps API, or write a currency conversion/graphing program by using the API available from https://openexchangerates.org/, or try to get a list of items ending in the next 10 minutes off eBay.

Just a few ideas :)
 
Soldato
Joined
6 Jan 2005
Posts
3,633
Location
Cambridge
A program that downloads multiple RSS feeds and displays the results.

A program that encrypts a file for safe keeping, and decrypts it later when you want it.
 
Soldato
Joined
27 Oct 2006
Posts
6,972
Location
London
Request Annoyance
For work
checks MYSQL Database When a user is using a Server without a Request Reminds them Every 10 minutes to set-up a Request in the database.
[/QUOTE ]

Why? Sounds like a BOFH to do. Very annoying dude. At minimum make the alerts dependant on the MYSQL load or number of connections left

Try building a service that you can instruct via rpc make it both statefull and network stateless. Enable it to query services that are cross platform. Look at using JSON payloads almost to the level that it has it's own API

Extend popular open source projects don't look at reinventing the wheel
 
Back
Top Bottom