Uber-Sydney charging AU$100.00 for trip out of CBD Community Center Geeks' Lounge by GrimJack … of the hostage situation in downtown Sydney, [Uber](http://crooksandliars.com/2014/12/uber-criticized-charging-minimum-100-fare) was charging $100… Re: Uber-Sydney charging AU$100.00 for trip out of CBD Community Center Geeks' Lounge by GrimJack It gets better! [Ubber](http://talkingpointsmemo.com/livewire/uber-begins-charging-2-dollar-taxi-hailing-fee) is now charging a $2.00 booking fee in New York City! Life is good. Why do you need an Uber clone? Programming Software Development by jackd12 …the proven strategies and functionalities that have made Uber successful. Customization: While the basic framework …all users. Technical Support and Updates: Reputable Uber clone script providers offer technical support and …latest industry trends and advancements. Overall, an Uber clone script provides a cost-effective, time-efficient… Re: Why do you need an Uber clone? Programming Software Development by Dani The only people who need an Uber clone are existing taxicab companies that need a way to …compete with the flexibility and ease of use that Uber brings. Right now, Uber’s convenience makes looking up a phone number… How to build an app like Uber? Programming Mobile Development by MohamenNatheem I've seen so many entrepreneurs trying to build an app like Uber with Uber like solutions. There are so many Uber clone solutions out there such as Wooberly to help them out. But how to build it from scratch? General purpose uber high-level programming language? Community Center by pseudorandom21 I'm looking for a... general purpose uber high-level programming/scripting language, with a small learning curve. I'm thinking it would be suitable for automating tasks like simple file IO, http requests, searching/sorting, simulating user input, etc. So what language would you carry with you on your day-to-day mundane tasks? Re: General purpose uber high-level programming language? Community Center by Rashakil Fol Python, Ruby. Now, these aren't "uber high-level" (I would put Haskell, Scala in that category, and they have a large learning curve), they're just normal useful languages. Re: Uber-Sydney charging AU$100.00 for trip out of CBD Community Center Geeks' Lounge by Reverend Jim Aside from the price gouging (which they have done before), they have also 1. Denied responsibility for drivers by claiming they are contractors, not employees 1. Interfered with an attempt by Lyft to attract investors 1. Threatened to smear reporters 1. Called in fake rides to tie up drivers from the competition 1. Charged more to ensure you won'… Form not sending email Programming Web Development by JonEdangerousli Uber newbie here. Have downloaded three different form scripts but none … Ride sharing? Community Center by Dani Uber or Lyft? ;) just curious. It's been my experience that this is the Windows or Mac question of yesteryear. Uber-N00B question Programming Software Development by SeijuroHiko First off I'd like to say hailz to you all! I'm your newest newbie trying to get a good grasp of programming C/C++/C#. Unfortunetly, I've got a loooong ways to go. With your help, I know I can make it. My first question is rather tricky.... well... for me... :sad: I'm using Mac OS X 10.2.6 on Project Builder, just doing Foundation C, but … Re: Uber-N00B question Programming Software Development by marceta get a PC!!! Re: Uber-N00B question Programming Software Development by SeijuroHiko :rolleyes: Re: Uber-N00B question Programming Software Development by Dani Please only offer helpful suggestions. I'm confused - when you run the program, the 2 and 5 are printed to the top of the screen automatically? Or did you enter them, or? Re: Uber-N00B question Programming Software Development by Killer_Typo he is saying that he entered them and it asks for them when he starts instead of after the print out. let me try my hand with the code for a bit and ill see if i can help out. (not likely but ill try :)) Re: Uber-N00B question Programming Software Development by Killer_Typo [code] ///////////////////////////////////////////////////// ///program that takes one value a and places///////// ///it to the power of another value b, defining////// ///the power function by c/////////////////////////// ///////////////////////////////////////////////////// #include <stdio.h> #include <math.h> int main() { int a;… Re: Uber-N00B question Programming Software Development by SeijuroHiko Well, I plugged in your code, Killer_Typo, and it's still doing the exact same thing... it won't come up with anything until the 2 variables are defined by the user. I tried using breakpoints, but my newbie butt doesn't even know what those are for, so of course it doesn't work... how do you implement a break or a pause? Sorry the code is sloppy… Re: Uber-N00B question Programming Software Development by Killer_Typo i didnt have any break points, the code up there is exactly what i compiled and ran, and it worked great. are you running this from the command prompt? or macs version of it at least? i use windows so im not sure what your problem with it is. maybe someone with a mac can help you better. Re: Uber-N00B question Programming Software Development by FireNet Hey I think you guys are barking up the wrong tree. scanf() works with options you sepecify.By options I mean all the stuff you specify in the " ".So it also means you can have multiple options too. [CODE] some options ------------- %s string (char *) %d int %f float [/CODE] you can also use scanf() like … Re: Uber-N00B question Programming Software Development by Dave Sinkula Ah, yes, [font=Courier New][url="http://www.eskimo.com/~scs/C-faq/q12.20.html"]scanf[/url][/font]. Trouble is almost guaranteed until you decide to quit using it. Re: Uber-N00B question Programming Software Development by SeijuroHiko Dave, I wish I knew that going into this... *sigh* FireNet- This is what I came up with: [CODE]/////////////////////////////////////////////////////////////////////// ///////////////////// Simple Application here: ////////////////////// /////// Allz we're doing is asking the user for 2 variables, //////// //////// a and b, put a to … Re: Uber-N00B question Programming Software Development by Dave Sinkula One of the recommendations, if you followed the link I previously posted, was to use [font=Courier New]fgets[/font] and [font=Courier New][color=red]s[/color]scanf[/font]. For example,[code]#include <stdio.h> #include <math.h> int main(void) { double a, b, c; char buffer [ BUFSIZ ]; puts("CAN YOU FEEL THE POWER???\n&… Re: Uber-N00B question Programming Software Development by SeijuroHiko Apologies, Dave. I didn't realize that was a link. I'll plug that in later tonight (IMPORT RACES!!! ^_^ ) and let ya know how it works... looks good from here! Thanks for the help, Dave. Re: Uber-N00B question Programming Software Development by SeijuroHiko OK! that's it... I give up... I'd never use scanf/sscanf anyways, so screw it. Dave, you got pretty close with your idea. [IMG]http://uploader.unrealboards.com/uploads22/scanf sucks.tiff[/IMG] I tried about 3 or 4 variations of this code, but none got me really any closer... Thanks for your help guys, but I'm giving up... I'm better off… Re: Uber-N00B question Programming Software Development by FireNet try doing this [code] int a,b,c,d; scanf("%d%d%d",a,b,c); d = a+b+c; printf("The answer is:%d",d) [/code] NEVER EVER GIVE UP Re: Uber-N00B question Programming Software Development by SeijuroHiko Works just fine... [IMG]http://uploader.unrealboards.com/uploads22/scanf blows nut.tiff[/IMG] What my n00b logic is telling me is that [FONT=Arial Narrow]main()[/FONT] wants to define the variables ASAP, overriding the [FONT=Arial Narrow]printf()[/FONT] function... Would defining the [FONT=Arial Narrow]double[/FONT] variables in a header … uber newbie :( Programming Web Development by aphex23 I am very, very new to this whole php thing, so i am sorry for being so dumb, i am trying to learn, and i am going crazy! I am trying to get several scripts working but keep getting similar errors for them.. looks something like this Warning: Division by zero in /usr/local/psa/home/vhosts/darrenthomas.net/httpdocs/test.php on line 7 Warning: … Re: uber newbie :( Programming Web Development by Dani I'm confused what you mean. What does test.php look like? When does test.php work and when doesn't it? When test.php is in the site root, you can run it just fine? Re: uber newbie :( Programming Web Development by aphex23 Well, I scrapped that script, and got another one.. and got those working so, thanks for the attempt to help though!! :mrgreen: Uber whitespace trimmer Programming Software Development by alcoheca Hi, me again! I wish to tidy up strings from user input. I have done a bit of research and have most of this working except the tricky bit - converting all/any whitespace between words to 1 ' ' char. For instance, using hyphen to represent spaces.. ---John-----MacDonald- should end up as John-MacDonald Here is my code, it is malfunctioning …