Need information regarding OBD scanner - obd-ii

Can anyone help me with the query?
I want to know the difference between Basic and Advanced Fault codes in OBD2 scanner. Also want to know what are the fault codes comes under basic and advanced faults?

Related

The specific steps to use Twilio to enable a landline for texting (TTL)?

I am seeing porting options but I know that is no longer needed. I know based on what eztexting and others are offering.
I am looking for documentation or someone to speak with who has made this happen. I appreciate any help.

Is there any way to authenticate customers with google or facebook in Shopify?

I wanted to add Facebook and Google login to the customer login page or in sign up in Shopify so tell me how I can implement it?
I will assume by the type question you made that you are new to programing. I apologize if that is a wrong assumption.
Do you want to implement it? Does that mean you want to develop your own plugin from scratch? Then you have to learn how to make Shopify extensions first. You should probably start with "hello world" types of example and only then try to approach something complex like 0auth for customers.
If you want it just working here somebody's else implementation:
https://apps.shopify.com/oxi-social-login?surface_detail=store-design-customer-login&surface_inter_position=1&surface_intra_position=4&surface_type=category
As you notice, it's not trivial to do it and they can sell this feature at a price and have happy customers. Yet another hint that's it's not feasible to start learning programing on complex projects and skipping the first baby steps and the necessary learning steps.
I'm including a paid extension as my recommendation because you didn't specify anything in your question and therefore paid extensions might be valid solution for you.

Azure Portal metrics extraction for external use

Having scoured the internet for a viable solution I have come up empty handed. I have concluded however that there is no current API for extracting the raw data from the Azure Portal Application Insights and so wondered if anyone else out there has managed to achieve this?
My quandary is, I am wanting to display some of the raw data on a dashing dashboard widget based on some logic and without the basic url that gives me the JSON, I am at a loss.
Any help would be greatly received, even if it is a conclusive, it cannot be done.
Thanks in advance, Mark
Currently, the only method to extract raw data from Azure Application Insights is to export the blob files and extract it from them. There are discussions on Visual Studio forum where people are asking for something simpler to be implemented. Who knows, it may happen.

How to database iOS app data and display it on a webpage

First time post here, so forgive me for any bad etiquette/format.
I will preface by saying:
I have (over the last few months) been developing an iOS app for work. To be more specific, I am developing an inventory app to track bar inventory (liquor, beer, wine, etc). I can give more specifics on request if needed. I have most of the functionality done, only a couple more things I would like to implement. Eventually I will be porting it to Android as well.
At the moment, I have the model objects being archived to the local filesystem for saving and loading of data. However, my goal would be to database the model objects with the ability to display the information on a webpage. My logic is that no matter where the user is, he/she will be able to sign in to a service using a username and password, and view correctly formatted current/past inventories online. This is to allow the ability for a bartender to record the inventory, and have the bar manager view the inventory instances without having to have the physical device that recorded the inventory in his/her possession.
So here is my question:
Without being too general, what kind of service would I need to pull this off? I have a good amount of relevant front-end experience, specifically with iOS, Objective-C, HTML and CSS. However, I have ZERO experience on the back-end. I have researched around the internet, and I am aware of things such as cloud databases, web hosting and MySQL, etc. However, I cannot seem to find a definitive answer without asking my specific question. I suppose I would just like to be pointed in the right direction before investing money and time into a service that may prove useless to my cause.
Any resources and help would be greatly appreciated. Thank you!
There's not a definitive answer and you have a lot of options.
For me, the simplest is to set up a server with a database incorporated (mysql for example) and with a web service (written in PHP for example) that manages the database and queries on that.
Online you can find tons of guide on how to write a script in PHP that manages a database:
http://www.freewebmasterhelp.com/tutorials/phpmysql/2
For the iOS part you can follow also this guide:
http://www.techrepublic.com/blog/software-engineer/create-your-own-web-service-for-an-ios-app-part-one/
Good luck!

iOS - Tackling Syncing with MySql

I am wanting to learn about syncing data in my iPhone app with my MySql database.
I have nto done to much reading up on it yet, as it is pretty hard to find concrete information on it.
What is the best route to explore for this?
Do I go down this route? ASIHTTPRequest Setup Instructions
My Question really is, where do I go to find out about this. I appreciate it is a big topic and I don't really want to go down a wrong route thinking it is the right one.
Any hints and tips are appreciated.
I'd go with a REST interface for the server that will host the MySQL database, and RestKit with CoreData support (Managed Object Loader) on iOS.
But this is really a very broad question, and the answer depends on a lot of factors (availability of skills and tools, access to server, taste, philosophy, size of project, accuracy and timeliness of synchronization).