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/
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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?
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
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
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
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
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
23 matches
Mail list logo