Junior Research Associate in HPC | Job position at CMCC Foundation, Italy

2023-04-21 Thread info cmcc
“promotion of generational and gender equal opportunities for the awarding of public contracts for the implementation of the National Recovery and Resilience Plan (PNRR)”, of the Italian Law Decree no. 77/2021 converted into law no. 108 of 29 July 2021. *More details and info about HOW TO APPLY: <ht

Deadline Reminder: April 30, 2023 - Software Developer | Job position at CMCC Foundation, Italy

2023-04-21 Thread info cmcc
; - knowledge of Fortran; - HPC architectures and job schedulers (i.e., IBM Spectrum LSF); - experience in managing/manipulating NetCDF data. *More details and info about HOW TO APPLY: https://cmccfoundation.applytojob.com/apply/WkA5Dhltc9/12428-Software-Developer-Research-Associate <ht

Scientific Software Developer for the Digital Twin of the Ocean | Job position at CMCC Foundation, Italy

2023-04-18 Thread info cmcc
categories (ex L. 68/99) will constitute a preferential condition. *More details and info about HOW TO APPLY:* https://cmccfoundation.applytojob.com/apply/vmml1qbN4W/12443-Scientific-Software-Developer-For-The-Digital-Twin-Of-The-Ocean?source=Our%20Career%20Page%20Widget -- Fondazione CMCCCentro

Post Degree in Machine Learning | Job position at CMCC Foundation, Italy

2023-04-12 Thread info cmcc
) will constitute a preferential condition. *More details and info about HOW TO APPLY:* https://cmccfoundation.applytojob.com/apply/c4A2a92Co7/12404-POST-DEGREEMachine-Learning-Skills?source=Our%20Career%20Page%20Widget -- Fondazione CMCCCentro Euro-Mediterraneo sui Cambiamenti Climatici Via Marco Biagi

Scientific Software Developer | Job position at CMCC Foundation, Italy

2021-03-12 Thread info cmcc
*Please, feel free to circulate * *to anyone you think may be interested.**---* *Scientific Software Developer (code 12305)* *Deadline: April 4th, 2021* The CMCC is taking into consideration the

Frontend Developer | Job position at CMCC Foundation, Italy

2020-11-04 Thread info cmcc
*Please, feel free to circulate **to anyone you think may be interested.* -- *Frontend Developer (code 12294)* *Deadline: 10/11/2020* The CMCC is taking into consideration the possibility to hire a talented, motivated and proactive Frontend

Web Developer | Job position at CMCC Foundation, Italy

2020-07-17 Thread CMCC Info
/Please, feel free to circulate //to anyone you think may be interested./// -- Web Developer (code 11648*)* *Deadline: **23/08/2020* The CMCC is taking into consideration the possibility to hire a talented, motivated and proactive Web Developer

Software Developer for the Digital Ocean Applications | Job position at CMCC Foundation, Italy

2020-05-20 Thread CMCC Info
/Please, feel free to circulate //to anyone you think may be interested./// -- Software Developer for the Digital Ocean Applications (Code: 10822) *Deadline**31/05/2020* The CMCC is taking into

Scientific Software Developers | Job positions at CMCC Foundation, Italy

2020-04-17 Thread CMCC Info
/Please, feel free to circulate //to anyone you think may be interested./// -- Open positions at CMCC Foundation: Scientific Software Developer (Job Opening Code: 10712) Deadline: 30/04/2020 The location is CMCC Headquarters in

Scientific Software Developers | Job positions at CMCC Foundation - Euro-Mediterranean Center on Climate Change, Italy

2019-09-12 Thread CMCC Info
/Please, feel free to circulate //to anyone you think may be interested./// -- Open positions at CMCC Foundation: *Software Developers for the Digital Ocean (Research Associate) * [Job Opening Code:

Re: Sequencing images using tkinter?

2014-08-31 Thread theteacher . info
Okay. Got it now. Your help is much appreciated. Thanks. -- https://mail.python.org/mailman/listinfo/python-list

Sequencing images using tkinter?

2014-08-30 Thread theteacher . info
I've started to learn to use tkinter but can't seem to rotate images. Here is a Python 3.4 program to illustrate the problem. Anyone spot why the for loop doesn't seem to want to display a sucssession of images please? Thanks. import sys from tkinter import * import random from time import

Re: Sequencing images using tkinter?

2014-08-30 Thread theteacher . info
Peter - Thanks! I've had a play around and followed your advice and have something that should take me on to the next step! This is what I have so far and it works, Thanks. from tkinter import * from tkinter import ttk import random root = Tk() root.title(Messing about) def next_image():

Re: Sequencing images using tkinter?

