Search found 30 matches

by wawachief
Tue Feb 20, 2018 2:55 pm
Forum: DM42
Topic: Python to RPN converter
Replies: 19
Views: 21088

Re: Python to RPN converter

I am trying another program, this time using lists : LBL("ampoule") ampoules=[] nb=276 somme=0 for i in range(nb): ampoules.append(0) for e in range(1,26): i=e-1 while i<nb: ampoules[i]=1-ampoules[i] i+=e for i in range(nb): somme += ampoules[i] print(somme) This time, the program is conve...
by wawachief
Tue Feb 20, 2018 2:36 pm
Forum: DM42
Topic: Python to RPN converter
Replies: 19
Views: 21088

Re: Python to RPN converter

This is an incredible work ! thank you. I try to convert a simple program to find the sum of all divisors of a given integer, just for testing : LBL("test") print(sommediv(2016)) def sommediv(n): res = 0 for d in range(2, n): if n%d == 0: res += d return res But unfortunatly, I get an erro...
by wawachief
Wed Feb 07, 2018 4:52 pm
Forum: Usage tips, tricks and problem reports
Topic: 3D printed hardcase for DM42
Replies: 5
Views: 4571

Re: 3D printed hardcase for DM42

The case is printed in one piece. No drill or assembly needed. The hinge is designed to be printed and articulated.
The total print time is about 6 hours, and the plastic weight is about 75g of PLA.

The case is a remix of this original post on thingiverse :
https://www.thingiverse.com/thing:82620
by wawachief
Thu Feb 01, 2018 10:58 am
Forum: Software Library
Topic: Sunrise/Sunset
Replies: 9
Views: 12018

Re: Sunrise/Sunset

Works great. I love it. Thank you
by wawachief
Thu Jan 11, 2018 11:15 pm
Forum: Usage tips, tricks and problem reports
Topic: Bug Report - Hang Detection
Replies: 31
Views: 18005

Re: Bug Report - Hang Detection

The problem is solved with 3.2 update. See the announce for more details, but there is no hang any more.
by wawachief
Mon Jan 01, 2018 10:57 pm
Forum: Software Library
Topic: Sudoku Solver
Replies: 14
Views: 23166

Re: Sudoku Solver

well... I did ... but I won't do it twice ! now it is 600 steps "only" for the gui, the solver is not mine, I just ported it from 15c to 42, not a big deal... but, yes I am grateful to SM to offer tools like fat disk, usb, backups and states, a gorgeous display and so much memory ! It woul...
by wawachief
Mon Jan 01, 2018 7:27 pm
Forum: Software Library
Topic: Sudoku Solver
Replies: 14
Views: 23166

Re: Sudoku Solver

Version 1.0 :) Edit : Added comments on the listing and a README file in the archive with updated documentation. This time I think I am done... This version includes - the marking for the fixed cells that needed to be done and the following programs - the solver ported from hp15 that I already poste...
by wawachief
Mon Jan 01, 2018 12:29 pm
Forum: Software Library
Topic: Sudoku Solver
Replies: 14
Views: 23166

Re: Sudoku Solver

Here is a new version with a light solver New features - ability to remove all the numbers excepts those given at the beginning (del key) - ability to show all the possibilities for the active cell (. key) - auto completion of all the cells for which a unique choice is possible (+ key) by repeating ...
by wawachief
Sun Dec 31, 2017 7:31 pm
Forum: Usage tips, tricks and problem reports
Topic: 3D printed hardcase for DM42
Replies: 5
Views: 4571

3D printed hardcase for DM42

Hi I'm not a big fan of the pouch to protect my precious in hostile environments so I designed and 3Dprinted a hardcase. Here is some photos. I like the HP-28 style that it gives :) https://s25.postimg.org/gcelktxzz/IMG_0044.jpg https://s25.postimg.org/abgwnrj3j/IMG_0045.jpg https://s25.postimg.org/...
by wawachief
Sun Dec 31, 2017 5:00 pm
Forum: Software Library
Topic: Sudoku Solver
Replies: 14
Views: 23166

Re: Sudoku Solver

Regarding tbd 3: I doubt that's viable even on this great display. :? And tbd 4: That would solve 'easy' and 'normal' sudokus (instead of difficult ones) since there are always cells in which there is only one possibility. tbd 3 : in fact, there is plenty o space under the grid to display the possi...