Is there any way to get rid of the lock screen on 4.3 MK2?
Affichage des articles dont le libellé est find. Afficher tous les articles
Affichage des articles dont le libellé est find. Afficher tous les articles
mardi 25 mars 2014
lundi 24 mars 2014
How to find out Google option topic
The reason why didn't Google put some options that come with moto a here on their google nexus 5 it would have also been great!? like active notices it's very useful?
Find 7, charging and charger? topic
so we all know the phone will have a new super fast charging tech... the questions are
1. will it then requires special charger kit?
2. can it be charged using other devices charger?
3. what about USB charging, will it also get 'supercharged'? if so will it requires special USB port? if not then will it be like normal USB charging on other phones or what?
4. does the new charging tech have any weakness like prone to overcharging?
1. will it then requires special charger kit?
2. can it be charged using other devices charger?
3. what about USB charging, will it also get 'supercharged'? if so will it requires special USB port? if not then will it be like normal USB charging on other phones or what?
4. does the new charging tech have any weakness like prone to overcharging?
mercredi 19 mars 2014
[Q] Where can I find the stock ROM for the AT&T S3? topic
As the title says. I've already searched through these threads, but none of the links work. I just need stock, not rooted or anything special.
[Q] New Gear User: Can't find installed apps topic
Hi XDA, I'm new to the gear and new to the forum. I just followed a guide on how to sideload apps using ADB. I am able to successfully install these apps, but am not able to see them on the list of apps on my phone or on my Gear when they are paired. If I disconnect the gear from my phone and reset the gear, I'm able to see these apps. Does anybody have any idea?
I also installed NOVA and then changed the default of the home button to always be touchwiz (since I want my Gear to be more like a watch and not a mini tablet), but have no way to go to Nova unless I disconnect and reset my Gear. Any ideas or help? Thanks.
I also installed NOVA and then changed the default of the home button to always be touchwiz (since I want my Gear to be more like a watch and not a mini tablet), but have no way to go to Nova unless I disconnect and reset my Gear. Any ideas or help? Thanks.
[Q] Help using ADB to find & recover files from D4 with dead screen? topic
Hi everyone.
I have a Droid 4 (maserati) that suddenly died last week. I think the connection between the body and screen broke. But the device is still able to power on, reboot, and is recognizable from my Windows PC. I'd made a fairly recent nandroid backup, so I'm not in an emergency phase, but there are some files and photos I'd still like to try to recover from the broken device. Basically just files on the internal SD card. I was rooted, running stock Android on the latest OTA.
I'm not very experienced with ADB, but have started to give that a shot. I've tried various ls commands, but am stuck at a point where I get an error. Using a console (Console2), I ran ADB, then used this command:
I got this error:
I'm not sure if this error is because I didn't open shell with root access. But when doing that, I run into other trouble because I'm not familiar with the linux-style commands. Another small issue I've bumped into is that when running the ls command on large file trees, the results are cut off by the console's 9999 line buffer.
Can anyone help me find a file list. Or better yet, can someone just help me pull all the data from the entire SD card?
I have a Droid 4 (maserati) that suddenly died last week. I think the connection between the body and screen broke. But the device is still able to power on, reboot, and is recognizable from my Windows PC. I'd made a fairly recent nandroid backup, so I'm not in an emergency phase, but there are some files and photos I'd still like to try to recover from the broken device. Basically just files on the internal SD card. I was rooted, running stock Android on the latest OTA.
I'm not very experienced with ADB, but have started to give that a shot. I've tried various ls commands, but am stuck at a point where I get an error. Using a console (Console2), I ran ADB, then used this command:
Code:
adb shell ls -R /storage/sdcard0/
Code:
/storage/sdcard0/:
opendir failed, Permission denied
Can anyone help me find a file list. Or better yet, can someone just help me pull all the data from the entire SD card?
[Q] Where can i find motherboard? topic
Hello guys,
I have a probleme with my n9005... It is blacklisted by the french carriers so I cannot use my phone to make calls and SMS... I tried to change my IMEI number in many shops but nothing works... So I decided to change my motherboard but I didn't find where I can buy it.
Thanks a lot friends
I have a probleme with my n9005... It is blacklisted by the french carriers so I cannot use my phone to make calls and SMS... I tried to change my IMEI number in many shops but nothing works... So I decided to change my motherboard but I didn't find where I can buy it.
Thanks a lot friends
mardi 18 mars 2014
[Q] Need to find a firmware topic
Hello,
Where I can find firmware P6-U06V100R001C00B119SP01?
I have installed Firmware B125 but I have two issues:
P6-U06V100R001C00B119SP01
Hardware version: EDGE_UGV3
Maybe installing this firmware all my issues can be solve, :(
Where I can find firmware P6-U06V100R001C00B119SP01?
I have installed Firmware B125 but I have two issues:
- Notification panel is disable (missing panel and cant be enable)
- Mobile Data (internet) not working properly, I cant download images or access to Play Store
P6-U06V100R001C00B119SP01
Hardware version: EDGE_UGV3
Maybe installing this firmware all my issues can be solve, :(
Cant Find USB debugging in some Roms topic
Right now i am on supernexus and cant find Dev Option. I have had this problem in other roms. Hope it isnt just me . I will feel like an idiot
Re: Find and replace multiple RegEx search expressions topic
Jignesh Sutar wrote:
> Hi,
>
> I'm trying to delete contents of a .txt log file, matching on multiple
> re.sub criteria but not sure how to achieve this.
>
> Below is an illustration of what I am trying to achieve (of course in this
> example I can combine the 3 re.sub into a single re expression but my
> actual code will have a dozen plus expression I need to match on so easier
> to keep them separate). Only the last re.sub will take effect in the
> example below I need all 3 to take effect.
>
>
> import re
> o = open(r"c:\temp\outputfile.txt","w")
> data = open(r"C:\Temp\infile.txt").read()
> o.write( re.sub(".*<X> ","",data) )
> o.write( re.sub(".*<Y> ","",data) )
> o.write( re.sub(".*<Z> ","",data) )
> o.close()
Apply all substitutions to data before you write the result to the file:
with open(infile) as f:
data = f.read()
for expr in list_of_regexes:
data = re.sub(expr, "", data)
with open(outfile, "w") as f:
f.write(data)
> Hi,
>
> I'm trying to delete contents of a .txt log file, matching on multiple
> re.sub criteria but not sure how to achieve this.
>
> Below is an illustration of what I am trying to achieve (of course in this
> example I can combine the 3 re.sub into a single re expression but my
> actual code will have a dozen plus expression I need to match on so easier
> to keep them separate). Only the last re.sub will take effect in the
> example below I need all 3 to take effect.
>
>
> import re
> o = open(r"c:\temp\outputfile.txt","w")
> data = open(r"C:\Temp\infile.txt").read()
> o.write( re.sub(".*<X> ","",data) )
> o.write( re.sub(".*<Y> ","",data) )
> o.write( re.sub(".*<Z> ","",data) )
> o.close()
Apply all substitutions to data before you write the result to the file:
with open(infile) as f:
data = f.read()
for expr in list_of_regexes:
data = re.sub(expr, "", data)
with open(outfile, "w") as f:
f.write(data)
Libellés :
Develope 1,
expressions,
find,
multiple,
regex,
replace,
Search,
topic
Find and replace multiple RegEx search expressions topic
Hi,
I'm trying to delete contents of a .txt log file, matching on multiple
re.sub criteria but not sure how to achieve this.
Below is an illustration of what I am trying to achieve (of course in this
example I can combine the 3 re.sub into a single re expression but my
actual code will have a dozen plus expression I need to match on so easier
to keep them separate). Only the last re.sub will take effect in the
example below I need all 3 to take effect.
import re
o = open(r"c:\temp\outputfile.txt","w")
data = open(r"C:\Temp\infile.txt").read()
o.write( re.sub(".*<X> ","",data) )
o.write( re.sub(".*<Y> ","",data) )
o.write( re.sub(".*<Z> ","",data) )
o.close()
Thanks in advance.
Jignesh
I'm trying to delete contents of a .txt log file, matching on multiple
re.sub criteria but not sure how to achieve this.
Below is an illustration of what I am trying to achieve (of course in this
example I can combine the 3 re.sub into a single re expression but my
actual code will have a dozen plus expression I need to match on so easier
to keep them separate). Only the last re.sub will take effect in the
example below I need all 3 to take effect.
import re
o = open(r"c:\temp\outputfile.txt","w")
data = open(r"C:\Temp\infile.txt").read()
o.write( re.sub(".*<X> ","",data) )
o.write( re.sub(".*<Y> ","",data) )
o.write( re.sub(".*<Z> ","",data) )
o.close()
Thanks in advance.
Jignesh
Libellés :
Develope 1,
expressions,
find,
multiple,
regex,
replace,
Search,
topic
dimanche 16 mars 2014
Trying to find an older stock sense rom based on 4.1.1 or older topic
So I got a good deal on a galaxy s3 and now I'm getting ready to give the one s to a 50 something year old man who isn't great with technology. He's been using an HTC desire on stock 2.2 for over 3 years now and it's been almost rock solid dependable for him.
I don't want his new phone glitching out on him cause he won't really understand. I spent a few hours today after downgrading to 2.15 hboot and tried 4 different roms and had each one glitch out on me in some way within an hour of use except official cm11 but I only spent maybe 40 minutes with it before making a backup and trying the 3 other roms all 4.4.2 roms.
I'm starting to think I probably can't depend on any of them except an official 4.1.1 or older rom to be reliable enough but now I can't find any working download links for the older roms.
Anyone think they can help? I would give him this one cause it's still stock and keep the one s myself but he doesn't like anything this big and I personally like the s3 size.
Sent from my SGH-I747M using xda app-developers app
I don't want his new phone glitching out on him cause he won't really understand. I spent a few hours today after downgrading to 2.15 hboot and tried 4 different roms and had each one glitch out on me in some way within an hour of use except official cm11 but I only spent maybe 40 minutes with it before making a backup and trying the 3 other roms all 4.4.2 roms.
I'm starting to think I probably can't depend on any of them except an official 4.1.1 or older rom to be reliable enough but now I can't find any working download links for the older roms.
Anyone think they can help? I would give him this one cause it's still stock and keep the one s myself but he doesn't like anything this big and I personally like the s3 size.
Sent from my SGH-I747M using xda app-developers app
mercredi 12 mars 2014
Find out working Themes topic
So all know, the Theme-Engine in PAC have some Issue and many Themes not work
But any User report, any Themes works.
How to find out, a Theme work:
Pick any from Google Play Store and then go to Settings -> Design
If you see a Preview-Picture, so you can try and test. Next look if all was the them can work. At last test Reboot in Recovery and Shutdown.
If you have no Issue, then report here with link to Playstore.
But any User report, any Themes works.
How to find out, a Theme work:
Pick any from Google Play Store and then go to Settings -> Design
If you see a Preview-Picture, so you can try and test. Next look if all was the them can work. At last test Reboot in Recovery and Shutdown.
If you have no Issue, then report here with link to Playstore.
[Q] PC won't find this messed up phone topic
Okay, so this is the status quo of my friends phone: HTC One M7 UL, S-On, HBOOT-1.55, TAMPERED, UNLOCKED
There is no OS instelled, I can only boot into recovery (while booting from the bootloader it starts Team Win Recovery Project v2.6.0.1, when I boot from the phone being off it opens ClockworkMod Recovery v6.0.4.6) or bootloader. The internal storage is wiped. My PC is not able to install the device driver software, so I cannot put any files on the phone via USB cable. Also it appears to not be rooted, as the recoveries ask me if I want to install SuperSU. But if I accept this, nothing changes and the next time I get the same question.
All in all almost erverything on this phone is deleted and I have no idea how to put a ROM back on it to flash. Can anyone help me fix this?
There is no OS instelled, I can only boot into recovery (while booting from the bootloader it starts Team Win Recovery Project v2.6.0.1, when I boot from the phone being off it opens ClockworkMod Recovery v6.0.4.6) or bootloader. The internal storage is wiped. My PC is not able to install the device driver software, so I cannot put any files on the phone via USB cable. Also it appears to not be rooted, as the recoveries ask me if I want to install SuperSU. But if I accept this, nothing changes and the next time I get the same question.
All in all almost erverything on this phone is deleted and I have no idea how to put a ROM back on it to flash. Can anyone help me fix this?
lundi 10 mars 2014
dont find watchon on playstore topic
Hello,
I have problem because i cant find watchon on playstore so i cant update and cant have all other brands.when i find watchon via google i take this message by playstore.What can i do?
Thanks you
I have problem because i cant find watchon on playstore so i cant update and cant have all other brands.when i find watchon via google i take this message by playstore.What can i do?
Thanks you
samedi 8 mars 2014
[Q] Need help to find a KDZ file topic
Hello All. I need to download a file for my LG G2 so I can change the software version from D80210B-HKG-XX TO D80210B-EUR-XX so I can have 4g enable on my phone with Three UK. I now have all the tools to make this change but I am having trouble in finding any KDZ files on the internet. I have though a simple google search would have helped but there is nothing. What am I doing wrong in my search. Can somebody please guide me or send me a link so I can download the D80210B-EUR-XX KDZ file.
Phone: LG G2 - 32 gb version model D802
Phone: LG G2 - 32 gb version model D802
mercredi 5 mars 2014
Where do I find modem? topic
I want to flash a new ROM and I need the modem for N5100XXCMJ2. Can anyone give me a link please?
lundi 24 février 2014
[Question] How do people find the entity list in new games? topic
Like the title says, I was wondering what sorts of methods are used when finding the entity list/array/whatever in a new game. I've got my ideas, but I'm sure there are better methods out there.
dimanche 23 février 2014
Where Can I Find An Original Samsung "Leather" Backplate? topic
Now Samsung have brought out some GS4 variants with the Note-style stitched "leather" backplates, does anyone know if these are yet possible to source in the wild for a standard S4, or even if they fit?
I'm in the UK so I'm pretty sure they'll never turn up on the official Samsung site, but are they available on other Samsung sites yet or on eBay etc?
I've always used a case though have started going naked again, but I'd kill to replace that horrible feeling plastic with the lovely feel of a Note style cover.
Thanks!
I'm in the UK so I'm pretty sure they'll never turn up on the official Samsung site, but are they available on other Samsung sites yet or on eBay etc?
I've always used a case though have started going naked again, but I'd kill to replace that horrible feeling plastic with the lovely feel of a Note style cover.
Thanks!
Inscription à :
Articles (Atom)