Re: [nox-dev] Running Lavi

2011-09-20 Thread kk yap
Seems like an invalid JSON string is being returned. See what you get when you print sock.recv(4096). Regards KK On 20 September 2011 21:13, Aaron Rosen wrote: > Thanks kk, > Quick question, I'm getting the following error with getlinks any idea? >  getnodes works fine though. &

Re: [nox-dev] Running Lavi

2011-09-20 Thread kk yap
Hi Aaron, LAVI in the zaku branch uses a new JSON format and a different port. nox-gui.py in the destiny branch is another example. More is said here: http://www.openflow.org/wk/index.php/LAVI Regards KK On 20 September 2011 15:09, Aaron Rosen wrote: > Hello, > I was thinking about wri

Re: [nox-dev] NOX routing question

2011-09-20 Thread kk yap
cool. Regards KK On 20 September 2011 13:49, danderson415 wrote: > I see. So if I set up ARP entries statically using arp command, the ping > should work, right? > Thanks for your prompt reply. > David > On Tue, Sep 20, 2011 at 4:30 AM, kk yap wrote: >> >> Hi David, >

Re: [nox-dev] NOX routing question

2011-09-20 Thread kk yap
nt item is of course responding to ARPs appropriately. All of which are not implemented in the default distribution to the best of my knowledge. Hope this information is clear. Regards KK On 19 September 2011 23:38, danderson415 wrote: > Hi Kok-Kiong, > I hope this email is not too a

[Pressemeldungen] kk borcunuzu ihmal etmeyin

2011-09-19 Thread kk-borcunuzu ödeyelim
Merhabalar, Lütfen hızlı karar veriniz. Çünkü, geciktiğiniz hergün ödemek zorunda kaldığınız faiz artmaktadır. Ödeyemediğiniz ya da asgarisini ödediğiniz kartınıza işleyen faiz sizi zor durumda bırakmaktadır. Oysa Kredifiks'den hizmet aldığınız taktirde 1.000 TL'lik borcunuz için aylık ödeyec

ocr greek language pack

2011-09-18 Thread kk
Hi! I am a greek user of free OCR V3. This programme is very useful, but it will be better for me to exist a greek language pack, because most of my PDF files are written in greek language. Please help me to improuve my daily routine. Amicably, kk -- You received this message because you are

Re: [fsug-tvm] SATA and PATA

2011-09-16 Thread Jemshid KK
On 23 August 2011 20:44, Syam Krishnan wrote: > > But when the speeds gets higher, parallel communication becomes difficult. > On a parallel data link, all lines should be synchronized (i.e. no skew) to > maintain data integrity. Further, when you have several adjacent lines > carrying data, ther

[algogeeks] SPOJ PIE

2011-09-15 Thread KK
http://www.spoj.pl/problems/PIE/ I solved this using Binary Search its similar to shake shake shaky of spoj... but still get WA :( Plzz help... #include #include using namespace std; bool solve(int *pie, int n, int mid,int f) { int sum = 0; for (int i=0; i= f) return t

[algogeeks] Re: MICROSOFT in VJTI mumbai

2011-09-14 Thread KK
@Bharatkumar bagana : that is a standard Qs which uses line sweep algo and has O(n lgn) soln other than the trivial O(n^2) soln... google that Qs... @tej bala: out of 10.. 5-6 were output type obj Q... then 1 was what's full form of GCC... its gnu compiler collection.. i made mistake in this Q.. @d

[algogeeks] Re: MS test cases type Questions

2011-09-14 Thread KK
U must mention all the boundary cases, very large input cases, -ve nos and must throw appropriate exception while coding during interviews... Questions are not too hard in MS... just they dont want buggy code... even if u allocate memory.. u should take an if condition i.e. if (p ! = NULL)...and av

[QUAD-L] Yellowstone’s New Trail Guide for Visitors Using Wheelchairs

2011-09-12 Thread KK
http://blog.amsvans.com/49461-yellowstones-new-trail-guide-for-visitors-using-wheelchairs/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Disability-News-Wheelchair-Handicap-Disabled-Blog+%28AMS+Vans+Wheelchair+Accessibility+Blog+and+Disability+News%29

Re: [nox-dev] Get a new Datapath ID?

