Re: [nox-dev] Questions about NOX event delivery details

2010-03-08 Thread kk yap
, /* Wrong request length for type. */ OFPBRC_BUFFER_EMPTY,/* Specified buffer has already been used. */ OFPBRC_BUFFER_UNKNOWN /* Specified buffer does not exist. */ Regards KK On 8 March 2010 21:27, Ben Pfaff b...@nicira.com wrote: On Mon, Mar 08, 2010 at 09:23:19PM

Re: [nox-dev] Component external communication

2010-03-05 Thread kk yap
Hi, Messenger does exactly that (caveat: I wrote it). The component is available on NOX 0.6 openflow-1.0 branch. Would you care to explain your concept of the controller? My idea of controller is very simple, i.e., it controls the network. Regards KK On 5 March 2010 18:25, Alexandre Passito

Re: [nox-dev] Component external communication

2010-03-05 Thread kk yap
Hi Alexandre, I will not speak for Nikhil about Plug-n-Serv. Messenger supports SSL connection if you are running in a non-secure environment. Regards KK On 5 March 2010 19:17, Alexandre Passito alexandre.pass...@gmail.com wrote: 2010/3/5 kk yap yap...@stanford.edu Hi, Messenger does

role based login

2010-03-02 Thread kk
Hi friends, Basically I wanna show customized UI according to the user role after user has logged in ie: if user is Admin he has some special previlege also the logic for customization should be at server side. What I have done is after logging i have written a rpc call and after returning to the

Re: [nox-dev] My datapath leaves again (HP network)

2010-03-01 Thread kk yap
Hi Guanyao, NOX periodic checks if the switch is still alive by sending an echo request. Basically, your switch did not reply. You should look at the tcpdump to see if you can find the echo reply. If yes, bug people in this list. If no, debug your switch. Regards KK On 1 March 2010 21:34

Re: [nox-dev] My datapath leaves again (HP network)

2010-03-01 Thread kk yap
Just to be blunt. What is the CPU load of your HP? Regards KK On 1 March 2010 21:42, Guanyao Huang gyhu...@ucdavis.edu wrote: Which part defines the time interval for this echo request? I guess enlarger it will temporarily handle my problem. On Mon, Mar 1, 2010 at 9:38 PM, kk yap yap

Re: [fsug-tvm] Discussion regrading Lucid(Ubuntu 10.04) Release Party

2010-02-28 Thread Jemshid KK
Hi I have my office cum residence at Padinjattumukku, Kaniyapuram. The first floor of the house is free for some time as my family is away. Jemshid KK ph: 9349101566, 2010/2/28 Mahesh Mohan maheshmohan...@gmail.com On Sun, Feb 28, 2010 at 12:26 AM, Anish A aneesh...@gmail.com wrote: How

Re: [nox-dev] A quick question about topology module

2010-02-26 Thread kk yap
Hi Guanyao, Can you elaborate? struct DpInfo is paired with a datapathid using a hash_map and contained the destination datapathid using another hash_map. Finally that points to LinkSet that is a lis to src and dst ports. That information is preserved from what I can see. Regards KK On 26

[Bug 528324] Re: eclipse crashed with signal 5 in _XError()

2010-02-26 Thread kk
Hi After a system update today, eclipse crash when you try to select from a list of functions of class method or variable in the java editor. Pressing the escape or enter eclipse crash every time with this message: Trace / breakpoint trap (core dumped). The error does not occur after disabling

Re: [nox-dev] Routing with NOX0.6

2010-02-24 Thread kk yap
Hi Martin, I do not understand. This should not make a difference, since routing still have calculate a route, for which some OpenFlow switches might be connected directly. Doing it hop-by-hop does not make a difference. What am I missing here? Regards KK On 24 February 2010 13:58, Martin

Re: [nox-dev] list of events and their handlers

2010-02-23 Thread kk yap
Hi Ashish, What do you mean by base components? The components can be listed from all the meta.xml. Yes, ugly. nox-draw-dependencies already does that to draw the dependency-graph though. Regards KK On 23 February 2010 19:28, Ashish Agarwal agarwal1...@gmail.com wrote: Thanks

Re: [nox-dev] Force the switch to send entire unmatched packet to controller

2010-02-22 Thread kk yap
Oops.. stupid me. Thanks Martin for correcting me. Regards KK On 22 February 2010 10:35, Martin Casado cas...@nicira.com wrote: I think Muhammed as asking about setting the miss_send_len. See lib/openflow.cc, search for miss_send_len. Hi Muhammad, Which version of OpenFlow are you

Re: [nox-dev] namespace vigil ?

2010-02-21 Thread kk yap
why such a change should be made. Regards KK On 21 February 2010 18:15, Martin Casado cas...@nicira.com wrote: That would be fantastic.  Yes, vigil is purely vestigial. IIRC, all of the namespace vigil references are historical and outdated -- is that correct?  Is there any reason

