Coding
if-else Program in Java
if-else Program in Java The if-else program in Java controls which code snippet will execute. The if-else program is very basic and yet very important. Because it checks how well one can make a decision Read more…
if-else Program in Java The if-else program in Java controls which code snippet will execute. The if-else program is very basic and yet very important. Because it checks how well one can make a decision Read more…
Hey C# folks, I’m looking for some best practices on exception handling while maintaining some level of cleanliness – Say I have code somewhat like below…. RunSQLQuery is either going to throw a SqlException “Operation Read more…
Deque A deque referred as “Double-Ended Queue”, is a linear collection of data items same like queue data structure. deque has two ends, front end and rear end, deque is the unrestricted type of data Read more…
I’ve googled this and have gotten a wide variety of solutions, all extremely confusing to understand, and even copy and pasting the code doesn’t work, they’re also from multiple years ago and could probably be Read more…
A jQuery plugin to create a fixed top progress bar representing the current scroll & reading position of your article or the entire webpage. Demo Download source
no comments yet Be the first to share what you think! Members Online source
I initially liked object initializers because of the minimized amount of code it generates. However, I’ve noticed lately if you are initializing properties and one of them throws an exception, you don’t know which one Read more…
Python Graph: In Computer Science and Mathematics, a Graph is a pictorial representation of a group of objects or elements where some elements are connected using the links. A graph is the network of vertices Read more…
So I have a program that does more or less this: read list of element attributes from XML with structure like <tag dbfield="@column">data</tag> element names correspond to columns in SQL database generate data and add Read more…
This is the task I need to finish: Create a program that asks you to enter a password. If you enter an error, it must be reported and you can try again. The program only Read more…