2011-09-12 Thread kk yap
. are be done by the flow rules anyway. PS>> If your NAT box is getting its IP address via DHCP, then let me know because you can "cheat" a little to get the address in the controller. Hope this helps. Regards KK On 8 September 2011 07:37, Shrutarshi Basu wrote: > > > &g

[algogeeks] Re: MICROSOFT in VJTI mumbai

2011-09-10 Thread KK
MS visited out col with 2 profiles... written test: 3 different papers: 1 one all objectives 2nd 2 subjective problems... 1 ws to find the closest pair of points... and other was to find the bugs and provide the test cases for the already provided string copying code... then it was followed by 4 c

[algogeeks] Re: Implementing a grep

2011-09-10 Thread KK
grep is actually implemented using a suffix tree -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googleg

just click

2011-09-06 Thread General on behalf of jjj kk
http://kajendrakumar.webpromooffer.com http://www.bux2get.com/aft/297f6198/2a7dab89.html -- You received this message because you are subscribed to the Google Groups "General" group. To post to this group, send email to google-translate-general@googlegroups.com. To unsubscribe from this group,

http://www.bux2get.com/aft/297f6198/2a7dab89.html

2011-09-05 Thread General on behalf of jjj kk
http://www.bux2get.com/aft/297f6198/2a7dab89.html -- You received this message because you are subscribed to the Google Groups "General" group. To post to this group, send email to google-translate-general@googlegroups.com. To unsubscribe from this group, send email to google-translate-general+

[QUAD-L] Two Ready To Roll Wheelchair Accessible Vehicles

2011-09-04 Thread KK
United Spinal Association's blog tonight has this article about the MV-1 SE accessible vehicle. http://www.usatechguide.org/blog/ready-to-roll-accessible-vehicles/

[algogeeks] Euler Phi Function

2011-08-30 Thread KK
This is the code for the Euler phi function: int phi (int n) { int result = n; for (int i=2; i*i<=n; ++i) if (n % i == 0) { while (n % i == 0) n /= i; result -= result / i; // M NOT G

[android-security-discuss] How does Android EditText store the content internally

2011-08-29 Thread KK
String), in which case there might still be a way for a hacker to get the password out? Thanks KK -- You received this message because you are subscribed to the Google Groups "Android Security Discussions" group. To post to this group, send email to android-security-discuss@googlegrou

Re: [openflow-discuss] OpenFlow 1.1 ofp_packet_in padding clarification

2011-08-29 Thread kk yap
make sense for the switch to parse the packet before sending it to the controller (if resources and implementations can afford it). At least this would provide some consistency for malformed packets. Regards KK 2011/8/29 Zoltán Lajos Kis : > Hi, > > Thanks for the feedback. It seems this ne

[android-developers] How does Android EditText store the content internally

2011-08-27 Thread KK
String), in which case there might still be a way for a hacker to get the password out? Thanks 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

[android-developers] Button in Custom Preference gets enabled automatically

2011-08-25 Thread KK
I have a custom preference in my application which consists of a textview and a button and it is put in a preference screen. I load the layout in the onCreateView of the preference LayoutInflater inflater = (LayoutInflater)getContext(). getSystemService(Context.LAYOUT_INFLATER_SERVICE); Vie

[algogeeks] Re: C code scanf problem

2011-08-24 Thread KK
Using getchar() after the first scanf ll be much better...!! -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...

[documentation-dev] Technical Writer

2011-08-17 Thread Reji Raj KK
Hello OpenOffice Team, My name is Reji Raj. I am 27years old and I live and work in Bangalore - India. I am a budding Technical Writer and I have very least exposure to Technical Writing. Though, I spent money in getting a Cetificate through an institute, I honestly feel that, it was utter waste

[hexayurt] Re: New To Group, Need Info

2011-08-13 Thread KK
I already did my frame and it's stronger than that conduit thing. How do you attach foam panels to conduit? That's a non-starter right there. It's why that hexayurt frame is not in use. I know how to attach foam boards very securely and permanently to wooden framework. Hint in my "cooling effect"

[hexayurt] Re: New To Group, Need Info

