- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
22 Posted Topics
Re: I'm currently reading C++ Programming for the Absolute Beginner and I like it very much. It talks to you as if you've had zero programming experience before, but I have had some beginner basics in VB.NET. The book has bit of humor to it which keeps me interested, and it … | |
Re: You should try matching against this expression to check if valid characters were entered for an email address: `/^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/` Check out the `.match()` function. I don't want to completely give you the answer on this. | |
Re: It's just my first initial, middle initial, and full last name. I couldn't think of anything else that worked better. | |
Re: I currently own a Lenovo ThinkPad T420 and love it. With the 9 cell battery, I can get a solid 11 hours of surfing the internet, playing music, and editing a Word document. The build quality is amazing, also. I've always had bad experience with Acer laptops, though. My first … | |
Re: I'm reading through [Head First Java](http://www.amazon.com/Head-First-Java-2nd-Edition/dp/0596009208/ref=sr_1_1?ie=UTF8&qid=1332467322&sr=8-1). It's not a dry programming book at all, and it explains topics really well. It's more of a humorous book with more visuals to help the reader understand topics. | |
Re: I always had trouble on how to do this, but I found [Dead Centre](http://www.wpdfd.com/editorial/thebox/deadcentre4.html) to be the best way to implement text centered right in the middle of a `<div>`. It involves using more `<div>` tags, but I think it might be the only way to get text centered that … | |
Re: You could simply float two `<div>`s within the `<div id="article">`, and then clear them both. <div class="colRight"> <p>Newest Articles</p> <div id="article"> <div id="article_image"> <p>Image or text here...</p> </div> <div id="article_content"> <p>Content fills in here...</p> </div> <div class="clear"></div> </div> </div> I've added some borders to show the boundries of the `<div>`s, … | |
Re: On your main `<div>` wrapper, you're defining a fixed height, so when your text exceeds that 1226px limit, it gives you the "leaking" footer into the main `<div>`. You can either remove or comment out the height property in your CSS file and it will be fixed. #main { background-color: … | |
Re: If you mean designing your site compatible for viewing on iPhones and the like, it should just be able to scale accordingly to the device's resolution. If not, then you will have to resize images to fit a smaller resolution. You might want to send the user to a new … | |
Re: My regular visits are [url=http://www.metafilter.com]MetaFilter[/url] and [url=http://www.codinghorror.com/blog]Coding Horror[/url]. | |
Re: 93 WPM here. I had 93 correct and 6 wrong, from typing 526 characters per minute. | |
Re: Hi viziroth, this might be too late of a response but I'll give it a go anyway. I'm currently taking my second-level RPG IV class so I'll try to help you out here. I think you're getting Data Description Specification (DDS) with Definition Specifications (D-Specs, a special area in an … | |
Re: Recently, my interests have been with vintage audio equipment (3-way speakers, receivers, etc). And I'll have to admit as well, programming is my hobby (even though it's just the learning process). I also like to experiment with older computer hardware and see what I can make out of it. And … | |
Re: Great tutorial! I'll have to go with this method the next time I need my music from my iPod onto my Windows desktop. I've been doing it the long way. I would put in a Puppy Linux LiveCD, download Gtkpod, mount the hard drive, then copy the music from the … | |
Hi guys, I'm having some trouble with my Java homework, and I was wondering if any of you could point me in the right direction. I need to find a loop that will add all the whole numbers from 1 to 1000 and print only the total. I've been spending … | |
Re: My hosting and domain name is provided by NameCheap. They have 100GB of hosting for about 7 bucks a month, plus 10 bucks per year for a domain name. I use FileZilla to upload my content into a folder called "public_html" which they provide. | |
Hello, I'm trying to figure out how to populate an array by using subroutines. We have begun procedures last week, and now this week we are moving onto arrays. College moves too fast sometimes. :( What I'm trying to do is make a subroutine which will populate the entire array … | |
![]() | Re: What I'm about to post is probably what you already know, but when I tried the following code, I got no borders on the table. [code] <html> <head> <title>My Title</title> </head> <body> <table border="none"> <tr> <td>Some content</td> </tr> <tr> <td>Some content</td> </tr> <tr> <td>Some content</td> </tr> </table> </body> </html> [/code] … |
Hello guys, I'm really stumped on this assignment. What I need to do is make a triangle's height based on the number entered by the user. So if the user enteres 4, the output would be this: $ $$ $$$ $$$$ And I can't figure out how to do that. … | |
Hi, I was wondering how to go about aligning the left border of a div. The page I'm working with can be found here: [url]http://www.mrmollman.com[/url]. I'm trying to make that border-left property centered on the page so the text comes out from the right of it. Here is the code: … | |
I'm trying to create a simple gallery for comics I have created. I have a main divider, which contains two tables. The first table is for navigation, which contains a drop-down menu with a button. The second table is for content. When the user chooses on option in the drop-down … ![]() | |
Re: You probably don't want to spend money on a book, but I'm reading C++ Programming for the Absolute Beginner, and I really like it. It talks to you as if you've had no programming exposure at all. It's a bit humorous as well. |
The End.