Posts
 
Reputation
Joined
Last Seen
Ranked #397
Strength to Increase Rep
+7
Strength to Decrease Rep
-1
84% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
4
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
4 Endorsements
Ranked #397
Ranked #818
~74.8K People Reached
Favorite Tags

97 Posted Topics

Member Avatar for JameB

How do you test an Android app on different devices and screen sizes (not emulator)? So far I'm just assuming that the XML preview I get in design mode means the app would function, obviously this isn't enough. I don't want to ask friends/family, at least not yet. So I'm …

Member Avatar for SAMMY12345
0
214
Member Avatar for veronicak5678

I don't know any function that can do that but you can write your own like this!! [code=cplusplus] #include<iostream> #include<string> #include<iomanip> #include<algorithm> using namespace std; string urwelcome(string input) { begining: for(unsigned int i = 0; i <= input.length(); i++) { if(input[i] == ' ') { input.erase(i, 1); goto begining; } …

Member Avatar for bridgett.grace
0
2K
Member Avatar for rock9449

Why do you need to use this many functions do write such a simple program?? Take a look at what I did, [code=c++] #include<iostream> #include<string> using namespace std; int main() { int hours, minutes; string ampm; // stores AM or PM depending on the value of 'hours' cout << "Enter …

Member Avatar for deceptikon
0
8K
Member Avatar for daniel1977
Member Avatar for JameB

Hi guys, I'm working on a side project for a friend and I'm looking for a C++ library that allows me to put bunch of paragraphs in a PDF format. Anyone know any good libraries that can do this as simply as possible? It will be just paragraphs and paragraphs …

Member Avatar for iamthwee
0
771
Member Avatar for JameB

Hi guys, I'm trying to make an app for iOS, Android and BlackBerry 10 that allows users to add frames to pictures. This is suppose to be a learning experience kind of thing for me! Anyway, I'm wondering what the best image editing libraries are for each platform.. Basically, I'm …

Member Avatar for peter_budo
0
204
Member Avatar for vizz

Your post isn't very clear, are you trying to change the visiting user's IP after the person visits 10 pre-defined links??

Member Avatar for harry247
0
794
Member Avatar for himgar

