Hey, Rick, I need to start coming up with a good catchphrase ha let's see we're gonna do this don't just code with intent [Music] doesn't want to record this real quick here create. Cool things that's kind of like the idea that I have here for this video is that … [Read more...] about Build Cool Things
Java
How to setup a LAMP stack using ubuntu server
Why even bother with Linux? Whenever working on a client to server architecture it is always good practice ( in my opinion) to test and implement virtual environments of the actual production of the software project being deployed. In this blog post, I will be … [Read more...] about How to setup a LAMP stack using ubuntu server
How to setup MySQL with java using ubuntu in netbeans?
Assumptions Virtual Ubuntu box is reachable (IE. Network) MySQL setup is running correctly Root password is available! Let's get started | Download jdbc connector Go ahead and get the jdbc connector here or just run the following command Setup … [Read more...] about How to setup MySQL with java using ubuntu in netbeans?
What can go wrong with my program and how to handle it?
What are some of the problems that my program will encounter well there are some that will be at runtime an other that will be at the logic level. Here is some of the problem that might happen. IO Errors Environment Errors Logic Errors IO Errors: … [Read more...] about What can go wrong with my program and how to handle it?
Wrapper class that prints integral types (byte, short, int and long) in columns.
package Wrapper; public class wrapper { public static void main(String []args) { System.out.printf("%10s: %,-30d %,-30d%n ", "Byte ", Byte.MIN_VALUE, Byte.MAX_VALUE); System.out.printf("%10s: %,-30d %,-30d%n ", "Short ", … [Read more...] about Wrapper class that prints integral types (byte, short, int and long) in columns.
How to get started using UML?
Unified modeling Language is a standard that is used to model certain Object Oriented principles. In the short example i will display what Composition is and how its used. Lets get started with the main App Concert, this the main program where A type of Time is … [Read more...] about How to get started using UML?
Matterhorn log file, missing java files
craniumcafe@ubuntu:~$ sh /opt/matterhorn/felix/bin/start_matterhorn.sh Removing cached matterhorn bundles from /opt/matterhorn/felix/felix-cache Listening for transport dt_socket at address: 8000 Auto-properties install: … [Read more...] about Matterhorn log file, missing java files
Error Handling: Dealing with errors, How exactly is it done?
Before I get into what error handling is all about in an OOP (object oriented programming language), Let me first talk about what an actual error code is and how they show up on your code. Well your a perfect programmer you don’t need any “handling” of your … [Read more...] about Error Handling: Dealing with errors, How exactly is it done?
How to create special character literals in C?
How to create special charecter literals , Java, C, C++ and many other C style languages support the following special character literals. The one that stands out the most is the \dd d the ddd stands for the encoding for the octal bit encoding, again that's only if … [Read more...] about How to create special character literals in C?
What are your thoughts on the javadoc feature in java?
Common comments in java language help explain the details of the code. But in complete opposite the java language supports a special type of comment known as a doc comment that helps document the api of the code. You might be asking why is this a good a idea? I … [Read more...] about What are your thoughts on the javadoc feature in java?