Re: [nox-dev] namespace vigil ?

2010-02-21 Thread kk yap
As long as people do not use vigil as a variable. I believe there is more useful things to do with NOX than change the namespace. Are we putting the cart before the horse here? Regards KK On 21 February 2010 23:28, Rob Sherwood rob.sherw...@stanford.edu wrote: Question: would #define vigil

[sapiensinfotec] Gmodules.com: pra q serve?

2010-02-21 Thread »♥§♥«KK»♥§♥«
... Super grata, e bom fim de domingo! KK

[android-developers] JetPlayer keeps logging write blocked for X msecs - is this normal?

2010-02-18 Thread kk
/AudioFlinger( 31): write blocked for 50 msecs W/AudioFlinger( 31): write blocked for 54 msecs They are quite frequent...3-4 of those per second. Is this normal or am I doing something wrong? cheers, kk. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] can an updated version of an app try to restore using a bundle containing older data?

2010-02-17 Thread kk
the app to v2 4) user starts the v2 version of the app 5) v2 version calls onCreate passing the bundle with v1 data (i.e. the one saved during step (2)) Is that even possible? Do I need to worry about it? cheers, kk. -- You received this message because you are subscribed to the Google Groups

Re: [nox-dev] understanding NOX internals

2010-02-16 Thread kk yap
the events in that order. If a previous component return STOP, the event is not seen by the latter components. The alternative is CONTINUE, which is the common case. Then, the latter components will receive the events. Hope I am being clear here. Regards KK On 16 February 2010 10:22, Ashish Agarwal

[android-developers] triggering onCreate with a non-null Bundle (or onRestoreInstanceState) from the emulator

2010-02-16 Thread kk
of it) but never onDestroy. So, whenever my app starts up, it starts with a null bundle. I've never had onCreate with a non-null bundle and I've never had onRestoreInstanceState getting called. Can someone please tell me how I can test the restore state functionality from the emulator? cheers, kk

[fsug-tvm] license issue

2010-02-14 Thread Jemshid KK
Is it permitted to use GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1, February 1999 codes in a proprietary product. Jemshid KK ph: 9349101566, -- Freedom is the only law. Freedom Unplugged http://www.ilug-tvm.org You received this message because you are subscribed to the Google Groups ilug

Re: [nox-dev] NOX-6 and OpenFlow 1.0: Do not connect...

2010-02-10 Thread kk yap
manually test your OpenFlow switch binary here. NOX seems to be behaving. Regards KK On 10 February 2010 07:00, Justin Pettit jpet...@nicira.com wrote: I assume for by OF1.0, you are referring to the reference implementation at openflowswitch.org, correct?  I'm fairly certain the guys

Re: [nox-dev] Using NOX

2010-02-09 Thread kk yap
a bit of exploration. Once over that, you would be fine. For example, the firewall-like application you talked about should be relatively easy to implement. Regards KK On 9 February 2010 13:34, Macapuna, Carlos A. B. carlosmacap...@gmail.com wrote: The best way (I think) is to install it, use

[nox-dev] Flow_stats_in_event's more field

2010-02-09 Thread kk yap
Hi, The Flow_stats_in_event has a boolean field more. What does that mean and how is it set? Just a random discovery. Regards KK ___ nox-dev mailing list nox-dev@noxrepo.org http://noxrepo.org/mailman/listinfo/nox-dev_noxrepo.org

Re: [nox-dev] Inquiry a race condition of openflow switches

2010-02-08 Thread kk yap
the replies before putting the flow_mod to the source switch. Regards KK On 8 February 2010 14:33, Guanyao Huang gyhu...@ucdavis.edu wrote: Hi Sorry to bother others. In order to establish packet forwarding between switches, the rule should be sent to switch before the first packet is sent back

Re: [nox-dev] Inquiry a race condition of openflow switches

2010-02-08 Thread kk yap
. Then B will/might see the packet-in. My suggestion for the guarantee is to send to B and C with a barrier function it. Once both barrier function returns, we install A. That way, we are sure B and C has the entries before sending the flow_mod to A. Hope I am clear. Regards KK On 8 February 2010 19

[Rails] Adding div id leading to 500 internal server error in linu

2010-01-29 Thread Kumar Kk
Hi, When i am going to change the div id of an haml page on a linux system leading to 500 error. Example: index.html.haml Original code: #home-main #home-main-left #div-home-step-1 #div-home-step-2 #div-home-step-3 This i am changing to index.html.haml changed one

Re: [nox-dev] [openflow-discuss] openroads support which version of openflow ?

2010-01-26 Thread kk yap
, especially since I am not maintaining this full time. Regards KK 2010/1/26 Prateek Jain prateek4t...@gmail.com: Hi, I am trying to setup visual tool ENVI , where backend LAVI in bundled together with openroads. I have currently openflow 1.0.0 installed in my testbed, and I  receive the following

