Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <37icnX3evff1T_n7nZ2dnZfqn_cAAAAA@giganews.com>
Deutsch   English   Français   Italiano  
<37icnX3evff1T_n7nZ2dnZfqn_cAAAAA@giganews.com>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!Xl.tags.giganews.com!local-2.nntp.ord.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 08 Jun 2024 21:51:36 +0000
Subject: Re: Languages
Newsgroups: comp.os.linux.advocacy
References: <17d716103c089ab3$7951$675878$802601b3@news.usenetexpress.com>
 <ej496jd0tb59u2l0nqtghq3u9ahhmann3s@4ax.com>
 <lcjnnuF896hU5@mid.individual.net>
 <kma96j1no1tp926ctejldkdk2c19aeruft@4ax.com>
 <lcjvk1F9n7aU1@mid.individual.net>
 <2ej96j1mbvgiok4q5c57vdlo94itpfu5dt@4ax.com> <v42jjg$2nd7m$1@dont-email.me>
From: % <pursent100@gmail.com>
Date: Sat, 8 Jun 2024 14:51:35 -0700
User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:91.0) Gecko/20100101
 Firefox/91.0 SeaMonkey/2.53.18.2
MIME-Version: 1.0
In-Reply-To: <v42jjg$2nd7m$1@dont-email.me>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Antivirus: AVG (VPS 240608-6, 2024-6-8), Outbound message
X-Antivirus-Status: Clean
Message-ID: <37icnX3evff1T_n7nZ2dnZfqn_cAAAAA@giganews.com>
Lines: 61
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-L3PLSWSBv1MKIGOni8jhNqFGgq6soyGv5DP16D/hntncgAh71o8YtJJm9dOng3+3r8gJBej+85c2KAV!x7XL4YxEtwXfQrpGvzT9A/Eb0+35HmXaZ60sNz4qiGM4VTPGoKPGyD8we2YHw0fWeUlT2WVOx2ra
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
Bytes: 3968

vallor wrote:
> On Sat, 08 Jun 2024 17:32:14 -0400, Joel <joelcrump@gmail.com> wrote in
> <2ej96j1mbvgiok4q5c57vdlo94itpfu5dt@4ax.com>:
> 
>> rbowman <bowman@montana.com> wrote:
>>
>>>>>> Free hint:  don't use something you're not into using.  What little
>>>>>> I've seen of Python seemed like a child's toy, but guess what, I
>>>>>> didn't explore further.  Relax, smoke a doobie, dude.
>>>>>
>>>>> You should dig a little deeper.
>>>>
>>>> To do what?
>>>
>>> I have no idea what you want to do with a computer. Do you do data
>>> analysis? Python with pandas, numpy, and related modules is overtaking R
>>> in that field. The python implementations are usually faster than R which
>>> says something about R's lack of performance.
>>>
>>> Machine learning? PyTorch and TensorFlow offer two approaches. Create a
>>> desktop GUI applcation? I prefer Pyside6, which is a Qt binding, but there
>>> are other alternatives including Tkinter.  Web application? Django, Flask,
>>> and FastAPI offer different approaches and degrees of opinionation. Work
>>> with microcontrollers using the RP2040 chip. MicroPython and CircuitPython
>>> make rapid development possible.  Like comics? I have a script that gets
>>> the ones I'm interested in from gocomics.  Music? I've got one that
>>> queries the itunes data base for artist or song information. Databases?
>>> Pick your poison.
>>>
>>> So, what do you want to do? Of course you can do all of the above with C,
>>> C++, or another language but you may be writing more code and doing more
>>> debugging. If the Python prototype is too slow you can rewrite it. For
>>> example I did the itunes thing in both Python and C#.NET to test the .NET
>>> SDK on Linux.
>>
>>
>> I can't imagine I'd need anything beyond C.
> 
> My go-to language has always been perl, but I use
> C when I need performance...or very strict security,
> like with a setuid wrapper.
> 
> Python is filling the niche that perl had before it
> kind of stagnated[*].  If I want to slurp in a huge json
> file and analyze it, I'd probably write that in perl (and
> I have, in one case).
> 
> [*] Or rather, took off into the weeds...
> 
> I asked chatGPT to write a "quine" in python recently,
> and found it extremely easy to improve on the answer it
> gave me:
> 
> $ cat quine.py
> #!/usr/bin/python3
> 
> with open(__file__, 'r') as file:
>      print(file.read())
> - -%<- -
> 
it's me it's me