What is the point of Location Services?

I have an iPod Touch and some Apps keep asking me to switch this on. What is the point and will it drain my battery?
Thanks

Having Location services turned ON enables the Apps to determine your location. You can restrict access to only those Apps that you wish to have it (See Settings > Location Services). Some useful ones might be Google Earth, Maps, news sites, etc.
Location services should not significantly affect battery life.

Similar Messages

  • My wifes iphone was too full to record a video so I upgraded her cloud storage to 20g and did mine at same time. Cloud is showing 15g free storage butshe still cannot take any mor photos as "not enough memory" What is the point of paying for the extr

    My wifes iphone was too full to record a video so I upgraded her cloud storage to 20g and did mine at same time. Cloud is showing 15g free storage butshe still cannot take any mor photos as "not enough memory" What is the point of paying for the extr

    Hello Pushtheriver,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning iCloud storage issues:
    Get help using iCloud storage
    This may also help:
    Understanding iOS device capacity
    You can sync and download many different types of content on your device. Some types of content (such as music and videos) typically take more space than others (such as notes and books). The amount of space taken by an app depends on the app's purpose; complex or graphically intense apps usually take more space than simpler apps.
    If your device is near its capacity, you can remove some of the less used content to make room for more.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • What's the point of warranty?

    I am a student coming from Hong Kong  to London for postgraduate study. Before I left Hong Kong, I decided to buy a netbook for my lecturers in the UK. Lenovo s10-2 was chosen because the version available in HK comes with 6 cell battery with international warranty and Lenovo Protection Service (against accidental damage).
    This is the first Lenovo machine for me. All was well and I was starting to appreciate Lenovo. Suddenly, the LED screen started to flick with white lines moving across the it, just two weeks after I bought it from Hong Kong.
    Yesterday, I called the UK support line who initially suggested replacement (because the purchase is last than 30-day old). However, when the agent found out that I bought the machine in Hong Kong, he said I could only get it repairs. Fair enough.
    I packed the netbook this afternoon ready to ship it to the repair center. Being not sure about whether or not my proof of purchase was needed, I called the support line again. This time, the agent gave me a "friendly warning" or maybe a management of my expectations.
    I was told that Lenovo believes that there is a 99.5% chance that these type of problems are due to “internal damages" caused by users! I was also advised that sending the machine in for repairs risk myself getting into paying 230 pounds (pretty much the purchase cost) to get the LED screen fixed because it is likely to be not covered by warranty. On top of that, I would have to pay 65 pounds even if I want my netbook back after inspection without getting fixed because again, 99.5% chance that "damages by users" would be concluded!
    What's the point of warranty? Totally unacceptable. Any thoughts? Should I take the risk?
    I only got the machine just over two weeks ago and used for less than 10 times!

    seblee,
    This bears a bit of looking into to provide you the best answer.   Sometimes, the accidental damage policies are only valid in the home country, and I would like to check.  If that were to be the case, you would have replacement or repair options in HK, but standard warranty terms would likely apply in UK.
    Your situation sounds exceptional, and I'd like to look into this and see what can be done.
    Can your send me a private message with your contact information and the serial number from the bottom of the unit?
    Sorry that you are having this trouble.  Will see how we can help.
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • JWSDP and J2EE Integration: Doesn't work. What's the point?

    My problems involve the integration of JWSDP and J2EE as described in these two documents:
    http://developer.java.sun.com/developer/technicalArticles/WebServices/wsj2ee/
    http://java.sun.com/j2ee/documentation/windows_guide.html
    It looks like a long one, but it�s really not that bad. All comments are appreciated.
    I�ve numbered each line-paragraph-section for easy reference later.
    (1) My ultimate goal is to setup a website that displays data from a database. I will use Java, Apache, Oracle, and whatever else I need to create a website that uses servlets, JavaServer Pages (JSP), and JDBC.
    (2) I�ve got four Pentium III computers:
    1. Windows 2000 Server to be the web server (MyWebServer, IP = 10.10.1.1).
    2. Windows 2000 Professional to be the database server (MyDatabaseServer, IP = 10.10.1.2).
    3. Windows 2000 Professional that I use to develop and test (MyDeveloperPC, IP = 10.10.1.3).
    4. Windows 2000 Professional that I use as a client to connect to the website (MyClientPC, IP = 10.10.1.4).
    (3) On MyWebServer I installed the following:
    Java 2 Standard Edition (J2SE)
    Java 2 Enterprise Edition (J2EE)
    Java Web Services Developer Pack (JWSDP)
    The JWSDP tutorial
    Apache HTTP Server
    (4) The files I downloaded and installed are as follows:
    j2sdk-1_4_0-rc-win.exe
    j2sdkee-1_3_1-win.exe
    jwsdp-1_0-ea1-win.exe
    jwsdp-1_0-ea1_01-tutorial.zip
    apache_1.3.23-win32-x86-no_src.exe
    (5) After installing these products, I set the environment variables as follows:
    JAVA_HOME = c:\j2se
    J2EE_HOME = c:\j2ee
    JWSDP_HOME = c:\jwsdp
    Path = c:\j2se\bin;c:\j2ee\bin;c:\jwsdp\bin; [and other previous statements]
    (6) I checked to see that Apache is running as a service. It is.
    On MyWebServer I start Tomcat and J2EE. Both start properly and are operating simultaneously.
    (7) From MyClientPC I open Internet Explorer and in the address box I type:
    http://10.10.1.1
    This displays the page c:\ApacheHTTP\apache\htdocs\index.html.en (The Apache default server installation page.)
    (8) I then enter this address in IE:
    http://10.10.1.1:8080
    This displays the page c:\jwsdp\webapps\root\index.html (The default JWSDP page).
    (9) I then enter this address in IE:
    http://10.10.1.1:8000
    This displays the page c:\j2ee\public_html\index.html (The J2EE 1.3 Default Home Page).
    (10) So far so good. Now I want to test JWSDP as a container for JSP pages.
    (11) I use ant to build the converter app found in the tutorial examples (in folder c:\jwsdp\�\tutorial\examples\gs). I then deploy the converter app to the c:\jwsdp\webapps\gs folder.
    (12) From MyClientPC I open Internet Explorer and in the address box I type:
    http://10.10.1.1:8080/gs
    The converter app works perfectly.
    (13) To eliminate the need to enter the port number, I create a link from the Apache default server installation page to the converter app. From MyClientPC and enter this address into IE:
    http://10.10.1.1
    I then click on the link to the converter app and it works perfectly.
    (14) Question: Is this the best way to display JSP pages without having to enter the port number?
    (15) Now it�s time to integrate JWSDP and J2EE as described in these two documents:
    http://developer.java.sun.com/developer/technicalArticles/WebServices/wsj2ee/
    http://java.sun.com/j2ee/documentation/windows_guide.html
    (16) After I complete this integration I cannot start both Tomcat and J2EE at the same time. This makes sense because they both share port 8080.
    I start Tomcat.
    (17) From MyClientPC and use Internet Explorer to test the various relevant addresses. Everything works the same as it did before except this one:
    http://10.10.1.1:8000
    The page cannot be displayed. The J2EE default home page is not displayed, which makes sense because the J2EE port is no longer 8000; it has been changed to 8080.
    (18) Now I shutdown Tomcat and start J2EE.
    From MyClientPC and use Internet Explorer to test the various relevant addresses:
    (19) http://10.10.1.1:8080
    Displays the JWSDP default home page.
    (20) http://10.10.1.1:8080/gs
    The page cannot be displayed. The converter app no longer works.
    (21) From MyWebServer and use Internet Explorer to test localhost:
    http://localhost:8080
    This displays the J2EE default home page.
    (22) Question: Why does localhost give me a different page than the IP address?
    (23) Question: What was the point of integrating JWSDP and J2EE?
    (24) I want to get the converter app working, so I create a .war file and attempt to add it to the J2EE deploytool (see the two integration documents listed above at section 15.) I create the .war file following the instructions in the JWSDP tutorial:
    http://java.sun.com/webservices/docs/ea1/tutorial/doc/WebApp3.html#64606
    (25) I change to the c:\jwsdp\�\tutorial\examples\gs\build folder.
    I then type:
    jar cvf converter.war .
    A .war file is created.
    (26) I open the deploytool: File, New, Application, and I name it �converter�.
    I attempt to add the .war file: File, Add to Application, Web WAR.
    (27) When I attempt to add the converter.war file I get this error:
    �converter.war does not appear to be a valid web JAR.�
    I tried a few different attempts, all with the same result. I�m stuck.
    (28) I ask again, What was the point of integrating JWSDP and J2EE?
    (29) If this is the preferred configuration, how do I display my JSP pages like the converter app?
    Please help!!!

    The JWSDP tutorial says to be in the �build� folder of the example when issuing the jar command to create the .war file. The build folder is created when I run the �ant build� command.
    Attempt 1 from the command prompt in folder c:\jwsdp\tutorial\examples\gs\build>
    I typed this command:
    jar cvf c:\jaxmservices\converter.war .
    In this case I directed the .war file to be placed in a different folder as you suggested. Here�s the output:
    added manifest
    adding: index.jsp(in = 921) (out= 525)(deflated 42%)
    adding: WEB-INF/(in = 0) (out= 0)(stored 0%)
    adding: WEB-INF/classes/(in = 0) (out= 0)(stored 0%)
    adding: WEB-INF/classes/Converter.class(in = 582) (out= 358)(deflated 38%)
    Didn�t work. Same error as before.
    Attempt 2 from the same folder:
    I typed this command as you suggested (I tried it with and without the final dot):
    jar tvf converter.war
    Here is the output:
    java.io.FileNotFoundException: converter.war (The system cannot find the file specified)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:103)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at sun.tools.jar.Main.run(Main.java:185)
    at sun.tools.jar.Main.main(Main.java:904)
    I tried a few other variations on these attempts with no luck. I�m stuck.
    I�m attempting to create a .war file out of two files: index.jsp and converter.class.
    Now that I�ve integrated JWSDP and J2EE, is there some other way that I can run the converter app instead of a .war file and the deploytool? In other words, if I go back to using ant to build and deploy converter, where would I deploy it so that it will work with J2EE?
    By the way, it doesn�t have to be converter. I�d be happy if I could get any JSP page to work in J2EE after the integration.
    Forever grateful,
    Logan

  • What's the point in buying a new MacBook?

    Hi all,
    Recently I went with my iBook G4 to the Apple store to troubleshoot a small problem, but they were unable to help me as after only 7 years, the machine was rendered obsolete and they didn't feel obliged to help. My iBook recently died and I felt like a part of me was missing.
    So my question is, what is the point of buying myself a brand new MacBook Pro if in 5 or 6 years, it will be obsolete? I want a Mac that will last me wherever I go for a long time before it finally dies. I've realized that I need to put PowerPC computers out of the question, but will intel processer Macs last longer than PowerPC processors?
    For the record, I don't want to switch to Microsoft as I find them difficult and this isn't a crack at Apple.
    Any answers are very appreciated,
    Thomas.

    With Intel based Macs the hardware will not become obsolete as fast as PPC based Macs did, but the operating system and/or applications used might.
    That does not mean that it will stop working, just that you won't, in a few years' time, be able to get the latest bells and whistles.
    Officially, support from Apple ceases after seven years - but that does not stop the Macs working!
    Vintage and obsolete Apple products:
    Obsolete products are those that were discontinued more than seven years ago. Apple has discontinued all hardware service for obsolete products with no exceptions. Service providers cannot order parts for obsolete products. These include ALL G4 and G5 models.
    http://support.apple.com/kb/HT1752?viewlocale=en_US

  • What's the point of iCloud

    Unless I misunderstood, I have to pay to get all my music to be pushed to all my devices (iTunes Match) and I have to buy iWork for my iPhone (even though I already have it on my Mac) in order to get those documents pushed to the cloud. (It makes more sense to stick with iWork beta!)
    I feel like Apple is nickling and diming its loyal customers.
    So, essentially, iCloud is useless! I thought it would be a great way to free up space on my hard drive; I could just store my documents and music in the cloud.
    My question is: what is the point of iCloud? Honestly, what does it do? It just pushes stuff between your devices? I genuinely don't understand the point of it.

    capaho wrote:
    Julian Wright wrote:
    Here we go... Yet another 'loyal' Apple customer who seems to think that because they've bought one Apple product, Apple should forever let them have new products and services for free.
    The real problem here is that Apple has no long-term commitment to support anything it makes.  It wasn't that long ago that MobileMe (which was not free) came into existence and now it is already being dumped in favor of iCloud, which lacks the iDisk, remote access to Time Capsules and personal websites.  It's a step backwards and a disservice to those of us who were using some or all of those MobileMe features. 
    Apple's product cycles, both hardware and software, are too short to be of use to anyone but those who like to play.  Forget about trying to run a business from Apple products these days.
    That is exactly right.
    In my own small home network we 7 Macs all being synced through MobileMe. Only two of these Macs can run Lion and doing so would mean no longer being able to use applications that our clients still use so it would mean loss of these clients. Not to mention the cost of replacing at least 5 of or Macs.
    Then there are businesses that have dozens of Macs or sometimes even hundreds of Macs along with gigs and gigs of data that Macs running Lion can't access. So even ignoring the huge cost of replacing al these Macs with newer Macs there is still the issue of Macs running Lion not being able to run needed applications.
    With MobileMe one could buy a newer Mac running Lion and it would still be able to sync with older Macs but now it is all or nothing.
    At least one design shop that I do work for is now replacing their Macs with Windows machines since these computers can run older software and also be able to sync with iOS devices using iCloud. At least a dozen other places that I do business are considering doing the same thing.

  • What's the point of a contract when Verizon can cancel it any time?

    I live in an apartment and have a two years contract with Verizon Fios which I signed back in Jan of this year. There is some issue in my apartment unit and my apartment management is transfering me to a ground floor unit in the same building. When I initiated the service transfer request with Verizon, they wanted me to drop my two year contract and sign a new two year contract with a significantly higher monthly fees. What's the point of two year contract that I signed back in January? 

    Technically you broke the contract by moving.

  • What's the point of redo logs?

    Why does Oracle bother writing everything to redo logs? If it's going to write data changes to the disk, why not just write them once to the data files and be done with it? What's the point of doing it twice? And if it's a redundancy thing, why not mirror the data disks?

    Hemant K Chitale wrote:
    How would you backup a database while it is in use ? You can't lock all the datafiles to prevent writes to them. Yet, transactions may be updating different blocks in different datafiles even as the backup is in progress. Say your backup starts with datafile 1 (or even datafiles 1,2,3,4 in parallel) at time t0. By time t5, it has copied 20% of the datafile to tape or alternate disk backup location. Along comes a transaction that updates the 100th block (somewhere within the 10-11% range) of datafile 1 and also the 60th block of datafile 5. Meanwhile, the backup continues running, already having taken a prior image of the 100th block and not being aware that the block has been changed. At time t25 it completes datafile 1 (or datafiles 1,2,3,4) and starts backing up datafile 5. Now, when it copies the 60th block of datafile 5, it (the backup utility) doesn't know that this block is inconsistent with the backup image of the 100th block of datafile 1.
    Instead of 1 transaction imagine 100 or 1000 transactions occurring while the backup is running.
    Surely, Oracle must be able to regenerate a consistent image of the whole database when it is restored ?
    That is what the Redo stream provides. The Redo stream is written to Archivelogs so that it can be backed up -- no Archivelog file is "in flux" (particularly if you use RMAN to backup the Archivelogs as well !).
    Had Oracle been merely writing to the datafiles alone, without a Redo stream, there is no way it could recreate a consistent database -- whether after Crash Recovery OR after Media Recovery.Interesting point about how redo logs facilitate backups. So what you're saying is that the redo logs help keep the data in the actual data files in a consistent state by only writing full transactions to them at a time. Presumably Oracle will either write out the redo log data to the data files before a backup or will at least prevent the redo logs from writing to the data files during a backup. I always wondered how databases got around that problem of keeping the system available for writing during a backup. I wonder how SQL Server does it.
    Hemant K Chitale wrote:
    Now, approach this from another angle. A database consists of 10 or 100 or 500 datafiles. You have 10 or 100 or 1000 sessions issuing COMMITs to complete their transactions, which could be of 1 row or 100 rows or 1million rows, each transaction of a different size. Should the 1000 sessions be forced to wait while Oracle writes all those updated blocks to disk in different datafiles -- how many blocks can it write in "an instant" ?
    But what if Oracle manages to write much less information -- the bare minimum (called "change vectors") to re-play every transaction to a single file serially ? That would be much faster. Imagine writing to 500 datafiles concurrently, having to open the file, progess to the required block address and update the block, for each block changed in each file VERSUS writing much lesser information serially to a single file -- if the file is full, switch to another file, but keep writing serially.As to your second point, I don't really have a good enough understanding about the format of redo logs vs. the data files to follow you totally. Are you saying that it takes more time to write to the data files because you have to find the proper place in the B-Tree before you can write to it? And that doing that is slower than just opening the redo log and always appending new information to the very end? Maybe so, but it seems like all transactions having to write to a single redo log in serial would slow things down since there would be a ton of contention for one file. Whereas with the data files, you could potentially have several transactions writing to different files simultaneously (provided you hardware would support doing that). And it seems to me like a change vector would contain a lot more information than a field value, but, like I said, I'm not really familiar with the format.

  • What's the point of updates - if..

    Why do the upgrades tend to mess up my other applications? DVD Studio Pro - Bluetooth. I just feel what's the point of getting upgrades now. I did the Pro Application Support application which did take care of my DVD SP - however shouldn't upgrades be exactly that - UPGRADING - not have causes more problems. Taking time away from the work that needs to be done. Sorry - just had to rant a bit.

    If you do a search on these forums it would probably boil down to doing these things.
    Permissions Repair
    Whenever a program that's installed places items into the /Library folder and Applications folder, it often has to amend permissions in order to do so which is why authenticating as an 'Admin' user is required so that it's able to carry out these amendments and place files where they should be and have their correct permissions assigned. Sometimes this change is not always corrected and may affect other programs operation. To help reduce side affects like normal User account being able to change and delete programs in the 'Applications' folder. Disk Utility located in /Applications/Utilities has a 'Permissions Repair' routine which ensures that the proper permissions are assigned based on their package rules.
    Cron Scripts
    These are scripts which the OS usually initiates itself, but performing them manually by using the Terminal can be beneficial.
    Good programs worth looking into are, Onyx available at www.macupdate.com
    Running it's maintenance scripts means you don't have to go into the Terminal manually and it does it's stuff very well, I've used it since 10.2 and never had a problem with it, it's updated regular, it's free and better than similar programs doing the same both free and those that charge.
    Safe Boot
    Starting up the computer after the chime and holding the 'Shift' key down, runs the fsck command, which verifies and fixes any problems with a startup volume, though not all, it also deletes the font cach and databases, so some issues with fonts can be helped by doing this, also if you seem to be getting conflicts in software, this can help to make sure the Apple components are working fine as it only loads the minimum 'kexts' and drivers so the computer operates, almost the equivalent in OS9 but not exactly.
    There's lots more but doing these few things can help keep a system in shape, especially if no time was spent doing it beforehand. A note though, doing Permissions repair is not part of a 'Regular' maintenance routine, if you see message like 'Do not have permission' then it's worth doing it then.
    Mark

  • What is the point of Apple TV anyway?

    I must be missing something but I don't see the point of the Apple TV:
    If one has to convert all video, presentation and other material to run on Apple TV. What is the point?
    All these converted videos, etc. don't only take up time to convert but take up unnecessary disk space too. What is the point?
    Surely Apple will make future versions of its DVD Player, iLife, and iWorks, especially Keynote, compatible with Apple TV so that one can stream DVD's, Keynote presentations, etc. directly to a TV via Apple TV without having to "rip" ones DVD's and convert them or convert all ones presentations into QuickTime. Otherwise, what is the point?
    As for movies on iTunes tell me what proportion of the population buy their movies? Most movies are only worth watching once, if that, so most of us rent them for far less than the cost of buying. You can't rent movies for Apple TV. So, what is the point?
    For teaching situations it would also make sense for Apple to make it possible to "stream" the Mac desktop, including running applications to a large screen TV to allow it to be used as teaching tool in lecture theatres, classrooms, etc. I say it again, what is the point?

    If one has to convert all video, presentation and
    other material to run on Apple TV. What is the
    point?
    One doesn't have to convert all video. A great deal of compatible MPEG-4 formatted content (including MPEG part 10, a.k.a. H.264) is available from diverse sources, including Apple's iTunes Music Store. One interesting source you may not be aware of is video podcasts. Just as audio podcasts have become popular as a distribution format for audio content, so too now is the video version. An easy way to sample what is available is through the "Apple TV Showcase," accessible from the Podcast section of iTunes Music Store.
    All these converted videos, etc. don't only take up
    time to convert but take up unnecessary disk space
    too. What is the point?
    Nothing says you have to keep multiple versions of this content on your hard drive(s). In fact, H.264 is the current state of the art in video compression, offering higher quality vs. file size than any other codec. Most people find that even for HD content up to 720p24, Apple TV's 5 Mbps limit produces either no visible compromise or so little that the file space saved is well worth the tradeoff. Moreover, the number of standard DVD's (which use MPEG-2 compression) that contain content that can't be re-compressed in H.264 at <5 Mbps with no losses at all are few & far between.
    <div class="jive-quote">Surely Apple will make future versions of its DVD
    Player, iLife, and iWorks, especially Keynote,
    compatible with Apple TV so that one can stream
    DVD's, Keynote presentations, etc. directly to a TV
    via Apple TV without having to "rip" ones DVD's and
    convert them or convert all ones presentations into
    QuickTime. Otherwise, what is the point?
    Only Apple can say what Apple will do, but remember that there are a number of issues involved here, not the least of which is DRM & the legality of providing software that defeats protection schemes, that may prevent it from doing what consumers would like it to do.
    As for movies on iTunes tell me what proportion of
    the population buy their movies? Most movies are only
    worth watching once, if that, so most of us rent them
    for far less than the cost of buying. You can't rent
    movies for Apple TV. So, what is the point?
    Not that long ago, most industry pundits thought the consumer market for buying commercial releases of movies or TV shows was insignificant -- that for instance consumers would prefer to see movies in theaters & have no interest in buying them afterwards, or that they would only be interested in rentals. I don't know if you have noticed, but they were wrong ... to the tune of billions of dollars in revenue per year that often exceed the revenue from theatrical releases.
    Some of these same pundits more recently predicted that selling TV shows by the episode, particularly at less than HD resolution, would have no marketing potential -- after all, why buy something you could watch or record for free? Once again, they were wrong. It turns out that some people just like collecting episodes, others are eager to buy a missed episode of a favored show, still others are willing to pay for selected cable content but not for cable TV, & so on.
    At the same time, bricks & mortar rental chains like Blockbuster (the world's largest) have seen profits plummet, prompting ever greater reliance on other products, including in-store sales & their own online services, still oriented toward rentals. Other retail giants like Wal-Mart have tried online rental services, too. So far, all these rental-oriented services have yet to exceed "also ran" status compared to Apple's success.
    Put simply, the point is renting is becoming less popular & ownership --particularly when it is comparatively easy & cheap -- more popular.
    For teaching situations it would also make sense for
    Apple to make it possible to "stream" the Mac
    desktop, including running applications to a large
    screen TV to allow it to be used as teaching tool in
    lecture theatres, classrooms, etc. I say it again,
    what is the point?
    The point here is that products that do this already exist, but the market for them is very limited compared to the one the much cheaper Apple TV targets.
    Put another way, what "makes sense" to consumers (the fabled $100 laptop, for example) doesn't necessarily mean it makes sense in commercial terms, no matter how badly people want it or how well it would sell.
    iMac G5/2.0 GHz 17" ALS (Rev B)   Mac OS X (10.4.9)   1.5 GB, Kensington Trackball

  • What is the point in having one of these

    what is the point in haveing a Zen if you can't put videos on it's? I cannot find a website where i can get videos.... I do not understand the lingo on these forums (seeing as i'm new to all of this)
    there is no number to call where you can talk to real li've person and they do not respond to your emails the way you would like... I'm so frustrated
    I bought this for music videos and pictures and i can't put video on it!!? it is not ituneplus compatible like it says?
    please help me find a website where i can get videos for this thing!!? or a number for customer service to i can ask them!!! ? I'm desperate

    It's a fairly safe bet the post you're looking for with a converter suggestion was in regards to BADAK. If not you'll probably find the one you seek in some thread that includes a reference to BADAK. Try a forum search with that keyword. Things sometimes move around but don't often vanish completely unless the underlying forum software changes.

  • What is the point of having a smartphone if nothing ever works?

    Before my GS3 updated to kitkat my apps would crash all the time. My phone updated last week and now the apps work but in what used to be areas with strong steady 4g coverage I have no data. So annoyed. I can turn my data on and without touching it I'll have 4g for a minute and then none before coming back for 5 seconds only to go out again. What am I paying for?  My office doesn't have wifi and I have a large data allowance but what is the point if I can never use it?  I do a lot of travelling and use my phone as a GPS but as I have no no longer have reliable service anywhere even in Philadelphia where it was a constant 4g.  Not to mention the GPS is unreliable as well. Waze is an amazing GPS but to have a phone that doesn't work half the time is frustrating. I should just go back to my old flip phone that lasted me 2 days on a single charge. My phone is due for an upgrade in a few months. Maybe I'll save some money and get something that isn't a smartphone and I won't have to worry about paying for the data and everything else that comes with having a smartphone.

    I can understand that Verizon did not make the phone.  My satellite provider did not make the dish nor the receiver I use either, but if they malfunction and make it to where I cannot receive their service (the satellite signal) then the satellite provider assists in getting equipment that works.  If it is a software issue, they have more sway with the provider of said software, as the representative and mass user of the software, than individual customers do.  So if Verizon is receiving multiple complaints from their customers, complaints that their customers are unable to use the service that they are being paid to provide, then they can go to manufacturer to request the fix.  Who do you think Google or Samsung is going to listen to more, an individual who received a phone from a 3rd party (Verizon) or the entire company who purchases those items (phones and software) en-masse and thus can more affect their bottom line?  As another example... when you purchase a car and the seatbelt malfunctions, do you go to the seatbelt manufacturer or back to the car maker?  Should each person who has a seatbelt malfunction go to the seatbelt maker or should the car maker issue a recall on all affected vehicles and offer a fix, provided from the seatbelt maker?  When I go back to Samsung or Google, and IF they listen to me and initiate a fix, what priority is Verizon going to make it to get it out to their customers?  Or is Verizon relying upon each disgruntled user to go find their own fix without it affecting them (Verizon) at all?  Other service providers have already started issuing fixes according to my research... and if Verizon delayed pushing this update out for so long (as I've seen complaints that it was), why did they push it with these known issues and not insist before they pushed it out that Google or Samsung fix it first so as not to get these complaints?  Sorry, but Verizon is at least partially responsible for my inability to use their service, as the provider of the equipment and software that I need to be able to utilize their services.  I didn't go out on the black market and purchase this phone, I bought it at a Verizon store.  I have not rooted the phone or in any way done anything other than add about 6 apps to the phone from the way it was provided to me by the store, and their required update - pushed across their cellular and data service - is what has resulted in my phone no longer being functioning.  So yes, while Verizon may not manufacture the phone or the software, they are in fact the provider of said items to me and thus are responsible, and should be pushing back to Google or Samsung to get a fix for their customers.  I was hoping to hear that Verizon was doing just that, but it does not appear to be the case.... Yes, other providers may be having the same issue, but I've seen them working with their customers to get a solution, providing CUSTOMER SERVICE to their customers, and that is all that I and others like me, have been looking for from Verizon in this kitkat fiasco and which they have been failing at.

  • I am extremely upset. I purchased my iPad in SA and I am traveling in Greece. When I want to make use of the free apps, I get a message that the app is not available in the SA store. What is the point of having an iPad if you cannot use it worldwide?

    I am extremely upset. I purchased my iPad in SA and now I am in Greece. I cannot download free apps as I get a message that the apps are not available in the SA store and only in US stores. When I change to the US store the same thing happens. What is the point of having an iPad if I cannot use it worldwide??? I feel that I wasted my money purchasing it as I specifically purchased it to use when I travel. How can I get access to all the available apps and why are they restricted.

    You can use your iPad worldwide. However, each AppleID is tied to
    a specific country's store. To use the AppStore in any country, you
    must be in that country and have a credit/debit card issued by a financial
    institution in that country with a verified billing address in that country.
    It is the developer's choice which AppStores he makes his app available
    from, and some countries prohibit certain apps.
    To make a purchase from the US store (including downloading a free app
    available in the US store), you must be in the US and have card issued
    in the US with verified billing address in the US.
    You can use your purchases from the SA store worldwide, but you
    cannot make purchases in other than the SA store unless you meet
    the aforesaid conditions.

  • What is the point of the download window if you use stacks?

    Greetings,
    One of the most annoying things about the download window was the fact that the window always hung around after completing dowloads in Tiger when using safari. To me, that was just a time waster of always pressing Apple+W to close that window.
    When Leopard was released, I was excited to realize that one function of the download stack was to recevie downloads from safari after completed. However, after completion, the download window still sticks around and I still have to close it... then navigate to my stack of downloads to mount the image. What is the point of the download window is I use stacks now? Why can't the window disappear after completion?
    //Cheers

    Aaargh!! Me too - it's so annoying! Firefox has a downloads window as well - I just don't see the point of it. I didn't like it in Tiger either.
    As a way to see the progress of downloads, it's fine, but it should at least close when all the downloads are finished, and completed downloads should not display.
    Ideally it should look & work exactly like the Copy window in Finder - the one that comes up when you are copying or moving a large file or number of files from one folder to another.
    Is there a hack that will make it work like that?

  • What is the point of Precision and Scale in Number Type?

    Version :11.2
    What is the point in having PRECISION and SCALE in number type? If you create the column with just NUMBER ie.without
    specifying precision or scale , you can enter numbers with any precision and scale.
    SQL> select * From v$version where rownum < 2;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    SQL> create table t1 (col1 number);
    Table created.
    SQL> insert into t1 values (223.9939394);
    1 row created.
    SQL> insert into t1 values (88.228384);
    1 row created.
    SQL> insert into t1 values (9.34);
    1 row created.
    SQL> insert into t1 values (000.00);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from t1;
          COL1
    223.993939
    88.228384
          9.34
             0Did you ever have a business scenario where a Numerical column should store values only with a fixed precision and scale ?

    Omega3 wrote:
    Version :11.2
    What is the point in having PRECISION and SCALE in number type? If you create the column with just NUMBER ie.without
    specifying precision or scale , you can enter numbers with any precision and scale.
    SQL> select * From v$version where rownum < 2;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    SQL> create table t1 (col1 number);
    Table created.
    SQL> insert into t1 values (223.9939394);
    1 row created.
    SQL> insert into t1 values (88.228384);
    1 row created.
    SQL> insert into t1 values (9.34);
    1 row created.
    SQL> insert into t1 values (000.00);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from t1;
    COL1
    223.993939
    88.228384
    9.34
    0Did you ever have a business scenario where a Numerical column should store values only with a fixed precision and scale ?Lots of business requirements for specific precisions and scales.
    A persons Age may required to be stored as whole numbers of no more than 3 digits.
    A sum of money may required to be stored with no more than 2 decimal places of accuracy e.g. GB Pounds and Pence or US Dollars and Cents
    A unit of length may required to be stored in metres with 2 decimal places for centimetres
    A shoe size may be required to be stored with one decimal place for half sizes
    etc.
    etc.
    Yes, you may just create all of them as generic NUMBER datatype, but creating them with precision and scale can provide additional information about the limitations expected for the values stored, especially for things like reporting tools that may use the specified precision and scale to determine how to display the values automatically (by default).
    If you start questioning "what's the point?" then you may as well say what's the point in having a NUMBER datatype when we can store numbers in a VARCHAR2 datatype? or what's the point in having a DATE datatype when we can stored dates as VARCHAR2 datatype? etc.
    No point in asking such a question because there's almost always a point to these things (and if there isn't they get deprecated in later versions).

Maybe you are looking for

  • Resetting PRAM with new aluminum keyboard

    I just updated the firmware to my aluminum keyboard via Software Update. I still cannot reset the PRAM by the old tried-and-true method of holding down command, option, PR. Lately resetting the PRAM has been needed. Anyone have any idea on how to do

  • Like operator in plsql

    Hi All, Below code should be returning 2 values. but i get only one. when i just execute the sql query alone i am getting 2 values. but when i execute the funciton i get only one vlaue. can you please advise? i have given sample table data and result

  • Windows account failings

    tried to open iTunes in my computer but it won't open,it says "iTunes application cannot open because another user has it open" tell the other user to quit iTunes application,I don't understand what's happening,how can I access iTunes?my computer onl

  • Dreamweaver support not available

    I have Dreamweaver suite CS3 and after a computer crash I cannot get it activated.  Adobe does not offer phone support and I've been on their site for hours and cannot find a solution

  • Is there a way to recover deleted photos from your Camera Roll?

    Is there a way to recover deleted photos from your Camera Roll?