namekuseijin writes:
> On 11 out, 08:49, Oleg Parashchenko wrote:
>> Hello,
>>
>> I'd like to try the idea that Scheme can be considered as a new
>> portable assembler. We could code something in Scheme and then compile
>> it to PHP or Python or Java or whatever.
>>
>> Any suggestions and point
namekuseijin writes:
> On 13 out, 19:41, p...@informatimago.com (Pascal J. Bourguignon)
> wrote:
>> namekuseijin writes:
>> > On 11 out, 08:49, Oleg Parashchenko wrote:
>> >> Hello,
>>
>> >> I'd like to try the idea that Scheme can b
Lawrence D'Oliveiro writes:
> Would it be right to say that the only Lisp still in common use is the Elisp
> built into Emacs?
The lisps in common use nowadays are emacs lisp, Common Lisp, and the
various schemes, from R4RS to R6RS.
Some other lisps are in use in niches too. Eg. guile (a kind
sthueb...@googlemail.com (Stefan Hübner) writes:
>> Would it be right to say that the only Lisp still in common use is the Elisp
>> built into Emacs?
>
> Clojure (http://clojure.org) is a Lisp on the JVM. It's gaining more and
> more traction.
There are actually 2 REAL Lisp on the JVM:
- abcl
Alain Ketterlin writes:
> Lawrence D'Oliveiro writes:
>
Would it be right to say that the only Lisp still in common use is the
Elisp built into Emacs?
>>>
>>> There is a new version of Lisp called Clojure that runs on the Java
>>> Virtual Machine (JVM) that is on the upswing.
>>
>> No
kodifik writes:
> On Oct 28, 1:55 am, Lawrence D'Oliveiro central.gen.new_zealand> wrote:
>> Would it be right to say that the only Lisp still in common use is the Elisp
>> built into Emacs?
>
> Surely surpassed by autolisp (a xlisp derivative inside the Autocad
> engineering software).
I would
Hi,
I would like to know if for a small app for instance that requires a connection
to a remote server database if php is more suitable than Python mainly
regarding security.
Php requires one port for http and one port for the connection to the database
open. If using Python with a tkinter gui,
Hello,
I have already posted a message some time ago for this app. Since then, I
didn't code in python or made any changes. I think before getting further with
functionnalities a few things or the whole thing need to be changed.
For exemple, it would need a button to pick folders and maybe ask if
Hello,
I would like to know how possible it is to call a member function from a class
and pass it a variable
Example:
class Application(tk.Frame):
"""docstring for ."""
def __init__(self, parent):
super(Application, self).__init__(parent)
self.parent = parent
par
, f_size/1048576, f_size/1073741824)
fp = open(output_file, "w")
fp.write(csv_contents)
fp.close()
### END OF SCRIPT###
When I run this script, I get files in subfolders. For now, I need to keep
using "os.walk" because the script includes functions that I didn't include to
make thing simple.
Pascal
--
https://mail.python.org/mailman/listinfo/python-list
Please advise if the following is ok (i don't think it is)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
csv_contents = ""
output_file = '/home/user/Documents/csv/output3csv.csv'
Lpath = '/home/user/Documents/'
csv_contents = "FOLDER PATH;Size in Byte;Size in Kb;Size in Mb;Size in Gb
ok, i came up with
if os.path.isfile(path)
following
path = os.path.join(Lpath, f)
and it seems to be ok, no dupplicates or wrong sizes...
thanks
--
https://mail.python.org/mailman/listinfo/python-list
I need to change the script commented out to the one not commented out. Why?
# for x in sorted (fr, key=str.lower):
# tmpstr = x.rpartition(';')[2]
# if x != csv_contents and tmpstr == "folder\n":
# csv_contentsB += x
# elif x != csv_contents and tmpstr == "
On Tuesday, September 29, 2020 at 5:28:22 PM UTC+2, MRAB wrote:
> On 2020-09-29 15:42, pascal z via Python-list wrote:
> > I need to change the script commented out to the one not commented out. Why?
> >
> > # for x in sorted (fr, key=str.lower):
> > # t
On Thursday, September 24, 2020 at 4:37:07 PM UTC+2, Terry Reedy wrote:
> On 9/23/2020 7:24 PM, pascal z via Python-list wrote:
> > Please advise if the following is ok (i don't think it is)
> >
> > #!/usr/bin/env python3
> > # -*- coding: utf-8 -*-
> >
Hi,
This is a python app I was working on, can you help making it a beautiful
looking app like bleachbit or ccleaner?
The whole code below (what it does: it lists all folders and files from a
specified path and tells some infos like size in mb or gb... and export it to a
csv file for further p
any way to attach a file because I loose indentation?
--
https://mail.python.org/mailman/listinfo/python-list
And something important to this app, is about listing files, how to avoid
listing small application files parts .ini and binary files so if it's an
application it would tell the size of of the folder of this application and not
list the content or make it optionnal?
--
https://mail.python.org/m
tab to space on linux is not something easy to do, I had to launch windows and
use notepad++. Anyway, indentation should all be converted to spaces below
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import locale
import os
import csv
from tkinter import messagebox as msg
try:
from tkinter
tab to space on linux is not something easy to do, I had to launch windows and
use notepad++. Anyway, indentation should all be converted to spaces below
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import locale
import os
import csv
from tkinter import messagebox as msg
try:
from tkinte
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import locale
import os
import csv
from tkinter import messagebox as msg
try:
from tkinter import *
import ttk
except:
import tkinter as tk #GUI package
from tkinter import ttk
def fx_BasicListing():
#argx mode = 1 pour basic li
On Monday, January 11, 2021 at 12:00:28 PM UTC, Loris Bennett wrote:
> pascal z writes:
>
> > tab to space on linux is not something easy to do
>
> I would argue that you are mistaken, although that depends somewhat on
> your definition of 'easy'.
>
>
On Monday, January 11, 2021 at 1:45:31 PM UTC, Greg Ewing wrote:
> On 12/01/21 1:12 am, pascal z wrote:
> > As alternative, I pasted it into github and pasted it back into this page,
> > it's ok when pasting but when posting it fails keeping spaces...
> The indentation i
On Monday, January 11, 2021 at 2:07:03 PM UTC, Chris Angelico wrote:
> On Tue, Jan 12, 2021 at 1:01 AM pascal z via Python-list
> wrote:
> >
> > On Monday, January 11, 2021 at 1:45:31 PM UTC, Greg Ewing wrote:
> > > On 12/01/21 1:12 am, pascal z wrote:
> >
201 - 224 of 224 matches
Mail list logo