2011-08-13 Thread KK
And, yes, SIPs are not cheap, but the DIY version may be good enough for > relatively small constructions. We're still learning. I'm waiting to be > convinced by frame designs, basically. > > Vina > > > > > > > > > > On Sat, Aug 13, 2011 at 8:30 PM, KK wrote

[hexayurt] Re: New To Group, Need Info

2011-08-13 Thread KK
lated panels. > > Vinay > > > > > > > > > > On Sat, Aug 13, 2011 at 7:54 PM, KK wrote: > > On Aug 12, 11:13 am, Donna Simonds wrote: > >  This may not work for my situation, but I will forward this info > > > to our growing numbers of homeless

[hexayurt] Re: New To Group, Need Info

2011-08-13 Thread KK
On Aug 12, 11:13 am, Donna Simonds wrote: This may not work for my situation, but I will forward this info > to our growing numbers of homeless in this country that are pretty much going > ignored. I have friends and even > family living in these tent cities. They get out daily and find work so

[algogeeks] Re: logic???????????

2011-08-12 Thread KK
Check this out //But this and fails for input such as: 101 ie all nos must be unique.. int search_element_in_rotated_array(int *a, int low, int high, int key) { while(low <= high) { int mid = low + (high - low)/2; if(a[mid] == key) return

[hexayurt] Re: New To Group, Need Info

2011-08-10 Thread KK
You at Escapees in Lakewood? Swing on up and see the frame in Roswell. Easy drive. This (+foam boards): http://youtu.be/2tZGLaLeqYc Equals (big version of this): http://youtu.be/bJXd71ZaWls If you can't stand on top of it, you don't want it: http://youtu.be/k0JNJPwY2Ic Watch the videos. On Au

[algogeeks] Re: Plz tell wat questions are asked by MICROSOFT IDC and IT both...Plz Reply fast.....anyone...!!

2011-08-10 Thread KK
Go through the last 50-100 posts... a lot of Qs have already been posted!! -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogee

[hexayurt] Re: Video test of Buckminster Fuller's Cooling Effect

2011-08-10 Thread KK
There is also the small roof turbine: http://youtu.be/nWsVl1t5NQ0 Now, I'd like to put one of these on top and see how my smoke flows through it. Problems with these? The bearings are cheap and freeze up. They also make a lot of noise all night keeping you awake. SoI'm still into an active fa

[hexayurt] Re: Video test of Buckminster Fuller's Cooling Effect

2011-08-10 Thread KK
On Aug 10, 2:06 am, Jack Senechal wrote: > So if you put a tall black chimney on top, does it significantly > increase air flow I wonder? I'd expect it to in sunny conditions... Yes, I bet it would. Now imagine a wide, black painted "chamber" in the pipe on top. There would be more surface area t

Re: [nox-dev] How to send request and fetch reply

2011-08-10 Thread kk yap
Hi Ali, You can take a look at the datapathmem component. I suspect that does most of what you want. Regards KK On 10 August 2011 02:10, ali ahmad wrote: > > Can u please tell me how to do coding for this because i am new to this .If > not possible that than please do give me the lin

[hexayurt] Re: Video test of Buckminster Fuller's Cooling Effect

2011-08-09 Thread KK
Ok...part 2 of the video test is up. http://youtu.be/bJXd71ZaWls Foam board covering. Model on ground. Outside Temp - 100 deg. F Windspeed - 7mph Sun Intensity - Off the chart! Same result. No difference. No reverse air flow downwards. So, if you are one of the "wee people" living in a tiny hex

Re: [nox-dev] How to send request and fetch reply

2011-08-09 Thread kk yap
Just listening for datapath_join_event. NOX send OFPT_FEATURES_REQUEST when a switch connects and the OFPT_FEATURES_REPLY is contained in the datapath_join_event. Regards KK On 9 August 2011 09:38, ali ahmad wrote: > Hy! >    I want to know, what's the procedure to send a request to

[algogeeks] Re: amazon test question!!!

2011-08-08 Thread KK
3 -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googlegroups.com. For more options, visit this group at h

[algogeeks] Re: Microsoft :)

2011-08-07 Thread KK
@Harshal: Thanx -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googlegroups.com. For more options, visit th

[algogeeks] Re: Directi question-centre of the tree

