Behind Uber’s RADAR fraud detection system

Uber has 93 million active users, with drivers completing 4.98 billion trips in 2020, accumulating $11.1 billion in revenue. That is a ton of transactions happening every second of the day across countries worldwide. So, how does Uber ensure the payments are completed and the company isn’t cheated? Through RADAR.


 https://analyticsindiamag.com/behind-ubers-radar-fraud-detection-system/ 

What is GEEK

Buddha Community

Behind Uber’s RADAR fraud detection system
Mike  Kozey

Mike Kozey

1656151740

Test_cov_console: Flutter Console Coverage Test

Flutter Console Coverage Test

This small dart tools is used to generate Flutter Coverage Test report to console

How to install

Add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):

dev_dependencies:
  test_cov_console: ^0.2.2

How to run

run the following command to make sure all flutter library is up-to-date

flutter pub get
Running "flutter pub get" in coverage...                            0.5s

run the following command to generate lcov.info on coverage directory

flutter test --coverage
00:02 +1: All tests passed!

run the tool to generate report from lcov.info

flutter pub run test_cov_console
---------------------------------------------|---------|---------|---------|-------------------|
File                                         |% Branch | % Funcs | % Lines | Uncovered Line #s |
---------------------------------------------|---------|---------|---------|-------------------|
lib/src/                                     |         |         |         |                   |
 print_cov.dart                              |  100.00 |  100.00 |   88.37 |...,149,205,206,207|
 print_cov_constants.dart                    |    0.00 |    0.00 |    0.00 |    no unit testing|
lib/                                         |         |         |         |                   |
 test_cov_console.dart                       |    0.00 |    0.00 |    0.00 |    no unit testing|
---------------------------------------------|---------|---------|---------|-------------------|
 All files with unit testing                 |  100.00 |  100.00 |   88.37 |                   |
---------------------------------------------|---------|---------|---------|-------------------|

Optional parameter

If not given a FILE, "coverage/lcov.info" will be used.
-f, --file=<FILE>                      The target lcov.info file to be reported
-e, --exclude=<STRING1,STRING2,...>    A list of contains string for files without unit testing
                                       to be excluded from report
-l, --line                             It will print Lines & Uncovered Lines only
                                       Branch & Functions coverage percentage will not be printed
-i, --ignore                           It will not print any file without unit testing
-m, --multi                            Report from multiple lcov.info files
-c, --csv                              Output to CSV file
-o, --output=<CSV-FILE>                Full path of output CSV file
                                       If not given, "coverage/test_cov_console.csv" will be used
-t, --total                            Print only the total coverage
                                       Note: it will ignore all other option (if any), except -m
-p, --pass=<MINIMUM>                   Print only the whether total coverage is passed MINIMUM value or not
                                       If the value >= MINIMUM, it will print PASSED, otherwise FAILED
                                       Note: it will ignore all other option (if any), except -m
-h, --help                             Show this help

example run the tool with parameters

flutter pub run test_cov_console --file=coverage/lcov.info --exclude=_constants,_mock
---------------------------------------------|---------|---------|---------|-------------------|
File                                         |% Branch | % Funcs | % Lines | Uncovered Line #s |
---------------------------------------------|---------|---------|---------|-------------------|
lib/src/                                     |         |         |         |                   |
 print_cov.dart                              |  100.00 |  100.00 |   88.37 |...,149,205,206,207|
lib/                                         |         |         |         |                   |
 test_cov_console.dart                       |    0.00 |    0.00 |    0.00 |    no unit testing|
---------------------------------------------|---------|---------|---------|-------------------|
 All files with unit testing                 |  100.00 |  100.00 |   88.37 |                   |
---------------------------------------------|---------|---------|---------|-------------------|

report for multiple lcov.info files (-m, --multi)

It support to run for multiple lcov.info files with the followings directory structures:
1. No root module
<root>/<module_a>
<root>/<module_a>/coverage/lcov.info
<root>/<module_a>/lib/src
<root>/<module_b>
<root>/<module_b>/coverage/lcov.info
<root>/<module_b>/lib/src
...
2. With root module
<root>/coverage/lcov.info
<root>/lib/src
<root>/<module_a>
<root>/<module_a>/coverage/lcov.info
<root>/<module_a>/lib/src
<root>/<module_b>
<root>/<module_b>/coverage/lcov.info
<root>/<module_b>/lib/src
...
You must run test_cov_console on <root> dir, and the report would be grouped by module, here is
the sample output for directory structure 'with root module':
flutter pub run test_cov_console --file=coverage/lcov.info --exclude=_constants,_mock --multi
---------------------------------------------|---------|---------|---------|-------------------|
File                                         |% Branch | % Funcs | % Lines | Uncovered Line #s |
---------------------------------------------|---------|---------|---------|-------------------|
lib/src/                                     |         |         |         |                   |
 print_cov.dart                              |  100.00 |  100.00 |   88.37 |...,149,205,206,207|