Re: [nox-dev] aggregated flow statistics doesnt support nw_src and nw_dst option.

2010-01-22 Thread kk yap
Hi Guanyao, These questions are more appropriate on openflow-discuss. You might want to raise your bug report to the vendors too. Regards KK 2010/1/22 Guanyao Huang gyhu...@ucdavis.edu: Hi I have two questions. 1, why have people developed both individual flow statistics query

[nox-dev] Incomplete Webapps in NOX 0.6

2010-01-15 Thread kk yap
Hi, The webserver component in webapps seems to be the core of the components in webapps. It requires a missing component called datamanager. Can someone explain how the webapps works and how we can get datamanager or remove this dependency? Thanks. Regards KK

Re: [nox-dev] Openflow for ipv6

2010-01-12 Thread kk yap
Hi, I believe you should send this email to openflow-discuss or openflow-dev instead, though there is a large overlap in the subscribers. Regards KK 2010/1/12 冯涛 fengtaoem...@gmail.com: Hello, I am trying to extend openflow to support ipv6 and rather than ip protocols, and I want to know how

Re: [nox-dev] Unable to configure nox

2010-01-11 Thread kk yap
Hi, Maybe this might be better. autoreconf -Wno-portability --install -I `pwd`/config --force Regards KK 2010/1/11 Daniel Wagner-Hall n...@illicitonion.com: As a short-term fix, edit boot.sh editing line 97 from: autoreconf -Wno-portability --install -I config --force it reads

Re: [nox-dev] Nox installation: problem with make check

2010-01-11 Thread kk yap
Hi, I have pushed this patch to the master branch. Just do a git pull --rebase, and you should be okay. Regards KK 2010/1/11 Ashish Agarwal agarwal1...@gmail.com: Looks like the same error I reported a few weeks ago. The following sequence of commands led to a successful install for me: git

Re: [sapiensinfotec] O-T: Pessoal em SP: Doação Ur gente (Sangue ou Plaq uetas).

2010-01-01 Thread »§«|KK|»§«
Oi, Wilson, Bom dia e feliz 2010! Pode ajudar sim, isso feito se quiser repassar a msg, o q afinal doi ate menos, rsss... Vamos em frente... :-) KK On 12/30/09, Wilson Baptista Junior wilsonbapti...@terra.com.br wrote: Não estou em Sampa, assim não posso ajudar, mas é muito bom saber que o

Request for JCPDS Number

2010-01-01 Thread Suresh kk
Dear Rietvelder, Can anyone of you send me the JCPDS number of metakaolin and its Cif. I have difficulty to access these files. Many sincere thanks for this help Happy 2010!!!. Dr. K. Suresh The information contained in this electronic communication is intended solely for the

[sapiensinfotec] O-T: Pessoal em SP: Doação Urgente (Sangue ou Plaq uetas).

2009-12-30 Thread »§«|KK|»§«
Com licença, bom dia, estou repassando o pedido . Em Sampa, a quem puder e quiser ajudar, aproveite a hora! Recebido por volta das 11 da manha. Fico grata por seu esforço e atençao! KK -- Forwarded message -- From: Torre de Controle modera...@voadores.com.br Date: Dec 30, 2009

Re: 0.99.90.20091222 deprecated configure attributes?

2009-12-27 Thread Surendran KK
After successful 'make' and 'make install' of cds-invenio-0.99.90.20091222 /opt/cds-invenio/etc/apache/invenio-apache-vhost.conf /opt/cds-invenio/etc/apache/invenio-apache-vhost-ssl.conf give rise to the following Apache Error: 403 Forbidden : You don't have permission to access / on this

Re: [nox-dev] A general question regarding discovery module

2009-12-23 Thread kk yap
Hi Guanyao, I am not sure what you are asking but discovery will not disconnected switches. That can be said with certainty. Regards KK 2009/12/23 Guanyao Huang gyhu...@ucdavis.edu: Some general questions: Will the datapath actively leave the network if it is burdened? Or only

[google-appengine] Sharing Databases across different applications

2009-12-21 Thread KK
Hi I have multiple appengine applications and I would like to use one database created in one application in another application. Is it possible? If yes how? If not, what's the easiest way to copy the database from one application to another application? Thanks KK -- You received this message

[Ubuntu-zh] 问一个内核参数问题

2009-12-20 Thread =KK=
以下2行参数的具体含义是什么,哪里有这方面的资料呀,谢谢 设置70: Executing: echo 70 /proc/sys/vm/dirty_ratio 设置1 : Executing: echo 1 /proc/sys/vm/dirty_background_ratio -- ubuntu-zh mailing list ubuntu-zh@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-zh

