Re: xkcd.com/353 ( Flying with Python )

2024-04-01 Thread inhahe via Python-list
On Mon, Apr 1, 2024 at 1:26 PM HenHanna via Python-list <
python-list@python.org> wrote:

> Johanne Fairchild wrote:
>
> > HenHanna  writes:
>
> >> https://xkcd.com/1306/
> >>  what does  SIGIL   mean?
>
> >   A glyph used in magic. Or, for Perl, the symbol in front of a variable
> >   name, such as $, @, and %.
>
> >   Source:   https://perldoc.perl.org/perlglossary#sigil
>
> >   Sigil is noun. Definitions:
>
> >   A seal; a signet.
> >   A sign or an image considered magical.
> >   A seal; a signature.
>
> >   Source:  The American Heritage® Dictionary of the English
> Language, 5th Edition.
>
>
>
>
>
> omg...Sigil  is a real word???
>
>
> The word "sigil" comes from the Latin term "sigillum," which means "little
> sign."  This Latin root is also the source of our English word "seal,"
> making "sigil" and "seal" doublets.
>
>   https://en.wiktionary.org/wiki/sigil
>
>
>
I understand "sigil" as referring to symbols occultists make up and use to
aid in their magick.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python for irc client

2024-07-04 Thread inhahe via Python-list
On Thu, Jul 4, 2024 at 5:14 AM Daniel via Python-list <
python-list@python.org> wrote:

> Hi guys -
>
> I have historical experience developing sofwtare for my own use. It has
> been
> quite a while since doing so and the advent of new languages has brought me
> here. Python has built quite a reputation. It would be fun to pick up a
> new language while I'm at it.
>
> I've been a consumer of IRC since the nineties and have been running an
> instance of quassel core on an old laptop for the last decade. Over the
> years, my use of xwindows has dramatically decreased and I spend 90% of my
> computer time with multiple panes of tmux while I do my usual daily fun.
> One
> thing missing is a good textmode irc client that will connect to quassel
> core.
>
> I've seen efforts to make a plugin for weechat but, to date, I don't see
> much
> progress on that end.
>
> In your wisdom, would python be a good environment to accomplish this? I'd
> likely use extended ascii and colors. The point would be to minimize the
> memory footprint of the application.
>
> I don't use standard desktop computers anymore - I'm writing this on my
> beloved pi400 using emacs.
>
> Thanks
>
> Daniel
> --
> https://mail.python.org/mailman/listinfo/python-list


I think Python would be a great language to write an IRC client in, it's a
rapid-development language, and also Python is particularly good for text
manipulation and the IRC protocol is textual rather than binary. But, if
your only purpose for using Python is to reduce the memory footprint, I'm
not sure. I don't know specifically, but I'd guess Python has a higher
memory footprint than, say, C, because it's a high-level language. For
example, each variable has to be boxed, and also the interpreter has to be
loaded..

Regarding high ASCII, I don't know if that works in IRC, but either way,
ASCII isn't really enough nowadays. You need to support Unicode;
specifically, UTF-8.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: python for irc client

2024-07-04 Thread inhahe via Python-list
On Thu, Jul 4, 2024 at 5:22 AM inhahe  wrote:

>
>
> On Thu, Jul 4, 2024 at 5:14 AM Daniel via Python-list <
> python-list@python.org> wrote:
>
>>
>> In your wisdom, would python be a good environment to accomplish this?
>
>

> I think Python would be a great language to write an IRC client in, it's a
> rapid-development language, and also Python is particularly good for text
> manipulation and the IRC protocol is textual rather than binary.
>

Oh yeah, I forgot I was going to mention that Twisted has already done a
lot of the dirty work for you if you make it in Python...they have twisted.
words.protocols.irc, which implements the IRC protocol. (I don't know if
it's up to date and supports ircv3, though.)
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: "Getting 'This app can’t run on your PC' (Access Denied) error when running Python or checking version in CMD on Windows 11"

2025-03-08 Thread inhahe via Python-list
I just recently found out that Windows 11 has an option to only allow apps
from the Microsoft store. I think it was an option I happened to see
somewhere. Maybe that option is set on your PC? If you've already installed
and run other non-Microsoft apps, maybe that option got changed recently by
accident? I don't know.

On Sat, 8 Mar 2025 at 16:59, Praveen Kumar via Python-list <
python-list@python.org> wrote:

> Hi Python community and members,
>
> I hope this email finds you well, I want you to be assisted in resolving
> this following issue. kindly look at the below concern,
>
> """I’m running into an error where I get a 'This app can’t run on your PC'
> pop-up with (Access is Denied error) whenever I try to run the Python
> version (python --version) or run python.exe in the Command Prompt on
> Windows 11."""
>
>
> *Here’s what I’ve tried so far:*
>
> *Uninstalled python software from the apps settings and reinstalled python
> software from the official python.org site
>
> *Added Python to the PATH in the Environment Variables. (system variables,
> User variables.)
>
> ***C:\Users\Bharath\AppData\Local\Programs\Python\Python313\
> ***C:\Users\Bharath\AppData\Local\Programs\Python\Python313\Scripts\
>
> * however, then after I tried running direct path execution in the cmd.
> "C:\Users\Bharath\AppData\Local\Programs\Python\Python313\python.exe"
> --version, however it works well and it executed and showed the version,
> but without file path, it won't work anyway.
>
> * Additionally I've checked windows apps interference whether it is causing
> this error, and I saw a couple of python.exe files in this folder contains
> 0KB size then I thought these were corrupted and after I tried deleting
> these files, later I re-checked in cmd, however the issue persisted. refer
> to the following error for your further reference.
>
>
>
> *https://i.sstatic.net/6koOnZBM.png
> https://i.sstatic.net/65JC9FuB.png
> *
>
> * Ran the Command Prompt as an administrator.
>
> *Tried multiple other troubleshooting steps, but none of them worked.
>
> Despite these efforts, the issue persists. Could someone please help me
> resolve this?
>
> Extending my request you to kindly help me out of this error and give me
> the root cause of this problem.
>
>
> *Kind regards, *
>
> *Sincerely,*
>
> *Praveen Kumar*
>
> *Mob: *+91 9515531643
> --
> https://mail.python.org/mailman/listinfo/python-list
>
-- 
https://mail.python.org/mailman/listinfo/python-list