lib/                                         |         |         |         |                   |
 test_cov_console.dart                       |    0.00 |    0.00 |    0.00 |    no unit testing|
---------------------------------------------|---------|---------|---------|-------------------|
 All files with unit testing                 |  100.00 |  100.00 |   88.37 |                   |
---------------------------------------------|---------|---------|---------|-------------------|
---------------------------------------------|---------|---------|---------|-------------------|
File - module_a -                            |% Branch | % Funcs | % Lines | Uncovered Line #s |
---------------------------------------------|---------|---------|---------|-------------------|
lib/src/                                     |         |         |         |                   |
 print_cov.dart                              |  100.00 |  100.00 |   88.37 |...,149,205,206,207|
lib/                                         |         |         |         |                   |
 test_cov_console.dart                       |    0.00 |    0.00 |    0.00 |    no unit testing|
---------------------------------------------|---------|---------|---------|-------------------|
 All files with unit testing                 |  100.00 |  100.00 |   88.37 |                   |
---------------------------------------------|---------|---------|---------|-------------------|
---------------------------------------------|---------|---------|---------|-------------------|
File - module_b -                            |% Branch | % Funcs | % Lines | Uncovered Line #s |
---------------------------------------------|---------|---------|---------|-------------------|
lib/src/                                     |         |         |         |                   |
 print_cov.dart                              |  100.00 |  100.00 |   88.37 |...,149,205,206,207|
lib/                                         |         |         |         |                   |
 test_cov_console.dart                       |    0.00 |    0.00 |    0.00 |    no unit testing|
---------------------------------------------|---------|---------|---------|-------------------|
 All files with unit testing                 |  100.00 |  100.00 |   88.37 |                   |
---------------------------------------------|---------|---------|---------|-------------------|

Output to CSV file (-c, --csv, -o, --output)

flutter pub run test_cov_console -c --output=coverage/test_coverage.csv

#### sample CSV output file:
File,% Branch,% Funcs,% Lines,Uncovered Line #s
lib/,,,,
test_cov_console.dart,0.00,0.00,0.00,no unit testing
lib/src/,,,,
parser.dart,100.00,100.00,97.22,"97"
parser_constants.dart,100.00,100.00,100.00,""
print_cov.dart,100.00,100.00,82.91,"29,49,51,52,171,174,177,180,183,184,185,186,187,188,279,324,325,387,388,389,390,391,392,393,394,395,398"
print_cov_constants.dart,0.00,0.00,0.00,no unit testing
All files with unit testing,100.00,100.00,86.07,""

Installing

Use this package as an executable

Install it

You can install the package from the command line:

dart pub global activate test_cov_console

Use it

The package has the following executables:

$ test_cov_console

Use this package as a library

Depend on it

Run this command:

With Dart:

 $ dart pub add test_cov_console

With Flutter:

 $ flutter pub add test_cov_console

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):

