Affichage des articles dont le libellé est Insert. Afficher tous les articles
Affichage des articles dont le libellé est Insert. Afficher tous les articles

jeudi 27 mars 2014

NO SIM insert sim card topic




I keep getting a NO sim error when the sim is already in the phone I took it out and reinserted it but it still shows it can anyone help? Can't find a solution





How to insert a time delay mid script topic




Hello all,
I am loving the assistance of this community. Im a coder of HTML PHP and some other stuff, and am trying to get into this. Thanks for all the help thus far.

Today, I'm trying to learn what I can about timers/clocks.

Is there a way to insert a timed delay mid-script?

eg:


Code:


if managers.hud then
  managers.hud:show_hint( { text = "Wait for it..." } )
end

-- CODE TO DELAY BY n TIME --

if managers.hud then
  managers.hud:show_hint( { text = "Boom!!" } )
end



-Brian





lundi 24 mars 2014

[Q] i try to insert sd card to my galaxy but.. topic




hi
i try to insert sd card to my galaxy core but its not work
is this need driver or other like this ??
thank you..





vendredi 21 février 2014

[Question] Game Closes When I press Insert topic




Dont Worry,

Im not a newbie when it comes to game hacking but unfortunatley I cant find the DLL that will let me take the insert pressing command off my game... AfterMathZ
any help please?





mercredi 19 février 2014

Insert Sim Card topic




Hi peeps,

So i tried flashing a leaked firmware of the 4.4 Touchwiz rom for my i9505. All fine, i pass the setup page using wifi. However when i disable my wifi my phone doesnt connect to my carrier EE(Tmobile uk) and when I goto mobile networks, it doesnt detect my sim card, i get "insert sim card"

Now i have gone back to 4.3, currently using Golden eye rom...i recommend this rom. However when trying a later leak of 4.4 by Wanam im still having the same issue. I have searched and searched and no one is having this issue...so far. I have update BL for 4.4

My concern is that the day samsung finally release an official 4.4, my phone wont work. Any one with a solution?





lundi 10 février 2014

How to insert space in dialer between first and last name topic




i've seen two suggested solutions; tapping * (star) as a space or simply continuing to type the name without a space. neither are working for me. any other suggestions? thanks!





mercredi 29 janvier 2014

How to extract kernel from source, compile, and insert on GPE (510) topic




Howdy, I would like to share how to download the kernel source for the gpe, compile a new custom kernel, and insert into your LG gpad GPE 510.

I am hoping people will add to this with new ideas and patches in order to make the GPE a better device. I do not claim to be an expert, but did get this to work on my device, and see the potential for all sorts of cool stuff.

This guide assumes a basic knowledge of linux operating systems. I am using a Debian 64 bit (wheezy stable) to compile my kernel. i have used many, many guides and other sites to figure this out properly, with specific thanks going to Pete of http://pete.akeo.ie/2013/10/compilin...n-android.html for his image tools. he rocks!

But first, lets keep this simple eh? As usual, you are on your own if you brick your device. not my problem.

There will be dependencies for all of this, (not covered here) and you will definitely want to use a 64 bit system as a 32 apparently will not work properly for kitkat. You will also want to install adb and have your permissions set up. There are numerous sites that will help you set up linux on your computer. It is free, and has everything you could ever need. Google is your friend.

I wrote a small tutorial at my blog on how to root the gpad gpe and set up adb here: http://sleekmason.wordpress.com/ This may be a good starting point for you.

Lets get started.

I want to extract and build my zimage in $userspace, so,

Code:


mkdir ~/android

Download the source package LG-V510(G-Pad 8.3 Google Play Edition)_Android_KK_V510_11c from here : https://www.lg.com/global/support/op...&search=lgv510 and open it to find three folders, including a kernel folder. Move the kernel folder to ~/android.

Code:


cd ~/android

Download the current Google tool chain to cross compile your android kernel

Code:


git clone https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6


Code:


cd ~/android/kernel

Do the following each time you compile another kernel. you can also make a cheat file, but that's up to you.

Code:


export PATH=$PATH:/usr/local/share/arm-eabi-4.6/bin


Code:


arm-eabi-gcc --version

you should get:

Code:


arm-eabi-gcc (GCC) 4.6.x-google 20120106 (prerelease)
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.



Code:


export ARCH=arm


Code:


export SUBARCH=arm


Code:


export CROSS_COMPILE=arm-eabi-


Code:


export KERNEL_DEFCONFIG=palman_defconfig

And here we go!

Code:


make clean


Code:


make palman_defconfig

## I get two warnings which have no impact on the kernel compile##

Code:


make menuconfig

At this point, all I did was to append /general/perf-localversion to include my user name of sleek so: perfsleek. All i want to do is make sure I CAN correctly compile a kernel and get it running on my system before messing too much with the settings here.
After saving your changes,

Code:


make

and go make a pot of coffee, and probably drink the whole pot. This will take a while.
At the end you will see that the "zimage is ready"
If you have errors, then you probably have dependency problems. If not, Yay!
The zimage is stored in /kernel/arch/arm/boot/zImage
To put both the zimage and any modules into a separate folder inside of ~/android:
[CODE]mkdir ~/android/kernel_output[CODE]

Code:


cp ~/android/kernel/arch/arm/boot/zImage ~/android/kernel_output/zImage


Code:


find ~/android/kernel -name "*.ko" -exec cp {} ~/android/kernel_output \;

Extract your boot image (boot.emmc.win) for the ramdisk

Reboot to recovery on your tablet. I'm using TWRP. If you are using something else it should be just as easy.
Go to backup
Only tick the boot
make a backup to your sd card. I changed the name to boot.bac to keep it simple
reboot
make sure the backup of boot is present using a file explorer. I am using ES File explorer.

On your computer, pull the file using adb

Code:


adb start-server


Code:


adb devices


Code:


adb pull /storage/sdcard1/TWRP/BACKUPS/LG0000606708987/boot.bac /home/sleek

sleek is my user name, replace with yours or use tilde.

What we are after is the "boot.emmc.win" file. We will only need this and the zImage to compile a new boot image and run it on your tablet.

If you have gotten this far, you can then download the tools and follow the instructions on http://pete.akeo.ie/2013/10/compilin...n-android.html in order to create and test/flash the boot image. Other tools may work as well but I am liking this just fine. You will have to adapt his settings to your uses, and will only need to have your "boot.emmc.win" and your zimage ready for his tools.

If everything works well, you should see the change you made to the /general/perf-localversion/ in your settings under kernel build. from there it's up to you to hack away! make new and unique kernels for us here on xda.

I would appreciate feedback, suggestions, hacks and tweaks for the kernel, so what are you waiting for?





vendredi 24 janvier 2014

Re: Elementree and insert new element if it is not present - FIXED topic




On 2014-01-24, Tharanga Abeyseela <(E-Mail Removed)> wrote:
> manged to fix it. need to add the namespace when checking the
> condition.


I wish there was a rule that if your xml doesn't need a namespace
it doesn't use one. They are a pain when there's just one useless
namespace.

But maybe I'm just naive.

--
Neil Cerutti






jeudi 23 janvier 2014

Elementree and insert new element if it is not present topic




Hi,

I have the following xml,a nd i need to add Description element if it is
not present.

<TVSeries><Provider>xxx</Provider><Title>X</Title><SortTitle>World's
Fastest Indian, The</SortTitle></TvSeries>
<Movies><Provider>xxx</Provider><Title>The World's Fastest
Indian</Title><Description> The World's Fastest Indian
</Description><SortTitle>World's Fastest Indian,
The</SortTitle></Movies>

here is my function.

def insert_description(root,type):
for child in root.findall('.//{
http://schemas.microsoft.com/xxx/2011/06/13/ingest}%s' % type):
title=child.find('.//{
http://schemas.microsoft.com/xxx/2011/06/13/ingestion}Title').text
try:
if child.find('Description') is None:
new_desc = ET.Element('Description')
new_desc.text = title
child.insert(1, new_desc)

except:
pass

root is the xm lfile, type includes (movies,shows,dramas etc)

But this will add the description without checking the "Description" is
exist. i have a problem with the following statement. (i guess)

if child.find('Description') is None:

what i'm doing wrong here, appreciate your help

Regards,
Tharanga