2014-08-30 Thread theteacher . info
Although getting next_image to run for e.g. 10 times in a for loop is still something I can't get to work. It only displays one image. -- https://mail.python.org/mailman/listinfo/python-list

Re: Sequencing images using tkinter?

2014-08-30 Thread theteacher . info
How do you exit from this function? def next_image(): myLabel.config(image=random.choice(monster_images)) # tell tkinter to invoke next_image() again after 200 miliseconds root.after(200, next_image) -- https://mail.python.org/mailman/listinfo/python-list

Re: I cant understand this error when i click a link on my website

2013-03-08 Thread info
Τη Παρασκευή, 8 Μαρτίου 2013 7:04:29 μ.μ. UTC+2, ο χρήστης sven έγραψε: On 8 March 2013 16:50, Νίκος Γκρ33κ nikos...@gmail.com wrote: but that same exact code is executed withour errors when someone is http://superhost.gr the erro is produces when he is requesting a link

Re: An error when i switched from python v2.6.6 = v3.2.3

2013-03-08 Thread info
Τη Παρασκευή, 8 Μαρτίου 2013 8:54:15 μ.μ. UTC+2, ο χρήστης Steven D'Aprano έγραψε: On Fri, 08 Mar 2013 04:55:07 +0100, Vito De Tullio wrote: Νίκος Γκρ33κ wrote: -c ''; rm -rf /; oops.py Yes its being pulled by http request! But please try to do it, i dont think

Re: how to get a beep, OS independent ?

2008-12-07 Thread info
Sorry, with import Tkinter Tkinter.Tk().bell() you get a new window for the same price... So it's usefull only when using tkinter -- http://mail.python.org/mailman/listinfo/python-list

Re: how to get a beep, OS independent ?

2008-12-07 Thread info
On Dec 7, 12:40 am, Stef Mientki [EMAIL PROTECTED] wrote: hello, I want to give a small beep, for windows there's message-beep, and there seems to be something like curses , but that package seems to be totally broken in P2.5 for windows. Any other suggestions ? thanks, Stef Mientki

Re: Python 3.0 automatic decoding of UTF16

2008-12-05 Thread info
On Dec 5, 3:25 pm, Johannes Bauer [EMAIL PROTECTED] wrote: Hello group, I'm having trouble reading a utf-16 encoded file with Python3.0. This is my (complete) code: #!/usr/bin/python3.0 class AddressBook():         def __init__(self, filename):                 f = open(filename, r,

Tktable on 3.0rc1

2008-11-03 Thread info
Has anyone used Tktable on python 3.0 ? -- http://mail.python.org/mailman/listinfo/python-list

Re: Good python equivalent to C goto

2008-08-17 Thread info
as an oldtimer, I know that in complex code the goto statement is still the easiest to code and understand. I propose this solution using exception. The string exception is deprecated but is simpler for this example. # DeprecationWarning: raising a string exception is deprecated def

Re: Good python equivalent to C goto

2008-08-17 Thread info
On Aug 17, 8:09 pm, Matthew Fitzgibbons [EMAIL PROTECTED] wrote: Kurien Mathew wrote: Hello, Any suggestions on a good python equivalent for the following C code: while (loopCondition) {     if (condition1)         goto next;     if (condition2)         goto next;     if

Re: Good python equivalent to C goto

2008-08-17 Thread info
On Aug 17, 9:23 pm, Matthew Fitzgibbons [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: On Aug 17, 8:09 pm, Matthew Fitzgibbons [EMAIL PROTECTED] wrote: Kurien Mathew wrote: Hello, Any suggestions on a good python equivalent for the following C code: while (loopCondition) {     if

Telenet nieuwsgroepen mededeling: nieuwsserver adres aanpassen/Attention: modification de l'adresse du serveur de newsgroup

2008-01-29 Thread info
Beste klant, Telenet heeft een migratie gedaan van haar nieuwsservers. Wat betekent dit concreet voor jou als gebruiker? Er verandert niets aan de service, maar om verder gebruik te maken van de Telenet nieuwsgroepen service moet je bij de instellingen van je nieuwslezer het adres van de

Re: Mail Delivery (failure [EMAIL PROTECTED])

2006-01-31 Thread info
Hemos recibido su correo, en breve nos pondremos en contacto con ustedes. -- http://mail.python.org/mailman/listinfo/python-list

Re:Autoroll Fix Members Update Now

2005-06-14 Thread info
Attn Satellite tv tester,http://www.nagra2ready.com It is very urgent that you change your keys on your cards and fta units. The current keys are as follows. Dishnetwork Key 1 is active, changed TUE JUNE 14th, 2005 KEY0: 34 12 B8 ED 07 A7 CB C8 KEY1:0C 97 B4 37 5E 3F BE 81 It is also very