SunLisp III: Lisp jobs and beer in Ft Lauderdale

2011-02-08 Thread kenny
Come on down to the Frog & Toad for wild and crazy debates over parentheses on their own line and bring your resume -- the SunLisp core is from an up and coming Ft Lauderdale firm that is still looking for local Lisp (or Scheme or Clojure or...) talent. The pub: http://www.thefrogandtoadpub.com/

SUNLisp 2: Josh vs. Kenny Flamewars Galore!!

2011-01-03 Thread kenny
All they agree on is Common Lisp! Come join the Yobbos of MCNA at the Frog & Toad for booze, vino, and great food and knock down drag out debates galore on everything from Cells to Lisp IDEs: When: Tomorrow Tuesday, at 7pm Where: http://www.thefrogandtoadpub.com/ HK -- http://mail.python.org/ma

Mo Better Lisp Jobs

2010-12-22 Thread kenny
Check it out: http://lispjobs.wordpress.com/2010/12/22/lisp-developer-mcna-fort-laurderdale-florida/ We already have six splendid folks but business is booming and at least one contract bid has to happen faster than we thought (potential client moved it up) so we are looking to take on a couple m

SunLisp: A new Lisp drinking society in Ft Lauderdale, FL debuting 7PM, Pearl Harbor Day

2010-12-04 Thread kenny
In case you missed it, SunLisp is debuting on Pearl Harbor Day (December 7th) at 7PM. It's been added to the Lisp Meetings Calendar as well. Who: His Kennyness, his CIO Dan (can you say "Lisp jobs"? Sher ya can) and a notable group of Lispers doing a nice project in FL and anyone who cares to joi

isnan

2010-10-11 Thread Kenny
Hi All, I have an array A, and another one B with same dimention and size. Now I want to change the delete the elements in A where the same position in B is nan. How can I do. Similar to the matlab code A(find(isnan(B)) = [] Thank you. -- Best regards, Kenny -- http://mail.python.org

Re: formatted input

2010-09-07 Thread Kenny Meyer
ords1") match_2 = re.compile("^words2") # Return a match object each re.match(match_1, "word11") re.match(match_2, "word21") I'm sure there are might be other ways to do the same thing. -- - Kenny Meyer To understand recursion, we must first understand recursion. -- -- http://mail.python.org/mailman/listinfo/python-list

Re: cscope like source code navigation for python code

2010-08-08 Thread Kenny Meyer
an option. > Unfortunately it is from 2006 and reported (and aborted) on a syntax > error of one of my files. > > My file is running and passes pylint / pychecker. > > So I'm afraid, that the code might be outdated. > I'll investigte perhaps a little more. I wonder

Re: Check if a command is valid

2010-07-14 Thread Kenny Meyer
On Jul 13, 4:14 pm, Hans Mulder wrote: > Chris Rebert wrote: > > `where` seems to be a zsh built-in: > > $ # I'm in UR bash > > $ nonexistent > > -bash: nonexistent: command not found > > $ where bash > > -bash: where: command not found > > > And not everyone has zsh installed, so... > > I don't s

Re: Check if a command is valid

2010-07-13 Thread Kenny Meyer
Chris Rebert (c...@rebertia.com) wrote: > On Mon, Jul 12, 2010 at 6:29 PM, Kenny Meyer wrote: > > Hello, > > > > I have to figure out if a string is callable on a Linux system. I'm > > "callable" seems vague. Is a command string with invalid arguments

Check if a command is valid

2010-07-12 Thread Kenny Meyer
Hello, I have to figure out if a string is callable on a Linux system. I'm actually doing this: def is_valid_command(command): retcode = 100 # initialize if command: retcode = subprocess.call(command, shell=True) if retcode is 0: print "Valid co

Re: plac, the easiest command line arguments parser in the world

2010-06-04 Thread Kenny Meyer
On Jun 2, 12:37 am, Michele Simionato wrote: > I would like to announce to the world the first public release of > plac: > >  http://pypi.python.org/pypi/plac > > Plac is a wrapper over argparse and works in all versions of > Python starting from Python 2.3 up to Python 3.1. > > With blatant immod

Re: Help with my program

2009-10-22 Thread Kenny Shen
Indeed, thanks for reminding me of that. The following should suffice: class A: def __init__(self): self.height = 1 self.weight = 7 self.name = "tanner" self.grade = "A" class B: def __init__(self, a): self.info = [a.height, a.weight, a.name, a.grade] prin

Re: Help with my program

2009-10-22 Thread Kenny Shen
t) info.append(self.height) info.append(self.grade) return info class B: def __init__(self, a): self.info = a.getinfo() print self.info a = A() b = B(a) Thanks, Kenny On Fri, Oct 23, 2009 at 9:59 AM, tanner barnes wrote: > Ok so im in need of some help! I have a pro

