Tuesday, August 13, 2013

What to do in the event of your account being hacked

Whether you're checking your email or browsing a social network site, and notice strange activity with your account, then it has most likely been hacked.

If this has happened to you, the easiest thing you can do is change your password and make it a lot stronger. It should contain a combination of at least 1 capital letter, number, and special character.

For example, Anime_ruleZ003 (a completely made up easy to remember password).

If your account is ever gets hacked again, make your password even stronger.

***Never share your password with anybody (even if you trust that person), if you do share it, change it within a timely manner***

Monday, August 12, 2013

Tips to a successful semester



It's that time of year again, when it's time for everyone to start school again. Every school year or semester is different, therefore you must do different things to survive if you begin to struggle.



Here is some advice based on my experience that may help you...

  • Take plenty of notes, if you are allowed to use a laptop in class use that (you'll remember more info that way). Chapter outlines from the textbook website can help you with note taking.
  • If you miss class, ask someone in your class or send a mass e-mail to  your class mates asking for a copy of their notes to study with, or you can post your notes to a web site (where ever you're hosting them) and share them with your class. Use this to start a study group.
  • If your school offers free tutoring, use it. Sometimes the tutors explain what you're having the problem with better than the instructors. You can also ask your instructors for help as well.
  • Go to class. Some classes don't take attendance and some students will take advantage of that, then pay for it when they accidentally miss a quiz or an exam.
  • If you are taking an online class, although you don't have to go to a physical class room, it's double the work. You will usually have deadlines and a semester cut-off date (no homework, projects or exams are excepted after this date). Don't wait until 1-2 weeks before the cut-off date to start doing your work. You should pace your self, for example, if you have to do work based on a 12 chapter book, spend 1-1.5 weeks focusing on one chapter at a time, that way you can meet all of your deadlines on time and will have completed all of your work before the cut-off date.
  • When book buy-back comes around, keep the books based on your major. For example, if you're majoring in computer science, you would keep all of your computer books as a references and get rid of the other books that you don't need. Believe me, I've had to go back and purchase books that I wish I didn't sell back. Don't let anyone borrow or steal your books.
  • Most importantly, pick a good time during the day/night to study. Study at least 30 min - 1 hr a day, and increase the time when preparing for an exam. Practice exams are good for studying as well.
  • If you're stressed out because you have a lot on your plate, or you're not doing so good in one of your courses, go ahead and withdraw from that course while it's still an automatic W (before it becomes an WP or WF). That way, you shouldn't have any problems with financial aid if you're getting it (based on your school); Be sure to talk to someone in your financial aid office about their policy on withdrawals.
As promised, some useful tips and advice. Although this guide is primarily aimed at college students, high school students can use these tips too.

Friday, August 9, 2013

The Future of Cell Phones Plans

It would seem that this is the future of cell phones.

Check this out below



See how far we have come in the past 20 years?

Tuesday, August 6, 2013

Video Games: Most Annoying Way to Die/Lose #2

Don't feel like you're by your self if this has happened to you. In some video games such as this one, where you are confident and a above-average gamer who collected special items throughout the game, this scenario proves to be embarrassing when you're trying to show off or become irritated when that was your last life and your game is over, knowing that it was because of something small/simple.

Even if you're annoyed or ready to throw the controller, just know that you have acquired great knowledge from your experience and will do even better the next time (or time after that), so pick up the controller and "Game-On". - Gamer Queen.


Most Annoying way to die #2 from animedragonfighter on Vimeo.

Has this or something similar happened to you?

Monday, August 5, 2013

CSS3 layout for HTML5

Here's a pretty neat CSS layout I worked on last week for one of my websites. The main content has a water marked paper image. The color theme is based on a dark blue.
This was done in HTML5, so there's a header, nav, section, aside and footer element. All of these elements have unique ids, and sits inside a div (id="big_wrapper"). So if you are just starting out in learning HTML5 or testing a page and want to attach some quick css3 code, this will be a big help.

*{
 
 list-style-type:none;
 margin:0px;
 padding:0px;
}

body{

 
 font-family: Arial;
 font-size:14px;
 color:#303030;
 background-image:url('images/background.jpg');
 background-attachment:fixed;
 
 
}

header, nav, section, aside, footer{
 display:block;
}



#wrapper{
 
 width:1000px;
 margin-left:150px;
 background:white;
 background-image:url('images/paper_background.jpg');
 background-attachment:fixed;
}



#top_nav a, #main_footer a{
 color:white;
 text-decoration:none;
}

#top_nav a:hover, #main_footer a:hover{

 text-decoration:underline;
 color:yellow;
}



a{
 text-decoration:none;
 color:#303030;
}

a:hover{
 border-bottom:1px #303030 dotted;
 font-weight:bold;
 
}

#main_header{
 background-color:black; 
 text-align:center;
}

#main_content{
 /*float:left; */
 width:560px;
 margin:10px;
 padding:10px;
 text-align:left;
 line-height:20px;
 background:white;
 border-radius:15px;
 box-shadow:5px 5px 5px #080808;
 float:left;
}

#main_aside{
 float:left;
 width:320px;
 margin:10px;
 padding:10px;
 background:white;
 border-radius:15px;
 box-shadow:5px 5px 5px #080808;
 
}

#bod_content{
 background:white;
 background-image:url('images/paper_background.jpg');
}

.news_content{
 text-align:left;
}

.h3_eye_catcher{
 color:green;
 text-align:center;
}


#top_nav{
 color:white;
 text-align:center;
 text-shadow:1px 1px 3px #080808;
 padding: 10px;
 font-weight:bold;
 margin-bottom:10px;
 box-shadow:0px 3px 10px #080808;
 font-size:16px;
 
 /* Beginning of Gradient */
 
 background-image: linear-gradient(bottom, #0B0142 48%, #2107B5 95%);
 background-image: -o-linear-gradient(bottom, #0B0142 48%, #2107B5 95%);
 background-image: -moz-linear-gradient(bottom, #0B0142 48%, #2107B5 95%);
 background-image: -webkit-linear-gradient(bottom, #0B0142 48%, #2107B5 95%);
 background-image: -ms-linear-gradient(bottom, #0B0142 48%, #2107B5 95%);
 
 background-image: -webkit-gradient(
  linear,
  left bottom,
  left top,
  color-stop(0.48, #0B0142),
  color-stop(0.95, #2107B5)
 );
 
 /* End of Gradient */
 
}

#main_footer{
 clear:both;
 background:#2107B5;
 box-shadow:0px 5px 10px #080808 inset;
 color:white;
 text-align:center;
 padding:10px;
}


   
Be sure to change the images and name your "id"s appropriately. You can play around with this code and change it to your liking.

Note: This code is not perfect, but it is a good starting point.