Re: [nox-dev] A general question regarding discovery module

2009-12-18 Thread kk yap
Hi Guanyao, Does no LLDP means no LLDP sent or no LLDP received? Take a look at wireshark. Regards KK 2009/12/18 Guanyao Huang gyhu...@ucdavis.edu: I assume LLDP packets are sent periodically. If there is no LLDP, what will be the most possible reason? The controller or the switch is too

Re: [nox-dev] A general question regarding discovery module

2009-12-18 Thread kk yap
Hi Guanyao, If by huge data, you mean you are jamming the links with data, then yes that could be the issue. The LLDP packet can be dropped and cause intermittent link timeout. Regards KK 2009/12/18 Guanyao Huang gyhu...@ucdavis.edu: In my program the discovery module times out links

Re: [nox-dev] OpenFlow 0x98

2009-12-17 Thread kk yap
--with-openflow option in configure) If you need some particular feature beyond v0.8.9, let us know. We can figure something out then. Hope this is helpful. Regards KK 2009/12/17 n...@illicitonion.com: Sorry for double-message KK: replied rather than replied all, using an email client I've never

Re: [sapiensinfotec] Novidade: Mouse da Mac Desbloqueado.

2009-12-04 Thread »§«|KK|»§«
://blog.wedigital.com/post/How-to-get-Apple-Magic-Mouse-Scrolling-working-in-Bootcamp.aspx *http://blog.wedigital.com/post/How-to-get-Apple-Magic-Mouse-Scrolling-working-in-Bootcamp.aspx *Otimo fim de semana pra vc e todos!* *KK* On 12/4/09, Sandra sanj...@gmail.com wrote: Fonte: Correio Braziliense * Apple

[android-developers] Problem with fwrite onto sdcard

2009-12-04 Thread KK
Hi, I am very new to Android. I am trying the following code in the android ndk. FILE* fp = fopen(/sdcard/test, wb) if(NULL == fp) { return errno; } int written = fwrite(Test, 1, 4, fp); if(4 != written) { return -1; } fclose(fp); return 0; I am trying this on emulator and I have created

Fw: Re: [QUAD-L] The Mad Spanner

2009-11-28 Thread KK
That worked at Yahoo games for a while but now they are back selling sex while playing Bingo.  KK --- On Thu, 11/26/09, hellodav...@aol.com hellodav...@aol.com wrote: From: hellodav...@aol.com hellodav...@aol.com Subject: Re: [QUAD-L] The Mad Spanner To: quad-list@eskimo.com Date: Thursday

[R] analyse tab delimited textfile microarray data(help)

2009-11-26 Thread kumar kk
Hello I have microarray data in tab delimited text file.The main headers and some fields are as: following are the header: FEATURES FeatureNum Row Col SubTypeMask ControlType ProbeName SystematicName PositionX PositionY LogRatio LogRatioError PValueLogRatio gProcessedSignal rProcessedSignal

[R] Fwd: R- bioconductor -- help

2009-11-24 Thread kumar kk
-- Forwarded message -- From: kumar kk kumarnod...@gmail.com Date: Tue, Nov 24, 2009 at 2:29 PM Subject: R- bioconductor -- help To: r-help-boun...@r-project.org How can we analyse text file using bioconductor(R). How can we import text file for analysis. Thanks

Re: [nox-dev] topology

2009-11-23 Thread kk yap
Hi, It seems like there is something about flowdb and LAVI at the moment. I will try to take a look at it within this week. My apologies for the slow reaction. Regards KK 2009/11/23 Arturo Veras a.ve...@gmail.com: hi, did you try LAVI ? i can see the topology but i cannot see the flows

Re: [sapiensinfotec] PayPal: Alguem c/ Experiencia no Uso?

2009-11-23 Thread »§«|KK|»§«
hoje q é meu day-off e estou meio a toa, entao se possivel mande noticias em uma hora, depois q eu voltar do banco e correio. Agora no Rio sao 14.42, as 3 e meia de lá estarei aqui. Abçs KK On 11/22/09, Sandra sanj...@gmail.com wrote: Colegas Precisei criar uma conta, há 1 semana, no PAYPAL

[QUAD-L] Did anyone else get this email from Quad-digest?

2009-11-17 Thread KK
What is it why should I download this program?  I'm not going to do anything unless I know why who sent it to me. KK From: quad-dig...@eskimo.com quad-dig...@eskimo.com Subject: [QUAD-L] Download Sofware You Need To: quad-dig...@eskimo.com Date: Monday, November 16, 2009, 12:26 PM Download

[QUAD-L] Serious Complications with Negative Pressure Wound Therapy Systems

2009-11-16 Thread KK
Got this alert today from the FDA.  It is a long article so I will let you go look it up your selves. http://www.fda.gov/MedicalDevices/Safety/AlertsandNotices/PublicHealthNotifications/ucm190658.htm