2011-08-07 Thread KK
Codechef Ques(Initiative of Directi) use DFS, BFS or Floyd Warshall... :) -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeek

[hexayurt] Re: For Vinay: -- Questions about foam-board choices between XPS and EPS

2011-08-06 Thread KK
On Aug 4, 2:15 pm, KK wrote: > Hmm...I'll look out here and see what they stock. They "looked" like 5 > gal buckets. ?hl=en. Here is the deal. Just got back from HD. They *are* 4.75 gal. on the label. Bucket looks like a standard "5 gal" 687 Enviro White is $1

[algogeeks] Re: Microsoft :)

2011-08-06 Thread KK
Hey Congrats!! :) I got intern dere :) -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googlegroups.com. For

Default value for If-Modified-Since Header parameter

2011-08-05 Thread Shinoj kk
Hi, I am using RestClient plug-in in FireFox to test my RESTful webservice application. I am facing below problem while using "If-Modified-Since" request header. "Eventhogh I am not giving the If-Modified-Since header parameter explicitly with the request I am getting some default value for this

[android-developers] How does android decide to cache a process?

2011-08-04 Thread KK
In Gingerbread Settings->Applications->MyApplications, the Running tab has been divided into two. Running Services and Cached Background Process. So how and when does Android decide to cache a process? Mainly is there anything my app can do to tell the system to never cache my process? Tha

[hexayurt] Re: For Vinay: -- Questions about foam-board choices between XPS and EPS

2011-08-04 Thread KK
products. I think that it would be a safe bet. The cheapest stuff had some almost deliberate marketing bullshit going on. I think some of it related to the "wateproofness". I'd avoid it (it's $80/5gal?) On Aug 3, 4:04 pm, "ken winston caine" wrote: > KK, I just l

Re: [QUAD-L] shower commode chair review - funny

2011-08-04 Thread KK
For $1,000 it should wipe your butt also. But I do like the cut out to clean your privates. KK --- On Thu, 8/4/11, Greg wrote: From: Greg Subject: [QUAD-L] shower commode chair review - funny To: quad-list@eskimo.com Date: Thursday, August 4, 2011, 9:10 AM While looking to replace my shower

Re: [nox-dev] Adding a new C component

2011-08-04 Thread kk yap
you already ran configure.sh in the root directory. Do a make clean in the root directory before running configure.sh again in the build directory. Let us know how it goes. Regards KK 2011/8/4 andrea simeoni : > Hi Zoltan, thank you for answering, > > you give me good news, but I want to

[hexayurt] Re: For Vinay: -- Questions about foam-board choices between XPS and EPS

2011-08-03 Thread KK
Ken, if you are going to encapsulate a building the white foam should be just fine. Just make sure the density is what you want. They grade it just like pink/blue board. It's all styrene based stuff, just different "toughness". But HD always carries the worst and cheapest grade on the shelves. To

[hexayurt] Re: For Vinay: -- Questions about foam-board choices between XPS and EPS

2011-08-03 Thread KK
Ok, in looking at the outgassing of polystyrene (pink/blue board), I came across this stuff. The "outgassing" hazard might not actually exist in the way commonly stated. Surfboard makers, signmakers, and aircraft builders have spread a "myth" of outgassing. It's actually delamination of their app

[hexayurt] Re: For Vinay: -- Questions about foam-board choices between XPS and EPS

2011-08-03 Thread KK
Outgassing info on pink/blue foam boards: http://www.sumidacrossing.org/SumidaCrossing/MaterialSafety.html "The typical “insulation” foam panels, including Owens-Corning’s pink Foamular brand, are Extruded Polystyrene (XPS), which is basically gas bubbles trapped in foamed plastic which has been

[hexayurt] Re: For Vinay: -- Questions about foam-board choices between XPS and EPS

2011-08-03 Thread KK
of Dow at this date" They use silicone in the production process somewhere. This means there might be silicone residue on the outside of the panels. This is why tape won't stick to blue and pink boards. On Aug 3, 10:50 am, KK wrote: > I'd like to see actual outgas hard

[hexayurt] Re: For Vinay: -- Questions about foam-board choices between XPS and EPS