dependencies:
  test_cov_console: ^0.2.2

Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:test_cov_console/test_cov_console.dart';

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // Try running your application with "flutter run". You'll see the
        // application has a blue toolbar. Then, without quitting the app, try
        // changing the primarySwatch below to Colors.green and then invoke
        // "hot reload" (press "r" in the console where you ran "flutter run",
        // or simply save your changes to "hot reload" in a Flutter IDE).
        // Notice that the counter didn't reset back to zero; the application
        // is not restarted.
        primarySwatch: Colors.blue,
        // This makes the visual density adapt to the platform that you run
        // the app on. For desktop platforms, the controls will be smaller and
        // closer together (more dense) than on mobile platforms.
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    return Scaffold(
      appBar: AppBar(
        // Here we take the value from the MyHomePage object that was created by
        // the App.build method, and use it to set our appbar title.
        title: Text(widget.title),
      ),
      body: Center(
        // Center is a layout widget. It takes a single child and positions it
        // in the middle of the parent.
        child: Column(
          // Column is also a layout widget. It takes a list of children and
          // arranges them vertically. By default, it sizes itself to fit its
          // children horizontally, and tries to be as tall as its parent.
          //
          // Invoke "debug painting" (press "p" in the console, choose the
          // "Toggle Debug Paint" action from the Flutter Inspector in Android
          // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
          // to see the wireframe for each widget.
          //
          // Column has various properties to control how it sizes itself and
          // how it positions its children. Here we use mainAxisAlignment to
          // center the children vertically; the main axis here is the vertical
          // axis because Columns are vertical (the cross axis would be
          // horizontal).
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'You have pushed the button this many times:',
            ),
            Text(
              '$_counter',
              style: Theme.of(context).textTheme.headline4,
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}

Author: DigitalKatalis
Source Code: https://github.com/DigitalKatalis/test_cov_console 
License: BSD-3-Clause license

#flutter #dart #test 

Jamal  Lemke

Jamal Lemke

1597323600

Uber’s Success Is Deeply Tied To Its Success In India: Shirish Andhare

India is currently in a vital phase of its infrastructure, energy, and mobility development, which nicely sets the stage to leapfrog current or existing practices. According to sources, an estimated 40% of its population will be living in urban areas by 2025, and they will account for over 60% of the consumption of resources.

Moreover, transportation in India is highly fragmented, disorganised across modes with poor infrastructure, congestion and low public transport density. Riders and drivers have to undertake multiple challenges daily such as lack of availability, reliability, quality, consistent pricing, safety etc.

To know more about the current space and transportation in India, Analytics India Magazine caught up with Shirish Andhare, Director, Program Management, Uber India and South Asia.


“Our goal is to change the Indian mindset and help people replace their car with their phone by offering a range of mobility options — whether cars, bikes, autos or public transport — all in the Uber app. By putting more people in fewer cars, we have the potential to build smarter and more liveable cities,” said Andhare.

Using technology, Uber India has been trying to transform the mobility landscape and change how people move around in the country by playing a transformational role in addressing pain points for riders and adding efficiency into the system.

With its multi-modal vision for mobility in India, Uber wants to make a variety of options available to help commuters get where they want to go at a price point that works for them. To that end, Uber has announced partnerships across airports and Metros in Delhi and Hyderabad to provide last-mile connectivity.

Transformation of Uber India

Andhare said that about seven years ago, Uber launched in Bangalore with just three employees. Today, Uber India has tech teams across Bangalore and Hyderabad. It continues its exponential growth journey, focusing on facilitating affordable, reliable and convenient transportation to millions of riders and livelihood opportunities for hundreds of thousands of driver-partners.

The company has doubled its engineering team in India this year. The R&D teams located in Hyderabad and Bangalore continue to grow and currently host over a dozen global charters including rider, maps, customer obsession, infrastructure, money, and eats. These teams are driving global impact for Uber based on several India-first product innovations.

Andhare said, “With over a billion trips in India and South Asia and counting, along with a large driver-partner base, we are focused on winning hearts and minds in the market. We plan to do this by doubling down on products that can solve for low network connectivity, congestion and pollution, as well as enable multiple price points with a varied set of offerings. Uber’s success is deeply tied to our success in India, we are in a strong position in India, and we are committed to serving the market.”

He added, “As we gear up to deliver the next billion rides in the region, we remain focused on providing convenient, affordable rides to millions of riders and stable and sustainable earning opportunities to driver-partners.”

Deep Tech At Uber

Andhare stated that technology provides an incredible opportunity to improve road safety in new and innovative ways before, during and after every ride. At every step, Uber is maximising the usage of technology to bring transparency and accountability through features such as two-way feedback and ratings, telematics and GPS, among others. These will have a positive impact on furthering trust and empathy between riders and driver-partners.

Uber’s Engineering Centre in Bangalore and Hyderabad are engaged in cutting-edge basic and applied technology solutions in areas that include rider growth, driver growth, digital payments, mapping, telematics, vehicle tracking/safety and fleet management, and the Uber core experience.

Some of the India-first innovations include the in-app emergency feature, arrears handling, driver inbound phone support, cash trips, Uber Rentals for longer trips and UberGO. The company is investing heavily in research and resources.

Some of the technologies used at Uber include computer vision, automation, Machine Learning(ML), Optical character recognition (OCR), and Artificial Intelligence (AI) techniques, NLP etc. These technologies are used in areas such as onboarding restaurant menus onto Uber marketplace, enabling earnings opportunities and more. It is also crucial to perform other tasks such as better routing, matching, fraud detection, document processing, maps editing, machine translations, customer support, and more.


#people #ai at uber #ai used in uber #interview with shirish andhare director program management of uber india #shirish andhare interview #technologies at uber india #uber ai #uber director interview #uber india #uber india ai

Ruth  Nabimanya

Ruth Nabimanya

1620633584

System Databases in SQL Server

Introduction

In SSMS, we many of may noticed System Databases under the Database Folder. But how many of us knows its purpose?. In this article lets discuss about the System Databases in SQL Server.

System Database

Fig. 1 System Databases

There are five system databases, these databases are created while installing SQL Server.

  • Master
  • Model
  • MSDB
  • Tempdb
  • Resource
Master
  • This database contains all the System level Information in SQL Server. The Information in form of Meta data.
  • Because of this master database, we are able to access the SQL Server (On premise SQL Server)
Model
  • This database is used as a template for new databases.
  • Whenever a new database is created, initially a copy of model database is what created as new database.
MSDB
  • This database is where a service called SQL Server Agent stores its data.
  • SQL server Agent is in charge of automation, which includes entities such as jobs, schedules, and alerts.
TempDB
  • The Tempdb is where SQL Server stores temporary data such as work tables, sort space, row versioning information and etc.
  • User can create their own version of temporary tables and those are stored in Tempdb.
  • But this database is destroyed and recreated every time when we restart the instance of SQL Server.
Resource
  • The resource database is a hidden, read only database that holds the definitions of all system objects.
  • When we query system object in a database, they appear to reside in the sys schema of the local database, but in actually their definitions reside in the resource db.

#sql server #master system database #model system database #msdb system database #sql server system databases #ssms #system database #system databases in sql server #tempdb system database

Evelyn  Lucy

Evelyn Lucy

1619007362

Top 3 Best Uber Clone Software of 2022

As you all know, Uber is the famous and fastest-growing on-demand taxi service provider. They also provide peer to peer ridesharing and food delivery services. The business model of Uber has transformed the traditional business into digital. It’s all because of the advancements in technology. 

The revenue generated from the online taxi industry is expected to grow tremendously, with an annual growth rate of 3.1% by 2023. Many entrepreneurs and startups are utilizing this opportunity to launch the taxi-booking service app. There are many clone app software now available in the market. In this blog, we will see the highlighted 3 best Uber clone software of 2022. 

Let’s take a look into the working model of the taxi booking clone software

Step 1 - The users install the on-demand taxi-booking app and sign up/register with it using email ID, phone number, or social media.

Step 2 - They have to give location access or manually enter their location

Step 3 - They can search for a cab from the available Cab types. Meanwhile, they can view the fare estimation for all the cab types. It is up to the user's choice to select the cab type based on their convenience.

Step 4 - Upon acceptance of a ride request from the driver, the user can see the driver's details, including the profile picture, rating, and vehicle details. As the app is integrated with the GPS tracking system, the user can check the location status of the driver.

Step 5 - The user can make online payments (credit/debit card and PayPal or other popular payment gateways) or cash payments. 

Step 6 - Once the ride gets completed, the user can give a rating/review to the service if wished. 

Best Uber clone software:

ZippyPro - A cost-effective taxi booking app

ZippyPro is a Uber clone taxi-booking app with top-notch features. This clone app is available on both Android and iOS. This app is designed and developed in such a way that users feel more convenient in availing themselves of the taxi service.  

The Quick Registration allows the users to sign up with the app with ease. Upon selecting the cab type, they can see the estimation of fare before confirming the taxi service. They can even schedule the service at their convenient time. This app provides a coupon system so that the users can add money to their in-app wallet and it can be used when they avail the ride service.  

Services offered: 

  • Cabs for every pocket

The cab type differs for each penny. Their offerings include Sedans to Luxury cars that suit every user.

  • Cashless rides

Users can make easy payment via online by adding their debit or credit card details to the app. 

  • In-cab entertainment

Passengers (users) enjoy playing music and watching movies/video while travelling. They can even get connected with the Free WiFi. 

  • Safer rides

The emergency alert and Live tracking features in the app makes the ride safe and secure.

Features of the ZippyPro app:

uber clone software

Driver app features

  • Vehicle details
  • Document verification
  • Payout method
  • Driver’s availability
  • In-app call

Rider/passenger/user app features

  • Multiple vehicle options
  • Fare estimation
  • Live tracking
  • Ratings and reviews
  • Ride history

ZippyPro was offered by UberLikeApp, an Uber clone software provider. They develop taxi-booking apps similar to Uber with intricate features. They offer hassle-free application functionality that is compatible with both the Android and iOS platforms.

CabZify 

CabZify is a clone of Uber. It is developed by APPiLAB Technologies, a clone app development company. This clone app is available on Android and iOS. This app is created in such a way that the users can view and book a nearby taxi. This app allows the users to give feedback upon completion of every ride. 

Features included

  • Fare estimation
  • Selection of cab type
  • Social media login
  • Edit your location

Fox-Taxi Rider - An on-demand taxi-booking clone app

Fox-Taxi Rider is offered by White Label Fox, an on-demand app development company. They offer a white-label taxi solution that is customizable. This taxi-booking clone app allows users to book a cab with ease. 

Features included:

  • Login & Registration
  • Profile
  • Select car type
  • Payment mode
  • Schedule ride
  • Feedback

Wrap up

I hope, this blog will be useful and informative to you. If you are interested in launching the taxi-booking app in 2021, approach a clone app development company. A clone app solution enables you to launch an app like Uber in a moment. Sow the seed of investing in the Uber clone app solution and reap the benefits of earning profit. 

 

#taxi booking clone software #uber clone taxi-booking app #uber clone app solution #uber clone software #uber clone #best uber clone

Cameron  Adrian

Cameron Adrian

1617801368

How Can I Find the Best Uber Like App Source Code?

Uber like app source code empowers you to create a taxi-booking app depending on your business requirements. It facilitates you to incorporate the essential features along with the innovative/advanced features based on the changing market trends. It does not need much time to launch the app on Android, iOS, or both.  

Why Are Entrepreneurs Investing In The Uber Clone App Source Code?

The ride-hailing industry has become a boom in recent times. Furthermore, Uber has acquired popularity among customers. Garrett Camp and Travis Kalanick founded Uber in 2009. Uber, the popular taxi service, follows an effective business model that benefits both the drivers and the customers who wish to ride. 

They do not own cabs, taxi depots, and professional drivers. Instead, any professional driver can be part of Uber once they register with their app. So, anyone can connect with them using the taxi app and accept the customer's ride request.  

People who avail the taxi service around the world increases day by day. Because, it is convenient for them as they book a cab using the Uber app with just a few taps. Apart from that, they have multiple options to pay. They prefer either cash payment or cashless payment. Online payments include credit card, debit card, Apple Pay, PayPal, Android Pay, Google Pay, etc.

Are you planning to jump into the ride-hailing industry with the Uber like app? So, preferring the Uber like app source code for building the taxi-booking app like Uber is the right choice. On the counter side, developing an app from scratch requires more time.    

Expand Your Business With The Uber Like App Source Code

Before entering the taxi booking service business, you have to spend some quality time in market research and frame a successful business plan. Based on your target audience’s interest, you can incorporate some new features into your app to reach a wider audience. Because it is completely customizable.

Uber clone app source code will let you to launch your taxi app on Android and iOS. Thus, it improves the customer base. Being the "ready to use solution," you can launch your app with ease. 

What Is Included In The Uber Clone App Source Code Package?

In general, the source code allows crafting the app depending on a business needs. The Uber clone app source code package comes with the following modules. Let us see these along with the essential features to be incorporated in the respective modules.

User App

  • Social registration
  • Payment by cash
  • Ride review
  • Book now

Driver App

  • Route optimization
  • Document submission
  • Auto offline
  • Wallet

Admin Dashboard

  • Add city
  • Geo-location details
  • Service type
  • Earning statistics

Dispatcher Console

  • Manage profile
  • Place requests
  • Sorting
  • Bank details

Partner Console

  • Sort data
  • Manage vehicles
  • Check earnings
  • Manage requests

Important Points To Consider When Developing Your Taxi App With The Uber Clone App Source Code

If you want to create an efficient app with the source code, consider the following points.

  • Upon analyzing the market research and understanding your target audience, you have to frame a unique business plan.
  • Search for features that suit your business idea.
  • Customize the app solution with your business requirements.
  • Testing your app for technical and logical errors before app deployment.
  • Launching your app on the platform you choose so that customers avail the taxi-booking service with ease.

Bottom Line

As we conclude, the Uber like app source code is customizable that empowers you to launch your own taxi app in a moment. We at UberLikeApp, cater for you with a world-class app solution at a reasonable price. There is no wonder that investing in the Uber clone app source code has numerous advantages like high visibility, increased profit, and much more.

#uber like app source code #uber app source code #uber clone app source code #taxi app source code #uber clone app source code