[Bug 445009] Re: Eclipse SIGSEGVs in libpango

2009-11-04 Thread kk
thanks nh2 and Dario Bertini Eclipse Galileo ( and 3.6XX) is working properly in Ubuntu 9.10 32bit after these tips :) -- Eclipse SIGSEGVs in libpango https://bugs.launchpad.net/bugs/445009 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Google Wave APIs] Re: Enable toolbar on embedded wave

2009-11-02 Thread kk
hi yariv couldnt get the toolbar on google wave... please help --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Wave API group. To post to this group, send email to google-wave-api@googlegroups.com To

[fsug-tvm] school wiki: a suggestion to make it more free/open

2009-11-02 Thread Jemshid KK
of the school wiki project. Jemshid KK ascent, calicut, kerala, india ph: 9349101566, 0495 2744046 kakespeak.blogspot.com --~--~-~--~~~---~--~~ Freedom is the only law. Freedom Unplugged http://www.ilug-tvm.org You received this message because you are subscribed

[iklan-indonesia] Want 100's of sign-ups and or customers for your business/business opportunities?

2009-10-31 Thread KK
Want 100's of sign-ups and or customers for your business/business opportunities? We place your business banners on 3-5 Million Websites. You'll have a potential of 23 Million visitors to your Website Daily, bringing you 100's of sign-ups and 100's of customers for your offers. Our

{IIG} proposal

2009-10-31 Thread shaijal kk
Dear Brothers Friends, Assalamu Alaikum, Please be informed that I am looking for a suitable alliance for my Sister who is working as an unaided school. Height - 158 cm Ege - 26 Years Education – B.A, B-Ed, M. A (Arabic) And we are a middle class family from Calicut area of

Re: [nox-dev] More than one action

2009-10-29 Thread kk yap
for try to follow through it. Regards KK 2009/10/29 Chitra Muthukrishnan chi...@cs.wisc.edu: I believe the controller can specify many actions to be taken for a matching packet. I need a switch to send some packets to the controller and forward it to an output port. Can someone tell me how we can

Re: [QUAD-L]Adam

2009-10-28 Thread KK
I don't get to leave my house very often.  If I didn't have my computer, I would be depressed too. I am involved with several groups on-line.  Instant messaging is good also.   And then there is video so you can see who you are talking to. You can be happy again.   KK

[sapiensinfotec] O-T URGENTE = The Rapidshare Cleanout Has Started ...

2009-10-21 Thread KK Y-Br
, me mande em pvt suas listagens q eu repasso imediatamente aos outros grupos onde estou inscrita e aceitam esse tipo de material, mas isso somente nas proximas 8 hs q vou estar a disposiçao! Bom dia a todos, KK -- Forwarded message -- On Tuesday, October 20, 2009 11:53:26 AM

[android-beginners] Re: How to extract ICON from an APK file?

2009-10-16 Thread KK
...@googlemail.com wrote: Very interesting, thanks for keeping us up to date. Any chance your shell extension implementation might be ported to Linux? 2009/10/15 KK guo.jing...@gmail.com: actually, the code of extractioniconis inside aapt which is from base package of android source code

About Cassandra

2009-10-16 Thread kk
Hi, I'm learning Cassandra,and have some questions to ask you. I installed the Cassandra in my PC in XP OS.I build the project and run Cassandra\bin\cassandra.bat,then how can I run the query Script in XP OS? Thanks

[QUAD-L] Wheelchaiir repair from HELL

2009-10-16 Thread KK
After many months of the recline not working on the chair, I finally found someone who could at least come look at it.  He spoke Spanish a few words of English.  Had to have an interpreter.  When i called the shop I told them what the flashing lights were saying controller error.   He his

[android-beginners] Re: How to extract ICON from an APK file?

2009-10-15 Thread KK
(hopefully)... try it if you are interested. http://code.google.com/p/apkshellext/ On 10月8日, 下午2时54分, KK guo.jing...@gmail.com wrote: Hi, I found the path is stored in resources.arsc, but where to indicates the index? BR, KK On Oct 7, 11:48 am, KK guo.jing...@gmail.com wrote: Sorry, I'm

[sapiensinfotec] BR25: APOSTILAS, MANUAIS E TUTORIAIS

2009-10-12 Thread KK Y-Br
Clicar com o direito e salvar onde quiser... Como entrei no site e ja me pulou uma janela de propaganda, entao nao recomendo q visitem o local, mas os tutos sao bons. Copiei daqui: www.br25.com/diretorio/tutoriais.htm Nao deixa de dar um pouco de medo abrir arquivos pdf de fonte desconhecida, mas

[sapiensinfotec] Ajuda = no SKYPE qual é a porta generica, e as alte rnativas?

