GPS Tracking

GPS Tracking. Now that is one pretty famous 2 words these days. Technology has evolved to the point where GPS tracking is now being used to locate your possessions. Or, just about anything and anyone. If you lost your phone or worse, your car? GPS tracking can locate it anywhere in the world. If you do not mind something bad may happen with your relationship to your girl, woman or family, you can use GPS tracking to locate them wherever they are. Though I think I would opt to have this used on just my possessions as using that to people would be a breach of privacy.

However, as I had said awhile ago, using this technology on your things, you can never say it is totally gone for good because as long as GPS is installed, say for example your car, it can always be found. Applying this to people, say for example you being the head of a company, you must know which boundary you are in to be able to use that on your employees, otherwise you will get sued.

Brickhouse Security provides you with a variety of GPS tracking devices on a multitude of applicable uses. The site looks professional and is very easy to nagivate, you will not have a hard time looking for the GPS tracking device that you need. Every item contains detailed specification of the device that includes visual aid like photos of the said devices. Purchasing is not a problem for customers because it uses well known security technologies to ensure safe and secure transactions online. Go get a GPS Tracking device and never worry where your things are in this world.

Like what you see? Buy me a cup of coffee. Or subscribe to my feeds.


(No Ratings Yet)
 Loading ...

Crazy Tanks For iTouch

A very neat game from the makers Bootant that created the BeeCells game, Crazy Tanks is another fun game to play. This arcade type game looks similar to a Mac OS game called Tank-O-Box. You use your iTouch and tilt your tank to move left, right, forward and/or backward. Tap the iTouch for your tank to shoot enemies. Tap faster to send ammo to the enemies quicker. If your tank is moving around too much, your firepower has a slight lag per tap. Playing this game from start to finish is quite hard not to die. Luckily, you get go back to the same level if you run out of lives.

Use powerups like speed, extra life, shield, larger ammo, upgrade firepower to aid you in defeating your enemies. For a price of almost a dollar, this game is pretty much worth having as one of your iTouch game collection.

Like what you see? Buy me a cup of coffee. Or subscribe to my feeds.


(1 votes, average: 3.00 out of 5)
 Loading ...

Sports Betting Professor

Sports betting is not a new one in the gambling industry. It has been around for quite a long time and has been famous to gamblers as they do with online casinos. You may think, hey, it is kind of hard to bet on a sports game because you would not know who may win (unless the team you are betting on is a hot team that will surely win almost every game). That is why sports betting is famous because it is not because of the unpredictability of the game but people who are into it actually know how the formula works.

The Sports Betting Professor can help you with just that. This system is proven! Yes, it is normal to be skeptical at first that is why we only believe when we will see results right? You can order a free copy of the video to acquaint yourself first regarding this betting system so that you would have an idea on how it works and how it can help you win your bets on NFL and NBA games. 15 years of analysis on the NFL and NBA games has given birth to this system which aids would be sports betters in winning their bets.

Like what you see? Buy me a cup of coffee. Or subscribe to my feeds.


(No Ratings Yet)
 Loading ...

JavaMail: Send Mail Using Gmail’s SMTP Server

Sometimes having our own SMTP server can cause problems especially the newbie ones. If our SMTP server is being detected by such spam security sites like Spamhaus as a probable spam server, emails that we send to recipients will eventually be blocked. We would have to register our server to these sites so that they would get unblocked. If you are too lazy to wait or want to avoid the hassle of this kind of dilemna, you can actually use GMail’s SMTP server.

The code below sends an email using JavaMail, Java’s mail technology API to send and receive emails. It also includes a Reply-To Email parameter in case you want your Reply-To email address to be different. The other parameter option is to specify if you want to email to be sent at text or HTML. Just input html as the value if you want to send the email as HTML.

public static boolean send(String replyTo, String from_email, String from_name, String to_email, String subject, String body, String type, String bcc_email) {
	boolean sent = false;
	try {
		Properties prop = new Properties();
		prop.put("mail.smtp.port", "25");
		prop.put("mail.smtp.socketFactory.fallback", "false");
		prop.put("mail.smtp.quitwait", "false");
		prop.put("mail.smtp.host", "smtp.gmail.com");
		prop.put("mail.smtp.auth", "true");
		prop.put("mail.smtp.starttls.enable", "true");
 
		Session session = Session.getDefaultInstance(prop);
 
		String username = (String) prop.get("gmail.username");
		String password = (String) prop.get("gmail.password");
 
		Message msg = new MimeMessage(session);
		msg.setSubject(subject);
 
		InternetAddress from = new InternetAddress(from_email, from_name);
		InternetAddress to = new InternetAddress(to_email);
		msg.addRecipient(Message.RecipientType.TO, to);
 
		// add bcc if not null
		if ((bcc != null) && (!bcc.equals("")))  msg.addRecipient(Message.RecipientType.BCC, new InternetAddress(bcc_email));
 
		msg.setFrom(from);
 
		// set reply to email address
		InternetAddress[] replyToAddress = new InternetAddress[1];
		replyToAddress[0] = new InternetAddress(replyTo);
		msg.setReplyTo(replyToAddress);
 
		Multipart multipart = new MimeMultipart("related");
 
		BodyPart htmlPart = new MimeBodyPart();
		if (type.equals("html")) htmlPart.setContent(body, "text/html");
		else htmlPart.setContent(body, "text/plain");
 
		multipart.addBodyPart(htmlPart);
		msg.setContent(multipart);
 
		Transport transport = session.getTransport("smtp");
		transport.connect(GMAIL_USERNAME, GMAIL_PASSWORD);
		transport.sendMessage(msg, msg.getAllRecipients());
		transport.close();
 
		sent = true;
		System.out.println("[MailTool] mail sent successfully ...");
 
	 } catch (Exception e) {
		 System.err.println("[MailTool] send() : " + e.getMessage());
		 e.printStackTrace();
	 }
 
	 return sent;
}

Note that connecting to GMail’s SMTP server requires you to authenticate first so you would have to use a GMail account before transactions push through.

Like what you see? Buy me a cup of coffee. Or subscribe to my feeds.


(2 votes, average: 4.00 out of 5)
 Loading ...