2011-08-03 Thread KK
The white board is crumbly, especially the cheap foil coated stuff that HD sells right now. It's hateful to work with. Blue and pink boards do have some of the disadvantages Vinay mentioned. But, they are far superior at rejecting moisture. Dow themselves has a paper on it. I need to find it again

[hexayurt] Re: Video test of Buckminster Fuller's Cooling Effect

2011-08-02 Thread KK
ling, but no downdraft. > But still very, very weird. > > Perhaps we should get Mythbusters involved, god knows they've got the > budget. > > Vinay > > > > > > > > > > On Mon, Aug 1, 2011 at 10:57 PM, KK wrote: > > Make it happen Cap'n!

[hexayurt] Re: Video test of Buckminster Fuller's Cooling Effect

2011-08-01 Thread KK
Make it happen Cap'n! I gladly pass the torch to *you* Let us know how you make out! Cheers ;) On Aug 1, 9:34 am, Max Turunen wrote: > I'm not convinced yet... needs more testing. -- You received this message because you are subscribed to the Google Groups "hexayurt" group. To post to th

[hexayurt] Re: Video test of Buckminster Fuller's Cooling Effect

2011-08-01 Thread KK
Not gonna happen. These conditions probably cannot be met in "real life" anywhere. The proof would have been in documentation. If he did any at all. His only personal mention of this cooling (available on the net and book form) is rife with silly talk. Laurie pointed this out. There would need to

[hexayurt] Re: Video test -- P.S.

2011-08-01 Thread KK
u. Yet > he supposedly also demontrated this in the Kansas Dymaxion home. > > The "World Game," by the way, was a group activity of his that he > sponsored -- mainly on college campuses. > > Best, > ken > > > > > > > > - Original Mess

[hexayurt] Video test of Buckminster Fuller's Cooling Effect

2011-07-31 Thread KK
I tested the Buckminster Fuller cooling effect and made a video of the results http://youtu.be/BRAM-uWB3fs Unless more actual proof is forthcoming from Buckminster Fuller's archived documents or business records. My hexagon structure under a light breeze pulled the smoke up the tube with a n

[algogeeks] Re: Facebook Intern F2F Interview