2009-10-12 Thread KK Y-Br
liberei no firewall.* ** *No outro pc (onde tinha uma versao ate mais antiga e q funcionava bem) sei q nao era essa mas tampouco lembro qual era.* *Fico grata pelo auxilio, bom inicio de semana a todos* *KK*

[fsug-tvm] Re: GPRS connection Via bluetooth

2009-10-12 Thread Jemshid KK
i have been using a package named blueman for pairing my lg reliance phone with ubuntu for file transfer and dial up networking(DUN). even with blueman, the wvdialconf couldn't find and auto configure my phone. i had to edit wvdial.conf manually. Jemshid KK

[sapiensinfotec] Fwd: Evolution of Microsoft Windows: 1985 ~ 2009

2009-10-11 Thread KK Y-Br
-- Forwarded message -- From: *David* Date: Oct 11, 2009 7:26 AM Some nostalgia, or nightmares :-) Sent to me by a collegue, who takes no responsibility, hehe he never has for anything.. David [image: evolution of ms windows] It all began in Plaza Hotel, New York City

Re: [sapiensinfotec] Grupos no Gmail e redundância.

2009-10-09 Thread KK Y-Br
, mesmo com tantos atropelos como essa versao nova q emperra o andamento e eu tenho q ao entrar pular logo pra versao anterior senao nem consigo me mexer aqui...! Otimo findi longo pra todos! KK On 10/9/09, Renato Alvim renato.al...@gmail.com wrote: Caros amigos. Tenho muitos grupos de contatos

[sapiensinfotec] Alguem gravou? 'Guy Laliberte's event aimed to raise awareness of global water issues.'

2009-10-09 Thread KK Y-Br
Alguem assistiu online, e ainda conseguiu gravar...? Pode upar e postar...? Vlw KK 'Space clown' hosts global show Guy Laliberte's event aimed to raise awareness of global water issues *Circus entrepreneur and first clown in space Guy Laliberte has hosted a global artistic performance

[android-beginners] Re: How to extract ICON from an APK file?

2009-10-08 Thread KK
Hi, I found the path is stored in resources.arsc, but where to indicates the index? BR, KK On Oct 7, 11:48 am, KK guo.jing...@gmail.com wrote: Sorry, I'm NOT using android API On Oct 7, 11:40 am, KK guo.jing...@gmail.com wrote: Actually I'm doing a shell extension for windows

Re: [sapiensinfotec] P/ Renato A: RIO DE JANEIROOOOOOOOO!!!!!!

2009-10-07 Thread KK Y-Br
mandar por email direto pra cá? Se quiser pode colocar no rapidshare q eu pesko de lá, e quem sabe alguem aqui no grupo ate aproveita tbm! Abraço, vou listar as duvidas menos tolas e em breve te mando, thn! :-) Boa tarde pra vc e todos KK On 10/6/09, Renato Alvim renato.al...@gmail.com wrote

[android-beginners] How to extract ICON from an APK file?

2009-10-06 Thread KK
Hi, I'm trying to get the icon from an apk file, but I found not every app use the the icon.png under res/, and androidmanifest.xml is compiled inside apk, where I can get the position information? Thx BR, KK --~--~-~--~~~---~--~~ You received this message

[android-beginners] Re: How to extract ICON from an APK file?

2009-10-06 Thread KK
Actually I'm doing a shell extension for windows, showing the icon of apk files in windows, isn't it a good idea? :D so I want to know where the icon located in apk file, and I'm using android API... Thanks for your tip, at least I can go and see the source code of packagemanager.. BR, KK

[android-beginners] Re: How to extract ICON from an APK file?

2009-10-06 Thread KK
Sorry, I'm NOT using android API On Oct 7, 11:40 am, KK guo.jing...@gmail.com wrote: Actually I'm doing a shell extension for windows, showing the icon of apk files in windows, isn't it a good idea? :D so I want to know where the icon located in apk file, and I'm using android API

[sapiensinfotec] P/ Renato A: RIO DE JANEIROOOOOOOOO!!!!!!

2009-10-05 Thread KK Y-Br
livro por ex... :-/ Otima semana proCs! KK On 10/5/09, Renato Alvim renato.al...@gmail.com wrote: Você é budista? 2009/10/4 KK Y-Br kittykatc...@yahoo.com.br Ok, chega de O-T, r Gente, o planeta q vcs estao querendo ou nao existe ou esqueceram de me dizer onde é o paraiso

Re: [sapiensinfotec] RIO DE JANEIROOOOOOOOO!!!!!!

2009-10-03 Thread KK Y-Br
aguarde q ja vem um pedidinho meu no proximo email, com um problemaozinho q espero possam decifrar e me auxiliar nesse sabadaum! :-) Té depois... KK PS: Q bom que o yuhu criou essa forma ideal pra q se possa incluir arquivos bem gordos e sem pesar nem na caixa de emails nem atrapalhando quem

