Start it up: Lloyd Banks featuring Swizz Beatz, Kanye West, Ryan Leslie & Fabolous [CDQ/Dirty]

Lloyd Banks - Hunger for more 2You’ve heard of him, seen him, played his songs and you’re still hungry for more. Awesome concept in his latest album “Hunger for More 2”. Lloyd Banks as you probably know is a member of the “G-Unit” owned by 50Cent, it just so happens that his new album almost has complete hits without even being released yet! Coming out on the 23rd of November as seen in a Youtube Video, This is just a spice of his album, this song title “Start it Up” featuring the finest rappers in the Music industry. yeah that’s right, you have Kanye, Fabs, and even Swiss beats making this Track to be a number 1 Hit for Lloyd Banks when it’s out. I love his rap style and attitude, he has vibe when spitting his lyrics and most of all he loves his Cars Flashy. Take a peak of what Lloyd Banks has to offer or “do you wanna start it up?”…
Hunger for More 2 - Lloyd Banks

Posted in Music | Tagged , , , , | 2 Comments

Hating on Justin Bieber

Justin Bieber - BabyThe thing about people and when they get famous, is that other people will hate on you, for music celebrity singer Justin Bieber, this is now a common thing for him, signed by Island Record offered by L.A Reid and discovered by Scooter Braun who presented Bieber to Usher in 2008, Bieber is a pop/R&B singer from canada who’s song most people love because of it’s content and clarity. His debut single “One Time”, was released in 2009 and charted top 30 in over ten countries. In 2010, he released his second album “My World 2.0” and has had similar success following his first album. The funny thing about Bieber and his success is that, people just keep hating on him for No reason, i like the kid, he got lots of talent in singing but i think probably it’s because of his age or something that people all over the internet post funny videos and pictures about him or comment that he’s dead probably to bring him down psychologically or something, either way i know it’s a common thing for some group of people to hate on a celebrity especially when they become famous so fast. But that shouldn’t stop you bieber, you’re talented and you should keep up the good work. Personal i like his music, am not so much of a fan of Pop but with him, i can make an exception. One of my favorite songs from bieber would be “Baby” i just love that song don’t ask why? Anyway People should just stop hating on one another doesn’t solve anything, it just causes more pain.

Posted in Music, News | Tagged , , , | Leave a comment

Lil Wayne : An Ideal Star

Lil WayneFor those of you who don’t know, Dwayne Michael Carter, Jr a.k.a Lil Wayne is an American rapper.who joined Cash Money Records at an early age of nine. Lil Wayne has debuted so many albums
but what most fans of his music we’re expecting in his latest album “I Am Not a Human Being” is still what makes him one of the most loved rapper in the music industry. Following his 8 months sentences lil wayne seems aspirant in his music business despite the fact that he was locked up for a while. I’m a personal fan of classical/modern hip-hop, and i love both albums he did this year “Rebirth and I Am Not a Human Being”, both has a kind of tune in it that makes it as though what he’s saying comes from a different side of Lil Wayne his fans hasn’t seen. Although tattoos seems to be as a drug for lil wayne but his styles and composition when performing on stage makes him an ideal rap star that we all like.

Posted in Music, News | Tagged , , , | Leave a comment

Understanding the Concept of Programming

Initial when i started programming, the first language i had to learn was HTML, i found it so difficult that i had to stop then try again. never-the-less i love graphical designs and web developmentUnderstand the Code so i didn’t give up. instead i just tried harder and it did work later on because i got the hang of it. the thing about programming is not what you can do now but how well do you understand what those lines of code can do for you. when programming it’s always necessary that you understand what a particular syntax does before you can know how it’s implemented. always remember as well that all programming languages used today both on the web and on local computers, have similar attributes, some functions are the same, so you can imagine constructing the same thing but in another language. take for instance, in php – to output statements, you use the word “echo or print” followed by a semi-colon after it; meanwhile in java-script to output statements, you use the word “document.write” followed by a semi-colon after it. these two different languages although different but after each declared statement they both have a semi-colon. this is just one of many similarities that programming languages have and if only you can take a while to understand just a few of them, there’s no limit to your knowledge.

Posted in Programming | Tagged , , , | Leave a comment

CSS Positioning

If you’re new to CSS/HTML you might wonder how elements that are not placed line by line can be located in somewhere totally different from how it’s coded. well this is because the programmer/designer might be using CSS positioning syntax. For you to position any element in an HTML document, you can use the position property value in your CSS code either by putting an external, inline or using the style tag in your HTML document.
E.g position: relative|static|absolute|fixed;
either any of the values can be incorporated like this to be used.


#movebox {
position: relative;
}
.shift {
position: absolute;
}

Using the relative value, the element can be positioned in the exact location according to how it was coded, and using the “top,bottom,left or right property” you can push the element into another further direction.


#movebox {
position: relative;
left: 25px;
bottom: 2px;
}
.shift {
position: absolute;
right: 50px;
top: -12px;
}