2011-07-28 Thread KK
No i was not able to come up with a soln dere.. my bad :( This was my 1st interview hope the upcoming interviews would be nice!! -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com.

[algogeeks] Re: Facebook Intern F2F Interview

2011-07-28 Thread KK
@Nikhil: ya true but i dont know wht else was he expecting. @sunny and Muthu: like suppose u pass 20 then func should return true with 20% probabily and false otherwise... -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this g

[algogeeks] Facebook Intern F2F Interview

2011-07-28 Thread KK
bool foo(int x) // Implement this function where 0 <= x <= 100 It should return true x% of times n false otherwise first i told him to have a static int s then increment it each time the func is called... and if s % (100 - x ) == 0 then true else false. then he told me to have some diff

Re: [nox-dev] Change the destination of packets

2011-07-25 Thread kk yap
There is no flow_mod in both files? Any reason why? Regards KK On 25 July 2011 12:45, Ricardo Bennesby wrote: > Hi. > I am really sorry. I had not specified the port of the controller previously > in tcpdump. > Now it is dumping the control traffic. > Sorry for confusion. Hope i

Re: [nox-dev] Change the destination of packets

2011-07-25 Thread kk yap
There are no OpenFlow control traffic in both. In fact, the second file is empty? Regards KK On 25 July 2011 07:30, Ricardo Bennesby wrote: > Hi. > The files generated by tcpdump in both controllers are attached. > Hope it helps. > Please let me know if it is wrong. > Thanks f

[algogeeks] Re: SPOJ

2011-07-25 Thread KK
@piyush: even if r = di and c = dj then whats the prob?? -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@goo

[algogeeks] Re: SPOJ

2011-07-25 Thread KK
@shady: if ur not interested dont post ur comment, but let others do it.. @viswamath: WA -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send ema

Re: [nox-dev] Change the destination of packets

2011-07-24 Thread kk yap
_addr("10.0.0.2"); > In past discussions in the list, was said that openflow does routing in > Layer 2. Is this a cause of destination IP does not change? Or am I missing > something? > Thank you very much for help. > Best Regards. > > 2011/7/21 kk yap >> >>

[algogeeks] SPOJ

2011-07-23 Thread KK
www.spoj.pl/problems/SHOP Its a pretty easy Q... But m not able to figure out any silly mistake in my prog.. plzz help #include #include #include #include using namespace std; char a[26][26]; int si, sj, di, dj, rows, cols; void BFS(vector< vector > &v, int si, int sj, int rows, int cols); int

[hexayurt] Re: Windows and COOLING on the PLAYA

2011-07-22 Thread KK
On Jul 22, 12:33 pm, "ken winston caine" wrote: > I have the Endless Breeze, too. And like it as far as 12v box fans go. > > Maybe I should pair it with its own solar panel so it's not drawing down my > house batteries. > > Did find specs but did not find prices for the Snap-Fan at the company sit

Re: [QUAD-L] How hot is it by you?

2011-07-22 Thread KK
National news this morning said New York was going to be the hottest place in the states. Houston TX area has been cool this last week with high temp in the lower 90's KK From: Bobbie Humphreys To: "quad-list@eskimo.com" Sent: Friday, July 2

[hexayurt] Re: Windows and COOLING on the PLAYA

2011-07-22 Thread KK
This is for Ken and others making coolers etc: http://www.snap-fan.com/ Made in US. Ultra low power DC fans with real CFM. I personally own an Endless Breeze 12v RV/portable fan. It's pretty good but it's not like Snap Fan models. Three settings, some guy measured the power draw. low: 15 Watts

Re: [nox-dev] handle_flow_route Event

2011-07-21 Thread kk yap
t occur? " > I guess the answer is when there is a flow mod to the host. You can verify by doing a grep to see which component post the event. Hope this is useful. Regards KK > for example handle_req handling JSON event occur, when lavi receive json > message from envi. >

Re: [nox-dev] handle_flow_route Event

2011-07-21 Thread kk yap
Sorry, I continue to be lost. if you want to send flows to ENVI, look at lavi_hostflow.cc line 34 to 60 for an example. Basically, a list of flow is created and the send_flow_list function is called. Regards KK 2011/7/21 Min-Hyup KANG > Yes, sorry for not clearness. > > > 2,

Re: [nox-dev] handle_flow_route Event

2011-07-21 Thread kk yap
Is there a question in this email? KK 2011/7/21 Min-Hyup KANG > Thank you for your response. > > > 1. " You need to include the header file for the definition of the event, > then create the event, populate it and post it." > > ->Basically, th

Re: [nox-dev] Change the destination of packets

2011-07-21 Thread kk yap
A tcpdump of the control traffic will be useful and easier. Regards KK On 21 July 2011 16:04, Ricardo Bennesby wrote: > Hi KK. I tested as you suggested. > ofm->match.nw_dst = htons(36677824); // I tested also ofm->match.nw_dst = > flow.nw_dst; > and in the action I did: &

Re: [nox-dev] handle_flow_route Event

2011-07-21 Thread kk yap
) for an example. Regards KK PS>> Sorry, I did not find time to look up the code before replying. 2011/7/18 Min-Hyup KANG > Hi All, > > > I am currently trying to understand relation between LAVI and ENVI. > > > especially, I am looking at part of lavi_flow a

Re: [nox-dev] Change the destination of packets

2011-07-21 Thread kk yap
Hi Ricardo, Try matching on the old IP, then rewrite to the new IP. Regards KK On 20 July 2011 14:50, Ricardo Bennesby wrote: > Hi all. I would like to forward packets from one host to another. > I have the following topology: >    c0              c0 >     |              

Re: [QUAD-L] # of medications

2011-07-21 Thread KK
ayors, & such don't like it when you don't remember their names.  KK #yiv1258173291 #yiv1258173291avg_ls_inline_popup{padding:0px 0px;margin-left:0px;margin-top:0px;overflow:hidden;word-wrap:break-word;color:black;font-size:10px;text-align:left;line-height:130%;}

Re: [QUAD-L] # of medications

2011-07-20 Thread KK
8 years ago, while I was still working, I was on 15.  Since retiring I am now on 7.  Terrible to get old! KK #yiv1836069546 #yiv1836069546avg_ls_inline_popup{padding:0px 0px;margin-left:0px;margin-top:0px;overflow:hidden;word-wrap:break-word;color:black;font-size:10px;text-align:left;line