[sapiensinfotec] Re: RJ se prepara para as Olimpíadas de 2016. [1 Anexo]

2009-10-03 Thread KK Y-Br
-- Forwarded message -- Date: Oct 3, 2009 12:15 PM Subject: RJ se prepara para as Olimpíadas de 2016. To: *** Rio já se prepara para as Olimpíadas de 2016!!* -- Por favor, antes de repassar mensagens: 1. Apague meu e-mail e meu nome. 2. Apague também quaisquer referencias a

[sapiensinfotec] Ajuda: Parte da janela do Gerenciador de Tarefas sumiu..!

2009-10-03 Thread KK Y-Br
... Espero q algum de vcs me traga a soluçao, please... :-) Otimo sabado pra todos, fico SUPER grata! KK IMAGEM DO QUE ESTÁ APARECENDO: http://rapidshare.com/files/288194804/Oct_09__017_Com_q_cara_q_est__jpg Size: 67 KB

[sapiensinfotec] Resolvido: Parte da janela do Gerenciador de Tarefas sumiu..!

2009-10-03 Thread KK Y-Br
nem noto, so c/ a movimentaçao do cursor...!* *Abçs, bom findi a todos, super grata pela atençao, a vc Belo e a todos os listantes!* *:-)* *KK * On 10/3/09, FHABB fh...@yahoo.com.br wrote:  ** Oi KK *O rapidshare hoje está de grave comigo, não consigo baixar a imagem.* *Como é pequena

[sapiensinfotec] RIO DE JANEIROOOOOOOOO!!!!!! [1 Anexo]

2009-10-02 Thread KK Y-Br
*YE!* *Minha cidade maravilhosa!* *:-)))* Jokas, C ya there! *KK* *(THNX PELO WALLPAPER, BUDDY!!)* *BRASIL! RIO DE JANEIRO, sede dos * *JOGOS OLIM**PICOS 2016, pela primera vez na America do SUL!* Vlw! Ƹ̵̡Ӝ̵̨̄Ʒ

[OpenSocial] How to promote Opensocial Apps

2009-09-28 Thread KK
Hi, Regarding websites I am aware of several methods to promote like SEO, Internet Ads etc. But still not clear of the ways to promote opensocial apps. I have created my first orkut apps http://tinyurl.com/1dollardeal . Can somebody review and give me your valuable comments. Also if somebody

[fsug-tvm] ekiga crashing

2009-09-27 Thread Jemshid KK
this is an email from fsug calicut list. request support from fsug-tvm members. -- Forwarded message -- From: Jithendranath jithendran...@gmail.com Date: 2009/9/27 To: Jemshid KK jemshi...@gmail.com, FSUG Calicut fsug-cali...@freelists.org On Sat, 2009-09-26 at 10:55 +0530

[sapiensinfotec] OT = Envie email anonimamente! Lovely idea, check it out...

2009-09-23 Thread KK Y-Br
** *Testei enviando pra mim dali do site.* *Foi meio lento mas eles avisaram q iria dar a volta no planeta, r...* *Levou umas 5hs pra chegar; a Message eu copiei do q vem discriminado junto com o trajeto, se é q me fiz entender!* *Have fun!* *KK* -- Forwarded message

Re: [sapiensinfotec] QUEM TEM HOTMAIL ou NÃO!

2009-09-19 Thread KK Y-Br
um tem necessidades diferentes e no meu caso nao sinto q precise do MSN pra nada, se esses dois q mencionei funcionarem sem encrencas e sem perturbar o meu hotmail, r Abçs, bom findi KK On 8/9/09, Sandra sanj...@gmail.com wrote: Título alterado para ficar objetivo (curto e claro

Re: [sapiensinfotec] QUEM TEM HOTMAIL ou NÃO!

2009-09-19 Thread KK Y-Br
das coisas mais interessantes desse jurassico netbook é justamente sua touch screen, na minha opiniao, claro..! :-)) Abçs, muito boa tarde! KK On 9/19/09, Renato Alvim renato.al...@gmail.com wrote: Yahoo é excelente alternativa para o Gmail. Tentou? 2009/9/19 KK Y-Br kittykatc

Re: [sapiensinfotec] QUEM TEM HOTMAIL ou NÃO!

2009-09-19 Thread KK Y-Br
Enfim, acabou o discurso, e vou ler mais trocentas msgs logo e sair correndo, nao perder o sabadaum todo nesssa! :-)) Abçs, tenha uma noite otima! KK On 9/19/09, Wilson Baptista Junior wilsonbapti...@terra.com.br wrote: Não sei se entendi bem, você está dizendo que consegue entupir o GMail em

[Bug 411574] Re: [karmic] No sound on Intel 82801H HD Audio

