Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: Extracting all text from a video
Post: RE: Extracting all text from a video
Perhaps one more operation on a image could reduce the time for processing on each one. Since, the text is in contrast with the rest of the image ( or it should be if you want to read it at all ). Tha... |
|
wavic |
General Coding Help |
2 |
1,146 |
Jan-16-2021, 08:08 AM |
|
|
Thread: Testing Zipfiles
Post: RE: Testing Zipfiles
Yes, it will be good to consider to try another library checking for zip files. As the docx' for example. It's a zip file too |
|
wavic |
General Coding Help |
7 |
1,558 |
Jan-10-2021, 01:37 PM |
|
|
Thread: large ints and floats
Post: RE: large ints and floats
|
wavic |
Bar |
7 |
2,087 |
Jan-09-2021, 12:27 PM |
|
|
Thread: large ints and floats
Post: RE: large ints and floats
Sad!
I was thinking that there are no limitations if you have enough memory. |
|
wavic |
Bar |
7 |
2,087 |
Jan-08-2021, 10:50 PM |
|
|
Thread: Recommendation - Mac v Windows
Post: RE: Recommendation - Mac v Windows
Forgot to mention that on the new Macbooks the RAM is soldered on the mainboard. Perhaps the SSD too. You get one and it is what it is. No upgrades |
|
wavic |
Bar |
11 |
8,963 |
Jan-08-2021, 10:34 PM |
|
|
Thread: Deepnote as alternative to Jupyter
Post: RE: Deepnote as alternative to Jupyter
(Jan-08-2021, 09:27 PM)Larz60+ Wrote: Woz on cloud: https://phys.org/news/2012-08-apple-co-f...cloud.html
Oh, such a hypocrisy! How about iCloud?
Also, I wonder, if any of the latest owners of an Ap... |
|
wavic |
News and Discussions |
4 |
1,589 |
Jan-08-2021, 10:27 PM |
|
|
Thread: Curses script doesn't work
Post: RE: Curses script doesn't work
Alright, it seems that this behaviour is ok?!
Quote:Writing outside the window, subwindow, or pad raises curses.error. Attempting to write to the lower right corner of a window, subwindow, or pad will... |
|
wavic |
General Coding Help |
1 |
2,230 |
Jan-08-2021, 09:11 PM |
|
|
Thread: Deepnote as alternative to Jupyter
Post: RE: Deepnote as alternative to Jupyter
"...it runs on the cloud..."
I don't like that. |
|
wavic |
News and Discussions |
4 |
1,589 |
Jan-08-2021, 04:08 PM |
|
|
Thread: Recommendation - Mac v Windows
Post: RE: Recommendation - Mac v Windows
A bit late but I hope it's not too late.
Macbooks are known that their keyboards has a lot of issues. If want to code on it that could be a problem.
Some ThinkPad will be the best choice in my opin... |
|
wavic |
Bar |
11 |
8,963 |
Jan-08-2021, 04:02 PM |
|
|
Thread: Curses script doesn't work
Post: Curses script doesn't work
I was bored and started to play with curses. I wrote a small script which just shows the key you hit and you are able to move that around. But it crashes. I don't know why.
It happens when I move the... |
|
wavic |
General Coding Help |
1 |
2,230 |
Jan-08-2021, 03:49 PM |
|
|
Thread: Adding a node into an xml tree
Post: RE: Adding a node into an xml tree
insert method inserts a new node in specific position.
from xml.etree import ElementTree as et
tree = et.parse('simple.xml')
root = tree.getroot()
target = root.find('food/[name="Berry-Berry Belgian... |
|
wavic |
General Coding Help |
7 |
1,960 |
May-05-2020, 08:51 AM |
|
|
Thread: Adding a node into an xml tree
Post: RE: Adding a node into an xml tree
Hello!
First, you have to locate the element you want to add a child to it.
Then you just doing it. I took the example XML from w3schools - https://www.w3schools.com/xml/simple.xml
The XML file:
<b... |
|
wavic |
General Coding Help |
7 |
1,960 |
May-04-2020, 04:44 PM |
|
|
Thread: Python newbie
Post: RE: Python newbie
Great tutorials. ( my opinion )
https://www.youtube.com/user/schafer5/playlists |
|
wavic |
News and Discussions |
19 |
3,525 |
May-03-2020, 02:01 PM |
|
|
Thread: CLI modules
Post: RE: CLI modules
prompt_toolkit
urwid
npyscreen
Try these out.
For the TUI. |
|
wavic |
News and Discussions |
6 |
2,681 |
Mar-10-2020, 03:32 PM |
|
|
Thread: How important is math for software engineering, and does it help in problem solving?
Post: RE: How important is math for software engineering...
It depends on the project.
I stuck on one of mine just because of a lack of certain math knowledge. So I have to find a math guy :)
However, I am not a professional developer |
|
wavic |
News and Discussions |
4 |
1,830 |
Mar-10-2020, 03:25 PM |
|
|
Thread: NSA Python Traning Document as PDF
Post: RE: NSA declassified python beginner course
https://python-forum.io/Thread-NSA-Pytho...ent-as-PDF |
|
wavic |
News and Discussions |
3 |
2,723 |
Feb-19-2020, 04:50 AM |
|
|
Thread: Accessing method as function object
Post: RE: Accessing method as function object
In [1]: class Foo:
...: def __init__(self, num):
...: self.num = num
...: @property
...: def double(self):
...: return self.num + self.num
...:
In [2]: o... |
|
wavic |
General Coding Help |
2 |
1,265 |
Feb-14-2020, 09:31 PM |
|
|
Thread: Is it mandatory to call superclass init inside the class init?
Post: RE: Is it mandatory to call superclass init inside...
It's not mandatory. But if you want the A.__init__ method to handle its own initialization and B.__init__() just something bit more, you wave to call it.
And the proper way is to call super():
class... |
|
wavic |
General Coding Help |
3 |
2,187 |
Feb-14-2020, 09:16 PM |
|
|
Thread: NSA Python Traning Document as PDF
Post: NSA Python Traning Document as PDF
Someone requested NSA on Twitter for their Python training materials and he got back a four hundred pages document which he turned into PDF.
Here is the tweet: https://twitter.com/chris_swenson/status... |
|
wavic |
News and Discussions |
3 |
2,723 |
Feb-12-2020, 05:58 PM |
|
|
Thread: ZetCode selenium tutorial
Post: RE: ZetCode selenium tutorial
Hm! I see that Puppeteer is a Node library provided by Google to control Chrome.
So, Google again. |
|
wavic |
News and Discussions |
4 |
1,552 |
Feb-11-2020, 11:20 PM |