Hello! This weekend, I would like to finish off this week with a few words based on what has transpired so far. We might both agree to the fact that it has been quite terrifying and yet amazing how great people came together (and still do) in the name of peace and love.
This has been a sad week for sure. I will start by thanking the brave men and women in uniforms. They did all they could to bring the second terror suspect to justice and by so doing, they put their own lives at risk. To those who lost their lives or got injured during the bombing, I hope justice is truly served. May peace be with you.
Today, I created two videos as a continuation of my YouTube series (How To Build a Blog Using Google App Engine). This post will be short because you might need just a little over 5 minutes a piece to watch the two tutorials. Basically, the first video shows you how to store posts in the datastore while the second video shows you how to retrieve and display the same posts on a web page! Pretty fun stuff. Let us get to them, shall we?
Object oriented programming in java is very powerful and a clear understanding is important. While I was trying to dig deeper, I realized that there is more to it than I actually knew. So, I looked around the web and spent some time on StackOverflow! Now let us create a simple file here Base.java
[java]
public class Base{
public static void main(String[] args]){
//do some cool stuff here
}
}
[/java]
Hello there! I have been busy creating videos for both Google Maps APIs and most recently building a blog from scratch using Google App Engine – which is free and awesome. I am going to shorten the length of this post that way, I save you some time to watch some of the videos which are also available on YouTube.
How to build a blog using Google App Engine – Setup
This video shows you how to set up the environment on your computer and includes downloading and installing both Python27 and Google App Engine: Ejoy!
So you want to turn your home into some kind of ‘cool’ high-tech place where everyone wants to be right? I want to one day do that too!
Today I am going to share with you several ideas that could help you achieve your dream. Be warned: Some of the concepts listed here may require professional skills – so don’t burn your house down trying to go high-tech. While I try to describe what they are, you can always find more details online.
Programming brain teasers during job interviews is a common thing for software developers. This subject is too big to fit into a single post and there are books out there handling the same issues. I will only touch on two specific questions you might be asked by your interviewer.
I said upfront that these questions are brain teasers mainly for software developers. The list of questions is quite long but I want to highlight just two.
Hi! Thanks for stopping by. Today, I decided to migrate my blog from WordPress to a self-hosted domain : I was lucky enough to find www.simpledeveloper.com available and so I grabbed it and ran away!.
When I realized that I could do more outside WordPress, I decided to take the risk. I am still using WordPress as a blogging platform. What I changed is where my blog is hosted. One other important thing is that I don’t have to type .wordpress when visiting my site anymore! Now a few takeaways:
Hello! Nice to see you and thanks for stopping by. In the last two days I took a detour from programming but today I am going to pick up from where I left Google Maps APIs – Part V . Today’s post will be relatively shorter than previous ones because I am completing a section (at the end, I will give an app idea). Let us get to it. We should start with our previous finishing code:
[javascript]
(function () {
window.onload = function () {
var mapDiv = document.getElementById(‘map’);
var options = {
zoom: 3,
center: new google.maps.LatLng(37.09, -95.71),
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(mapDiv, options);
So you just graduated or even lost your job and you are looking for a new one. Everywhere you look, you see bad news. Everybody seems to be smarter than you, more experienced and yet willing to take less pay for the gig. You have spent so much money running around mailing your resume. It is a messy world you say.
Hello! I am back to show you how to add Google maps markers to your map. At the end of my fourth Google Maps APIs post, I mentioned in passing that I will be starting with Markers today and that is exactly where I will start. To make things fun, here is what a marker looks like – you have probably seen one if you have used a map before!
There you have it! So a marker is a small image that is positioned at a specific place on a map. Now we can figure out how to add it to our own map. We will start with a basic code for our map.