2009-09-16 Thread kk
@pablomme Same here. YouTube videos won't be affected by PulseAudio because the Flash plugin uses OSS driver. @Jonathan I can confirm the speakers making crackling sounds. More observations when I switch audio drivers in SMPlayer: OSS, alsa (0.0 - HDA Intel) - everything fine alsa, alsa (0.1

[orkut-developer] Urgent pls help : src attribute of IMG tag gets deleted mysteriously

2009-09-15 Thread KK
Hi, My Application ( appId = 562545233389 ) posts activity with IMG tag in body. It has src attribute set which gets mysteriously deleted while posting. This worked perfect in Sandbox. Could anyone help me in this regard? --~--~-~--~~~---~--~~ You received this

[android-developers] Emulator: LogCat Errors for Donut 1.6 Release

2009-09-15 Thread kk
logging skipped, no checkin service 09-16 13:17:26.013: ERROR/LockPatternKeyguardView(582): Failed to bind to GLS while checking for account Thanks, KK --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Emulator: 1.6 SDK release Troubleshooting Proxy

2009-09-15 Thread kk
In previous SDK releases (1.5) the following undocumented command was functional, but now does not post any messages when accessing Network via Browser. emulator -debug-proxy -avd mydevice What is the appropriate command to troubleshoot proxy? Is this a known issue and/or bug? Rgds, KK

Re: [Ubuntu-zh] 如何让SCIM在切换到中 文输入法时仍然默认使用半角符 号呢?

2009-09-15 Thread =KK=
://zoomquiet.org 人生苦短? Pythonic! Time is unimportant, only life important! -- ubuntu-zh mailing list ubuntu-zh@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-zh -- =KK= -- ubuntu-zh mailing list ubuntu-zh@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-zh

[android-developers] Re: Supported Media Formats Programmatically

2009-09-09 Thread kk
to determine. Regards, KK On Sep 9, 5:37 pm, Ajeet Singh ajeet.invinci...@gmail.com wrote: See the class MimeTypeMap.java (frameworks\base\core\java\android \webkit) Hope this helps you. AJ kk wrote: How do I determine programmatically which Media MimeTypes/Formats are supported

[android-developers] Supported Media Formats Programmatically

2009-09-09 Thread kk
? Regards, KK --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android

[QUAD-L] Offset Door Hinges

2009-09-08 Thread KK
I only had the front door a door between my bedroom living room. All the others had been taken off a long time ago. This morning I ran my wheelchair into the door took it off the hinge. I knew the door was there. I knew I was going to hit it unless I stopped. But the message never got to my

Is it possible to integrate php with django?

2009-09-07 Thread kk
I want to implement a php e-shop module called "Ecshop" which is written in PHP with my django website. Is it possible? If not, is there any django eshop app that supports all the popular third party pay like "paypal, mastercard" etc. I found one app named "satchmo", but I am not sure whether it

Re: [ILUG-Cochin.org] buying laptop with freedos (or no windows)

2009-09-04 Thread Jemshid KK
these days hcs laptops are ubuntu preloaded. ___ ILUG Cochin Mailing List http://ilug-cochin.org/mailman/ Mailinglist@ilug-cochin.org http://ilug-cochin.org/mailman/listinfo/mailinglist_ilug-cochin.org #ilugko...@irc.freenode.net

[QUAD-L] Bluetooth cell phone

2009-09-02 Thread KK
on my ear. Is there a headset for a Bluetooth phone? I'm sure the headset I have now will fit but now is the time to ask for all the goodies that go with the new phone. KK

Re: Bihar.ozg.in - Where is social justice for Chhot Jaat

2009-08-29 Thread kk jha
Dear Dr Manish You are right. In the name of social justice many politicians have benefited without any benefit to those for which it was meant for. This is true not only in Bihar but everywhere where somebody becomes spokesperson for the oppressed without actual participation of the clients .

[sapiensinfotec] Videos sobre como montar WiFi networks, em ingles - achei interesssante.

2009-08-27 Thread KK Y-Br
disso nem daquilo, por aqui. []s KK, a autentica KITTY, e é a Katchie, r...

[Ph4nt0m] Re: HTTP tunnel使用经验 交流!

2009-08-23 Thread cool kk
端口复用技术和HTTP隧道技术完全两码事情。百度一下就知道。 2009/8/12 xiejj1984 xiejj1...@163.com 我在网上找了很多资料说HTTP tunnel 可以端口复用穿透防火墙入分,但我在本地测试了都不行啊,根本就不能端口复用。比如说如果80端口正被IIS占用,用htc连接程序马上就终止了,如果端口没有被占用能够成功。各位大牛这是什么原因造成的呢? --~--~-~--~~~---~--~~ 要向邮件组发送邮件,请发到 ph4nt0m@googlegroups.com

<    7   8   9   10   11   12   13   14   15   16   >