Now you have a basic understanding how CSS positioning works (To Learn more visit our CSS Tutorial on Positioning).
Using relative value, the element is position relative on the web page taking up space, using absolute value, the element does not take any space and hence can be placed in any location but if the browser is re-sized, the element is not, the “static” value does not work with the “left,top,right or bottom values” so if used, the element will be positioned according to how it’s coded, the “fixed” value will fix the element to that position where it’s placed even if the page is scrolled or re-sized. To work around this, you can use both relative and absolute in the same manner. take for example,an empty room, if sound is produced there, it can echo because there’s no object blocking the flow of sound wave but if that same room is filled with objects like wardrobes and tables, an echo can’t occur there anymore, this is because sound wave cannot travel as freely as when its empty. The same thing occurs with using a relative and an absolute position in two separate element in an HTML document, first of all you declare a relative position and keep it simple or at “zero pixel” when using either the “top,left,right or bottom property”. then create an absolute element inside the relative one, then you can move both using the “left,right,top or bottom property” and finally you’ll notice that with this, you can position any element absolutely anywhere but relative to that position that was absolute? A typical example would be this advert that’s placed on this website.


<div style="position:relative; top: 360px;
 left:220px; display: inline;  width: 400px; height: 70px;"> 
<div style="position: absolute; left: -10px;
 top: -720px; border: 1px solid black; display: block;">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" 
codebase="http://download.macromedia.com/
pub/shockwave
/cabs/flash/swflash.cab#version=10,0,0,0" 
width="400" height="70" id="phcityad" align="middle">
<param name="allowScriptAccess" 
value="sameDomain" />
<param name="allowFullScreen" 
value="false" />
<param name="movie" value="http://www.phcityonweb.com/wp-content/uploads/
2010/10/phcityad.swf" /><param name="quality" 
value="high" /><param name="bgcolor" value="#cccccc" />    <embed 
src="http://www.phcityonweb.com
/wp-content/uploads/2010/10/phcityad.swf" quality="high" bgcolor="#cccccc" 
width="400" height="70" name="phcityad" 
align="middle" allowScriptAccess="sameDomain" 
allowFullScreen="false" 
type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/
getflashplayer" /> </object></div></div>

As you can see, i placed two <div> box that contained my content.Then, the first div was positioned relatively and the second was positioned absolutely inside the first…with these, you can position any element on anywhere on your web page relatively but absolute to the position of the screen where you want it to display while using the directional property(left|right|bottom|top),without the fear of it moving along with the browser once it’s re-sized or the element taking up space in the containing place where it’s located in the code of your web document.

Posted in Programming, Tutorial | Tagged , , , , , | 1 Comment

Call of Duty: Black Ops

Released yesterday 9th November 2010 Call of Duty: Black Ops,Call of duty black Ops might be the number one Hit Game of the year. I have been playing COD since it’s second sequel on PC version and ever since then i have always had a thing for this First person shooter game. Yahoo Games “Nevertheless, Black Ops released this week amid much hype and fanfare, and the critical verdict on the new game is in. Much to the relief of fans — and, we’re guessing, Activision execs — it’s pretty clear the new game is just as spectacular as its predecessor”. Much more better is what most fans will be expecting from this new COD, inline with the release of Medal of Honor last month which i have played and if i may say also has stunning graphics and good game play, Call of Duty Black Ops will feature scene from 50 years ago during the Vietnam war and how the US took action in order to have an upper hand in the War. besides this, the multiplayer side also features Zombie kills and enables players to test their skills before going online. Modern warfare 2 has had an impact on the gaming community but will Black Ops also have that impact, this and many more are what fans are asking; i haven’t yet played the game but i expect it to be way lot better the COD: MW2.

Posted in Animation, Games, News | Tagged , , , , , | 2 Comments

I would be happy to sign Gavin Henson for Saracens, says Brendan Venter

Powered by Guardian.co.ukThis article titled “I would be happy to sign Gavin Henson for Saracens, says Brendan Venter” was written by Paul Rees, for theguardian.com on Tuesday 26th October 2010 00.02 UTC

Gavin Henson trained with Saracens yesterday, his first involvement in rugby since he was injured playing for Ospreys 18 months ago, with the Watford-based club’s coach, Brendan Venter, saying he would be happy to sign the 28-year-old Welshman.

Saracens are looking for a fly-half, with Derick Hougaard ruled out for up to six months with an achilles tendon injury, but there are two issues to resolve over Henson. The first is his contractual status with Ospreys and the second is when he will be available because of his commitments on the BBC’s Strictly Come Dancing.

Nonetheless Venter believes he would be a welcome addition to the side. “Gav had a fantastic session with us and was well received by the squad,” he said. “I would be happy to sign him. We wanted to meet him, show him our facilities and to see if this is a place where he wanted to play rugby again.

“I asked him why he wanted to join us and he said it was to rediscover his competitive side and prove himself again. That was the right answer for me.”

Henson’s lawyers have contended that the player’s contract with Ospreys is void because he has not been paid for more than a year having taken a sabbatical. The region disagrees and a suggested compromise is that Henson spends this season in London and returns to Swansea next summer for at least the final year of his contract.

Saracens’ chief executive, Edward Griffiths said: “We are in discussions with the Ospreys but we still need to agree on how he can relaunch his rugby career and continue with Strictly Come Dancing. There are still some other things that need to be tied down and it is by no means done and dusted. I hope we can reach an agreement but we recognise he has an existing commitment to honour.”

Venter expects the issue to be “sorted in the next few days”. He added: “We have said to Gav that he will not be coming here as our saviour, he will be coming to join our squad as one of two fly-halves.”

• This article was amended on 26 October 2010. The original referred to Brian Venter. This has been corrected.

guardian.co.uk © Guardian News & Media Limited 2010

Published via the Guardian News Feed plugin for WordPress.

Posted in News, Sports | Tagged , , , , , , , | Leave a comment