Re: [openflow-discuss] stream: connection closed by peer ( Switch flapping )

2011-07-15 Thread kk yap
when you send the packet with this datapath id, NOX cannot from a socket with this datapath ('cos it's removed). Hence, the error. Regards KK > > Aaron > > > > On Fri, Jul 15, 2011 at 12:21 PM, Aaron Rosen wrote: >> Hi Nick, >> >> http://codepad

Re: [openflow-discuss] stream: connection closed by peer ( Switch flapping )

2011-07-15 Thread kk yap
> Is there an easy way to tell flowvisor not to use v6? Or should I > disable it in the OS? Should this matter? TCP works over IPv6 right? Regards KK On 15 July 2011 09:21, Aaron Rosen wrote: > Hi Nick, > > http://codepad.org/0doGkR8G > > Also the machine does have an

Re: [openflow-discuss] stream: connection closed by peer ( Switch flapping )

2011-07-14 Thread kk yap
ature replies. Look at the dump from packet 210 onwards. NOX is just saying "Don't spam me! :P " The dpid is exactly the same on those feature replies. Bad HP?!?! Regards KK On 14 July 2011 15:14, Aaron Rosen wrote: > Hi Srini, > > I'm actua

Re: [openflow-discuss] stream: connection closed by peer ( Switch flapping )

2011-07-14 Thread kk yap
The switch is the one disconnected here? I assume the log is from NOX which is complaining the peer disconnected. A tcpdump of the control traffic might help here. Regards KK On 14 July 2011 13:57, Rob Sherwood wrote: > Usually this is the case with NOX (and AFAICT, only nox) when you h

Re: [nox-dev] A discovery question

2011-07-14 Thread kk yap
Oops.. I read the GENI document again, and Murphy is right in that the multicast address is different here. My apologies. This address will be forwarded by mac bridges though. Won't this be risking a broadcast storm? Am I missing something again? Regards KK On 14 July 2011 13:23, k

Re: [nox-dev] A discovery question

2011-07-14 Thread kk yap
. Regards KK 2011/7/14 Murphy McCauley : > Right.  Someone correct me if I am wrong here, but really the only > difference between OFDP and normal LLDP is that OFDP uses a normal multicast > address so that it can see connectivity across non-OpenFlow switches. > The purpose being... if

Re: [openflow-discuss] OpenFlow Wireless

2011-07-14 Thread kk yap
wireless mesh, and therefore much more knowledgeable in this topic than I am. I would let them comment instead. Regards KK On 14 July 2011 12:16, Alexey Bogaevskiy wrote: > Hi Aaron, > I am just trying to find out what is possible, before I start doing > something that can't be done...

Re: [openflow-discuss] OpenFlow Wireless

2011-07-14 Thread kk yap
Hi Alex, Would you mind explaining with a diagram? I do not understand what you mean? Regards KK On 14 July 2011 11:32, Alexey Bogaevskiy wrote: > Hello, > I had a general question on whether a particular set-up is possible... > I am trying to set up a AP that is connected to the c

Re: [openflow-discuss] keepalive_subagent not running properly

2011-07-11 Thread kk yap
Given that your trap and wifi subagents are running, I can only assume your SNMP setup is ok. The most likely cause is a mismatch of OpenFlow setup and the SNMP setup. If the version is correct, I am not sure what else is wrong. Nikhil, can you think of anything else? Regards KK On 11 July

Re: [openflow-discuss] keepalive_subagent not running properly

2011-07-11 Thread kk yap
That should be fine. What is the error when you started the agent manually? You should not start the agent until OpenFlow is loaded, since you are mucking with the loading of stuff. Regards KK On 11 July 2011 10:45, man monaco wrote: > Hi KK, > > I would use openflow-1.0. he

Re: [openflow-discuss] keepalive_subagent not running properly

2011-07-11 Thread kk yap
Two things to check. * Which version of OpenFlow reference switch are you running? * Is your network up? Seems like the error is saying your wlan1 is down. Regards KK On 11 July 2011 09:44, man monaco wrote: > Hi, > > I installed Openroads recently, everything seems to work as req

Re: [openflow-discuss] OpenRoads snmp setup page