Use the textcolor function (it's not standard compliant) from conio.h library: [code=cplusplus] #include <conio.h> int main() { textcolor(RED); cputs("Red text in console!"); return 0; } [/code] [url]http://www.ousob.com/ng/borcpp/ng6c57c.php[/url] try using google next time!!

Member Avatar for renel.c.allauigan
0
4K
Member Avatar for extjac

https://www.google.ca/#hl=en&safe=off&output=search&sclient=psy-ab&q=creating+thumbnail+php&oq=creating+thumb&gs_l=hp.3.1.0l4.706.2437.0.3977.14.12.0.2.2.0.341.1809.1j9j1j1.12.0...0.0...1c.RRpkDD0arPw&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&fp=ee7e1412ea6db892&biw=1920&bih=1062

Member Avatar for ashishrevar
0
345
Member Avatar for JameB

I was just wondering what the standard web design projects cost. Level of difficulty: Low Languages: HTML + PHP the most complex requirement is the payment processing capability.

Member Avatar for juliagarner
0
182
Member Avatar for <M/>
Member Avatar for <M/>

https://www.google.ca/search?q=Left+to+Right+Image+slider Next time please try Google first.

Member Avatar for <M/>
0
1K
Member Avatar for coolikedat99

> P.S. There are a lot of variables.. Like: > > > int one; > int two; > int three; > int launch; > int one_1 = 1776; > int two_1 = 1999; > int three_1 = 2012; > int launch_1 = 138974; > Couldn't these be in some kind …

Member Avatar for RainbowMatrix
0
294
Member Avatar for davy_yg

Okay so first off you need a table - use the `<table></table>` tags to create one... CODE: <tablet> </table> Now you want 13 rows - use the `<tr></tr>` tags! (I'm only going to make a table with 3 rows, you do the rest) CODE: <table> <tr> </tr> <tr> </tr> <tr> …

Member Avatar for davy_yg
0
106
Member Avatar for venkateshyeluri

Take a look at following piece of code and adjust yours accordingly: <script type="text/javascript"> if (screen.availWidth<=800) //if screen width is 800px or less //do soemthing here else //do something else here if (screen.availHeight<=800) //if screen width is 800px or less //do soemthing here else //do something else here </script>

Member Avatar for JameB
0
339
Member Avatar for <M/>

Not sure what kind of customizations you want on Facebook but I've seen ways of injecting your own code in some existing websites' code and re-load the page with your custom code... so it sounds like it's possible - do some research!

Member Avatar for <M/>
0
99
Member Avatar for monica.slocum

<form method="post" id="some_id" action="process.php" onSubmit="alert('Thank you!');" > EDIT: Sorry I realized you wanted something on the reload and not before leaving.. What you can do is in the PHP script, add small code to change the content of a file to 1 from 0 after you do the saving of …

Member Avatar for almostbob
0
11K
Member Avatar for theju112

Look up ASCII values and then `if (ASCII_value_of(some var) == 30) then set the element of an integer array to <soemthing>` Also, https://www.google.ca/search?q=convert+these+char+arrays+into+integer+arrays

Member Avatar for Lucaci Andrew
0
153
Member Avatar for persianprez

<?php $serverdir = "http://localhost:8080/core/data/"; include($serverdir."file_name.txt"); ?> Is that helpful?

Member Avatar for Atli
0
1K
Member Avatar for maori

It's not recognizing it as "time" so what's happening is it's taking the 14.45 (which YOU understand to be 14h45m) and adds 0.15 (which YOU understand to be 15m) to give a 14.6. This makes sense if it's a base 60 number system... Anyways, this will be helpful to you: …

Member Avatar for diafol
0
87
Member Avatar for juliadavis_2012

Every programmer should know the difference between Google and Forums... -__-

Member Avatar for xjshiya
0
222
Member Avatar for dan_code_guru

<?php $search = $_GET['input']; echo "<a href=\"http://www.google.com/search?q=$search\" target=\"blank\">Results</a>"; ?> and then when you call the page, go like this: `www.blahblah.com/index.php?input=php script to search all of the interwebs`

Member Avatar for JameB
0
140
Member Avatar for Sanchixx

<?php $input = "<p>This is an example of random input you might encounter! :)</p>"; $output = strip_tags($input); $output = str_replace (":)", "<img src=\"https://www.google.ca/intl/en_ALL/images/logos/images_logo_lg.gif\" alt=\"\"/>", $output); echo $output; ?> Remember that you need the slashes infront of the quotes so that PHP ignores the quotes (because they're not really the end …

Member Avatar for Sanchixx
0
186
Member Avatar for garima.nanda.50

Find a problem at your university/college/teaching school and address it by making a website and make it look pretty since you want it all girly (no sexism intended towards fellow men who like to make their websites good looking)

Member Avatar for JameB
-1
171
Member Avatar for Amnesiac11

First link from Google when typing out your entire question as is: http://stackoverflow.com/questions/5349716/how-to-make-youtube-embed-code-video-auto-start

Member Avatar for Amnesiac11
0
200
Member Avatar for vishalonne

To create what you want, you should create a PHP script that adds one to the number existing in a text file somewhere. 1. In the HTML file, you simply echo the contents of the file where needed. <small>This page has been visited <?php $count = file_get_contents("INSERT_PATH_TO_THE_TEXT_FILE"); echo $count; ?> …

Member Avatar for vishalonne
0
358
Member Avatar for kirenemook12

Find the nearest FRC/FTC team and ask them, they'll be very happy to show and teach you. www.usfirst.org

Member Avatar for mike_2000_17
0
274
Member Avatar for JameB

I have a form that takes in information from the user and saves the info and then displays it in the form field.. . . Form: <form method="post" action="/core/process2.php" name="step2_form" target="_blank"> <div class="float_left"> <table class="form_step2"> <tr class="form_step2"> <td class="form_step2 title"><p class="form_text">File Date</p></td> <td class="form_step2 input"><input type="text" class="box_form" name="file_date" value="<?php include($datadir."file_date.txt"); …

Member Avatar for JameB
0
172
Member Avatar for krupanand

> s India the 1st 2 columns of next page should contain the names n id of all the Indians from the database). The 3rd n 4th columns should be textboxes where user can enter data n that has to be stored in the database. plz help me with this.. …

Member Avatar for krupanand
0
180
Member Avatar for devianleong

> Hi, As I know the barcode scanner is just like a keyboard. I want the barcode scanner scan the user ID before it enter to the system. May I know how to hide the textbox field but still able to handle the input from barcode scanner? Use IDs: `<input …

Member Avatar for pritaeas
0
218
Member Avatar for tedkurtz

Could be that the information from the 1000 inputs is taking too much time to transfer and the process is killed due to exceeding the time limit. One temporary solution would be to break the pages into two or three or however many pages, with each page having ~1000 inputs. …

Member Avatar for sheikhali449
0
107
Member Avatar for newonehere66

<div id="right"> <div id="grid" class="right"> </div> </div> You should have `id="right"` instead of `class="right"`. Also, if you're using `float: left` and `float: right`, make sure the width is never exceeding 50% of the screen. (I suggest 45%)

Member Avatar for JameB
0
198
Member Avatar for william.saemann

You have it randomly written down in your code where it doesn't make sense... delete it and you should be fine. Open the file, search for ".banner" and delete the relevant text...

Member Avatar for hericles
0
97
Member Avatar for JameB

I'm making a website where users select one of the four options - A, B, C, or D (for simplicity) and press a button to be redirected to a different page (page 2) that uses the selection to display one of the four images at the top. The selection is …

Member Avatar for JameB
0
276
Member Avatar for jacksbileduct

I don't see how it's difficult for you to make you site IE compatible. Although I don't have a degree in computer science, or a job in the field, I know programming and web development. I've developed a couple of sites for offline and online uses. Making them compatible on …

Member Avatar for JameB
0
227
Member Avatar for LogicWeb

<!DOCTYPE html> <html> <body> <select style="line-height:38px; padding: 20px; color: red; height: 20px; font-size: 30px; "> <option>Volvo</option> <option>Saab</option> <option>Mercedes</option> <option>Audi</option> </select> </body> </html> Run that code on http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_option and compare to what you're doing wrong...

Member Avatar for JameB
0
6K
Member Avatar for jysjay

https://www.google.ca/#hl=en&gs_nf=1&tok=dQKB_kT2KJr6BIIDx21pbw&pq=let%20me%20google%20that%20for%20you&cp=12&gs_id=1h&xhr=t&q=different+css+for+different+browsers&pf=p&safe=off&sclient=psy-ab&oq=different+cs&gs_l=&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.,cf.osb&fp=b73aac1983e9555&biw=1920&bih=1062 Sometimes it amazes me how people can't perform a simple Google search.

Member Avatar for JameB
0
48
Member Avatar for saraartist

To make it compatible in the major browsers, one of the tricks used is to "reset" the website and then giving styles to EVERYTHING again! http://perishablepress.com/press/2007/10/23/a-killer-collection-of-global-css-reset-styles/ is a good source to get yourself a reset code... One thing you should be careful is if you use this, you'll have to …

Member Avatar for scaiferw
0
802
Member Avatar for JameB

Hi, I'm a beginner programmer and I'm developing this web app, nothing major; the hardest part was writting to text file (not really hard...) Anyways, my company policy doesn't allow us to install server softwares on computers. So now, I can't run the PHP code I wrote!! **I am wondering …

Member Avatar for diafol
0
182
Member Avatar for showman13

What's wrong with the code you have there? It works! If you want them to be equal despite the capital & lower case letters; you'll have to do some manipulation of the data before you compare them. string strtolower ( string $variable ) The above statement will convert a given …

Member Avatar for showman13
0
116
Member Avatar for tones1986

https://www.google.ca/#hl=en&biw=1440&bih=787&sclient=psy-ab&q=limit+radio+button+selections&oq=radio+button+limi&aq=0bK&aqi=g-bK2&aql=1&gs_l=hp.3.0.0i8i30l2.3572.6121.0.8296.17.17.0.0.0.0.360.3971.0j1j15j1.17.0.tsh.1.0.0.-LXxyCUp3EA&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.,cf.osb&fp=d435548b4fe14b69 Did you try Googling first??

Member Avatar for JameB
0
80
Member Avatar for JameB

Sometimes when the visitor clicks a button, nothing happens. I can't seem to figure out what the problem is. [URL="http://www.team188.com/web/index.php?page=main"]Working Navigation Bar[/URL] [code=HTML] <ul id="navigation"> <li style="border-left-width:0px;"><a href="http://www.team188.com/web/">Main</a></li> <li><a href="http://www.team188.com/web/">Ask 188</a></li> <li><a href="http://www.team188.com/web/">Season</a></li> <li><a href="http://www.team188.com/web">Resources</a></li> <li><a href="http://www.team188.com/web/">Robots</a></li> <li><a href="http://www.team188.com/web/">Gallery</a></li> <li><a href="http://www.team188.com/web/">History</a></li> <li><a href="http://www.team188.com/web/">FLL - Vex</a></li> <li><a href="http://www.team188.com/web/">Sponsors</a></li> <li><a href="http://www.team188.com/web/">Mentors</a></li> <li><a …

0
114
Member Avatar for royiben

[url]http://validator.w3.org/check?uri=http://lostangelsproject.com/&charset=(detect+automatically)&doctype=Inline&group=0[/url] On Line 409: <div id="background"><img src="http://lostangelsproject.com/wp-content/uploads/2010/07/JodieComp_1152x864.jpg" alt="field" style="width: 100%; height: 100%; background-repeat: no-repeat"/></div> What is no-repeat by itself? It makes no sense!

Member Avatar for hirenmodi
0
110
Member Avatar for drumichael87

Try this: [code] #footer { color: #fff; width: 1020px; height: ____px; margin-left: auto; margin-right: auto; background-image: url(images/ourbg2.png); background-repeat: repeat; } [/code] And when all fails, try to fix all the errors you'll see when you put your CSS here: [url]http://jigsaw.w3.org/css-validator/#validate_by_uri+with_options[/url] Good luck!

Member Avatar for drumichael87
0
132
Member Avatar for mikenable

I'd advise against posting the [I]entire[/I] code. People will just search Google, find this post and be lazy and just copy it! I know I would. :P

Member Avatar for mike_2000_17
0
294
Member Avatar for rv_mup08

Hmm, a day ago you didn't know that you have to declare a variable before using them. And now that!? Wow, you must be a really fast learner or a really fast at Ctrl + C & Ctrl + V. Very Interesting.

Member Avatar for rv_mup08
0
2K
Member Avatar for JameB

I have a javascript function to toggle a specific id sent to the function [code=javascript] <script type="text/javascript"> function toggle(id) { var localId = document.getElementById(id) if (localId.style.display == 'none') { localId.style.display = 'block' } else { localId.style.display = 'none' } } </script> [/code] I want to do the same in jQuery, …

Member Avatar for JJenZz
0
330
Member Avatar for JameB

I'm just starting to make my existing website's mobile version. I was wondering what kind of doctype should I use to ensure maximum number of phones rendering the site the way it was intended to. Targeted users use smartphones and not the thousand year old nokia phones. Also, Should I …

Member Avatar for keval_hack
0
103
Member Avatar for JameB

I am having a random problem with my website. I am not sure if its just my internet connection that is causing this or if it is a problem with the website it self. [url]www.team188.com/web[/url] The prob is that randomly once in like every 5-6 visits, the website will take …

Member Avatar for JameB
0
85
Member Avatar for zaxxon216

PLEASE don't post 600 line of code again! Thank You! Also, you need to learn some HTML. [url]http://validator.w3.org/check?uri=http://popnwedlock.com/services.html&charset=(detect+automatically)&doctype=Inline&group=0[/url] Remember that if you don't have proper syntax, you will never get cross browser compatibility. Good luck fixing those 124 errors and 3 warnings! :) EDIT: Line 240, Column 114: entity was …

Member Avatar for zaxxon216
0
140

The End.