wxPython 2.8 for Python 2.6

2009-04-19 Thread Kenny x
I hate building from the source. Especially when wxPython has all these flags and I don't know what they mean. Is there any way? I hate building from the source, and want to use Python 2.6 with wxPython 2.8 -- http://mail.python.org/mailman/listinfo/python-list

wxPython 2.8 for Python 2.6 on Linux

2009-04-18 Thread Kenny x
Hello, I use Ubuntu 8.10 and the latest version of Python. I started programming wxPython on my Windows computer, but now I have access to my ubuntu box, and want wxPython for 2.6 All the debs in the package manager are for 2.5, not 2.6 How can I Install wxPython for Python 2.6 without building

Help with wxPython program :.: return 1?

2009-04-05 Thread Kenny x
Hello, I have a problem with my wxPython 2.8 Application. The program opens and closes and on KomodoEdit it says "wxstreamredirect.py returned 1.' What's wrong? http://paste.pocoo.org/show/80/ P.S. I compared my source code to the source code in wxPython in Action, and it looks the same! Why

Re: Important Research Project

2007-09-01 Thread Kenny McCormack
In article <[EMAIL PROTECTED]>, Keith Thompson <[EMAIL PROTECTED]> wrote: >"E.D.G." <[EMAIL PROTECTED]> writes: >> "CBFalconer" <[EMAIL PROTECTED]> wrote in message >> news:[EMAIL PROTECTED] >>> "E.D.G." wrote: >> >>> Where is Perl described in the C standard? This seems rather OT. >> >> It has b

Python/Spyce outputting

2006-02-24 Thread Kenny
I am accessing a database through python and displaying it through the web using spyce. My goal is to get a table on my webpage that displays the queries that I am doing but in a table format that looks good rather than the raw text output. Is there a reference out there that can help me do that?

Re: Python Oracle Interace on Solaris

2006-02-17 Thread Kenny
Thanks... Im not sure if you would know how to solve this one, but when I ran my setup python scripts I got the error: library -lclntsh not found. In the instantclient folder the library exists... is this a matter of just copying the libraries to a different spot or just setting up the correct envi

Re: Xah's Edu Corner: accountability & lying thru the teeth

2006-02-14 Thread Kenny Tilton
Al Balmer wrote: > On Tue, 14 Feb 2006 23:59:19 GMT, Kenny Tilton > <[EMAIL PROTECTED]> wrote: > > >>Ulrich Hobelmann wrote: >> >>>Xah Lee wrote: >>> >>> >>>>here's a site: http://www.longbets.org/bets that takes social

Re: Xah's Edu Corner: accountability & lying thru the teeth

2006-02-14 Thread Kenny Tilton
Ulrich Hobelmann wrote: > Xah Lee wrote: > >> here's a site: http://www.longbets.org/bets that takes socially >> important predictions. I might have to enter one or two. >> >> i longed for such a accountable predictions for a long time. Usually, >> some fucking fart will do predictions, but the pr

special operator =+

2005-12-15 Thread kenny Nguyen
Hi, Does anyone know the operator "=+"? If you do, what special method is related to this operator? Is it the __iadd__ method, but I think this is related to "+=" operator. Thanks, Kenny -- http://mail.python.org/mailman/listinfo/python-list

Re: What is Expresiveness in a Computer Language?

2005-07-10 Thread Kenny McCormack
In article <[EMAIL PROTECTED]>, Pete Barrett <[EMAIL PROTECTED]> wrote: >On 10 Jul 2005 02:57:04 -0700, "Xah Lee" <[EMAIL PROTECTED]> wrote: > >>Similarly, in computer languages, expressiveness is significant with >>respect to semantics, not syntactical variation. >> >It may just be me, but I tend