Posts
 
Reputation
Joined
Last Seen
Ranked #394
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 #396
Ranked #818
~72.9K People Reached
Favorite Tags
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
213
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
763
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
203
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
777
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
246
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
180
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
291
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
105
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
332
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
96
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
148
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
85
Member Avatar for juliadavis_2012

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

Member Avatar for xjshiya
0
220
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
137
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
182
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
169
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
198
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
318
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
263
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
170
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
177
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
214