2011-07-08 Thread kk yap
what the setup is and what traffic the client is sending. Regards KK On 8 July 2011 09:27, man monaco wrote: > Hi KK, > > I finally got this to work, thanks for the instructions. I basically > downloaded the noxcore+openroads+openflow git's to the PC Engine itself

[algogeeks] Re: DP or DFS

2011-07-07 Thread KK
Can u elaborate something on implementation.?? -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googlegro

[algogeeks] DP or DFS

2011-07-06 Thread KK
https://www.spoj.pl/problems/SHOP/ Anybody plzz post a solution to the above problem... i tried with dp but it failed... How to implement with DFS or if possible with DP??? -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group

[algogeeks] Re: Some adobe interview questions.

2011-07-06 Thread KK
for Q5 change the expr into postfix and then build expression tree... but is expression tree same as parse tree?? correct me if i m wrong!! -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googleg

[algogeeks] Re: Help!!

2011-07-06 Thread KK
Hey anyone Pl help... its clearly written code and algo u know vry well so it wont take much time :) On Jul 5, 8:43 pm, KK wrote: > This is the solution to the MST problem > m getting WA again n again... cant figure out where's the mistake... > so plzzz help!!!https

Re: [openflow-discuss] dpctl and nw_src

2011-07-05 Thread kk yap
Hi, You probably want to add dl_type=0x0800. FYI. Regards KK On 5 July 2011 16:26, Ali Khalfan wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA512 > > I do the following command on dpctl 1.0.0 > > dpctl add-flow tcp:127.0.0.1:6634 > dl_dst=00:00:00:00:00:06,nw_src=

[algogeeks] Help!!

2011-07-05 Thread KK
This is the solution to the MST problem m getting WA again n again... cant figure out where's the mistake... so plzzz help!!! https://www.spoj.pl/problems/BLINNET/ #include #include #include #include #include #define MAXINT (int)9e9 #define TR(a,it)for(typeof((a).begin()) it=(a).beg

[algogeeks] Re: Recurrence Relation

2011-07-02 Thread KK
Answer (B) Let n = 2^m, T(n) = T(2^m) Let T(2^m) = S(m) >From the above two, T(n) = S(m) S(m) = 2S(m/2) + C1 Above expression is a binary tree traversal recursion whose time complexity is (m). You can also prove using Master theorem. S(m) = (m) = (logn) /* Since n = 2^m */ Now, let

[algogeeks] Recurrence Relation

2011-07-02 Thread KK
3. Consider the following recurrence: T(n) = 2T(n ^ (1/2)) + 1 Which one of the following is true? (A) T(n) = (loglogn) (B) T(n) = (logn) (C) T(n) = (sqrt(n)) (D) T(n) = (n) Can we solve this using master theorem??? any other way??? -- You received this message because you are subscribed to th

[algogeeks] Re: GATE 2011 C Ques

2011-07-02 Thread KK
got it dont bother!!! anyway thanx abhijith!!! -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to algogeeks+unsubscr...@googlegroups.

[algogeeks] GATE 2011 C Ques

2011-07-02 Thread KK
10. What does the following fragment of C-program print? char c[] = "GATE2011"; char *p =c; printf("%s", p + p[3] - p[1]); (A) GATE2011 (B) E2011 (C) 2011 (D) 011 Answer: - (C) why is p[3] - p[1] returning 4 -- You received this message because you are subscribed to the Google Groups "A

Re: [openflow-discuss] OpenRoads snmp setup page

2011-06-30 Thread kk yap
be added to the netapps. 4) In the zaku branch of NOX, you will find traphandler.py which should be registered in snmptrapd.conf to handle traps. With these in place, you should be able to listen in on SNMP traps and SNMP get/set in NOX. Hope this will get you going. Regards KK On 29 June 2011

Re: [openflow-discuss] OpenRoads snmp setup page

2011-06-29 Thread kk yap
Hi Landy, Can you checkout the of1.0-noxdestiny branch instead? The snmp_executor is not needed anymore in that branch. There was some changes made to NOX and therefore the changes were made when we transited from OpenFlow v0.8.9 to v1.0. Regards KK On 28 June 2011 13:02, man monaco wrote

<    4   5   6   7   8   9   10   11   12   13   >