Re: What is this TEST BANK stuff ?
On Wednesday, 21 June 2023 at 15:38:00 UTC+2, Dan Kolis wrote: > Why do we tolerate this spam ? > > this seems most likely a way to inject viruses into people's workflow. > > That wiped out usenet. Ahh without an explaination; ( and it woudl have to be > a good one ); what is the purpsoe of this, why is it here ? > > Can it be eliminated ? > > Regards, > Dan Just call Google guys and ask, why usenet groups turned DejaNews, aquired by Google in the past are not protected against massive spam by a single easy script -- https://mail.python.org/mailman/listinfo/python-list
Re: How to add clickable url links to 3D Matplotlib chart ?
On Thursday, 30 March 2023 at 13:19:51 UTC+2, a a wrote: > On Thursday, 30 March 2023 at 13:14:33 UTC+2, a a wrote: > > On Thursday, 30 March 2023 at 07:55:13 UTC+2, Christian Gollwitzer wrote: > > > Am 30.03.23 um 01:11 schrieb a a: > > > > On Wednesday, 29 March 2023 at 22:51:15 UTC+2, Greg Ewing wrote: > > > >> On 30/03/23 8:39 am, a a wrote: > > > >>> How to add clickable url links to the following 3D Matplotlib chart > > > >>> to make it knowledge representation 3D chart, make of 1,000+ open > > > >>> Tabs in Firefox ? > > > >> It seems that matplotlib can be made to generate SVG images with > > > >> hyperlinks in them: > > > >> > > > >> https://matplotlib.org/stable/gallery/misc/hyperlinks_sgskip.html > > > >> > > > >> -- > > > >> Greg > > > > thank you > > > > but I need mouse hover-on, mouse click events to be handled by a simple > > > > algorithm to calculate which ball/circle has been selected (in the > > > > Matplotlib 3D animated chart above) to make the selected ball to flash > > > > and have label opened made of url icon, name of url, followed by url > > > > (exactly what Firefox makes with Tabs) > > > > > > > > For knowledge representation, 1,000+ Tabs open in Firefox, earthquakes > > > > 3D live chart by Giuseppe is a nice tool. > > > > > > > > One axis can represent time (timeline), two other axis can represent > > > > features attributed to to opened Tabs, like frequency of visits, > > > > ranking. > > > > > > > > Ok, balls should overlayed with a respective url icon, as done in > > > > Firefox (Tabs row) : url icon + label's name abbreviated > > > It doesn't sound as if there is a "one-line" solution to this problem. > > > It sounds more like you want a video game engine to interact with a 3D > > > world. > > > > > > There used to be a 3D version of HTML, called VRML, with the successor > > > of X3D that could show such a thing in the browser, but I doubt that > > > there is easy support for it any more in recent browsers. Therefore it > > > would be difficult to post this to the internet, unless you invest in > > > some JS programming. In case you want to run this on your local > > > computer, as opposed to in the browser, you can check out Python game > > > engines. > > > > > > Christian > > VRML is to heavy for me > > > > -- > > > > > > http://mpld3.github.io/examples/index.html#example-gallery > > > > Matplotlib charts can be integrated into web browser / Javascript > > > > mpld3 — Bringing Matplotlib to the Browser > > mpld3.github.io > > > > mpld3 project brings together Matplotlib, the popular Python-based graphing > > library, and D3js, the popular JavaScript library for creating interactive > > > > Javascript can track mouse position, mouse events, so I can calculate > > which ball/circle is selected to modify hue and generate active label > > assigned to the ball and have url link in the label opened by 2 mouse > > clicks. > > > > WebGL is nice but heavy for my project > > https://webglsamples.org/ > > > > https://en.wikipedia.org/wiki/WebGL > > > > All I need is Javascript to get access to database rendering geolocated > > balls, charted by Matplolib > > to update input data for a given ball and have Matplotlib chart to refresh > > on mouse click/ mouse hover - on > > > > To get 3D space I need to geolocate 1,000+Tabs open in Firefox > > > > Website geolocation I can read from domain register/s > > > > I need to project spherical Earth's globo to the place to get X - Y axis > > > > > > As a newbie to Python, I am looking for an experienced coder. > follow-up > > http://mpld3.github.io/examples/index.html#example-gallery > > I need to loop Matplotlib charts to get refreshed with new data inputs with > mouse events > (ball selection, selected ball new hue) > > Please keep in mind I need to open great Matplotlib charts by Giuseppe in web > browser > to serve as a knowledge representation and visualization for 1,000+ Tab open > in Firefox > > https://twitter.com/gmrpetricca/status/1633477532526817281 2D Matplotlib solution for my project http://mpld3.github.io/examples/html_tooltips.html How to get it upgraded to 3D Matplotlib and get label to feature web link url assigned to a specified ball/ circle ? -- https://mail.python.org/mailman/listinfo/python-list
Re: How to add clickable url links to 3D Matplotlib chart ?
On Thursday, 30 March 2023 at 13:14:33 UTC+2, a a wrote: > On Thursday, 30 March 2023 at 07:55:13 UTC+2, Christian Gollwitzer wrote: > > Am 30.03.23 um 01:11 schrieb a a: > > > On Wednesday, 29 March 2023 at 22:51:15 UTC+2, Greg Ewing wrote: > > >> On 30/03/23 8:39 am, a a wrote: > > >>> How to add clickable url links to the following 3D Matplotlib chart to > > >>> make it knowledge representation 3D chart, make of 1,000+ open Tabs in > > >>> Firefox ? > > >> It seems that matplotlib can be made to generate SVG images with > > >> hyperlinks in them: > > >> > > >> https://matplotlib.org/stable/gallery/misc/hyperlinks_sgskip.html > > >> > > >> -- > > >> Greg > > > thank you > > > but I need mouse hover-on, mouse click events to be handled by a simple > > > algorithm to calculate which ball/circle has been selected (in the > > > Matplotlib 3D animated chart above) to make the selected ball to flash > > > and have label opened made of url icon, name of url, followed by url > > > (exactly what Firefox makes with Tabs) > > > > > > For knowledge representation, 1,000+ Tabs open in Firefox, earthquakes 3D > > > live chart by Giuseppe is a nice tool. > > > > > > One axis can represent time (timeline), two other axis can represent > > > features attributed to to opened Tabs, like frequency of visits, ranking. > > > > > > Ok, balls should overlayed with a respective url icon, as done in Firefox > > > (Tabs row) : url icon + label's name abbreviated > > It doesn't sound as if there is a "one-line" solution to this problem. > > It sounds more like you want a video game engine to interact with a 3D > > world. > > > > There used to be a 3D version of HTML, called VRML, with the successor > > of X3D that could show such a thing in the browser, but I doubt that > > there is easy support for it any more in recent browsers. Therefore it > > would be difficult to post this to the internet, unless you invest in > > some JS programming. In case you want to run this on your local > > computer, as opposed to in the browser, you can check out Python game > > engines. > > > > Christian > VRML is to heavy for me > > -- > > > http://mpld3.github.io/examples/index.html#example-gallery > > Matplotlib charts can be integrated into web browser / Javascript > > mpld3 — Bringing Matplotlib to the Browser > mpld3.github.io > > mpld3 project brings together Matplotlib, the popular Python-based graphing > library, and D3js, the popular JavaScript library for creating interactive > > Javascript can track mouse position, mouse events, so I can calculate > which ball/circle is selected to modify hue and generate active label > assigned to the ball and have url link in the label opened by 2 mouse clicks. > > WebGL is nice but heavy for my project > https://webglsamples.org/ > > https://en.wikipedia.org/wiki/WebGL > > All I need is Javascript to get access to database rendering geolocated > balls, charted by Matplolib > to update input data for a given ball and have Matplotlib chart to refresh on > mouse click/ mouse hover - on > > To get 3D space I need to geolocate 1,000+Tabs open in Firefox > > Website geolocation I can read from domain register/s > > I need to project spherical Earth's globo to the place to get X - Y axis > > > As a newbie to Python, I am looking for an experienced coder. follow-up http://mpld3.github.io/examples/index.html#example-gallery I need to loop Matplotlib charts to get refreshed with new data inputs with mouse events (ball selection, selected ball new hue) Please keep in mind I need to open great Matplotlib charts by Giuseppe in web browser to serve as a knowledge representation and visualization for 1,000+ Tab open in Firefox https://twitter.com/gmrpetricca/status/1633477532526817281 -- https://mail.python.org/mailman/listinfo/python-list
Re: How to add clickable url links to 3D Matplotlib chart ?
On Thursday, 30 March 2023 at 07:55:13 UTC+2, Christian Gollwitzer wrote: > Am 30.03.23 um 01:11 schrieb a a: > > On Wednesday, 29 March 2023 at 22:51:15 UTC+2, Greg Ewing wrote: > >> On 30/03/23 8:39 am, a a wrote: > >>> How to add clickable url links to the following 3D Matplotlib chart to > >>> make it knowledge representation 3D chart, make of 1,000+ open Tabs in > >>> Firefox ? > >> It seems that matplotlib can be made to generate SVG images with > >> hyperlinks in them: > >> > >> https://matplotlib.org/stable/gallery/misc/hyperlinks_sgskip.html > >> > >> -- > >> Greg > > thank you > > but I need mouse hover-on, mouse click events to be handled by a simple > > algorithm to calculate which ball/circle has been selected (in the > > Matplotlib 3D animated chart above) to make the selected ball to flash and > > have label opened made of url icon, name of url, followed by url (exactly > > what Firefox makes with Tabs) > > > > For knowledge representation, 1,000+ Tabs open in Firefox, earthquakes 3D > > live chart by Giuseppe is a nice tool. > > > > One axis can represent time (timeline), two other axis can represent > > features attributed to to opened Tabs, like frequency of visits, ranking. > > > > Ok, balls should overlayed with a respective url icon, as done in Firefox > > (Tabs row) : url icon + label's name abbreviated > It doesn't sound as if there is a "one-line" solution to this problem. > It sounds more like you want a video game engine to interact with a 3D > world. > > There used to be a 3D version of HTML, called VRML, with the successor > of X3D that could show such a thing in the browser, but I doubt that > there is easy support for it any more in recent browsers. Therefore it > would be difficult to post this to the internet, unless you invest in > some JS programming. In case you want to run this on your local > computer, as opposed to in the browser, you can check out Python game > engines. > > Christian VRML is to heavy for me -- http://mpld3.github.io/examples/index.html#example-gallery Matplotlib charts can be integrated into web browser / Javascript mpld3 — Bringing Matplotlib to the Browser mpld3.github.io mpld3 project brings together Matplotlib, the popular Python-based graphing library, and D3js, the popular JavaScript library for creating interactive Javascript can track mouse position, mouse events, so I can calculate which ball/circle is selected to modify hue and generate active label assigned to the ball and have url link in the label opened by 2 mouse clicks. WebGL is nice but heavy for my project https://webglsamples.org/ https://en.wikipedia.org/wiki/WebGL All I need is Javascript to get access to database rendering geolocated balls, charted by Matplolib to update input data for a given ball and have Matplotlib chart to refresh on mouse click/ mouse hover - on To get 3D space I need to geolocate 1,000+Tabs open in Firefox Website geolocation I can read from domain register/s I need to project spherical Earth's globo to the place to get X - Y axis As a newbie to Python, I am looking for an experienced coder. -- https://mail.python.org/mailman/listinfo/python-list
Re: How to add clickable url links to 3D Matplotlib chart ?
On Wednesday, 29 March 2023 at 22:51:15 UTC+2, Greg Ewing wrote: > On 30/03/23 8:39 am, a a wrote: > > How to add clickable url links to the following 3D Matplotlib chart to make > > it knowledge representation 3D chart, make of 1,000+ open Tabs in Firefox ? > It seems that matplotlib can be made to generate SVG images with > hyperlinks in them: > > https://matplotlib.org/stable/gallery/misc/hyperlinks_sgskip.html > > -- > Greg thank you but I need mouse hover-on, mouse click events to be handled by a simple algorithm to calculate which ball/circle has been selected (in the Matplotlib 3D animated chart above) to make the selected ball to flash and have label opened made of url icon, name of url, followed by url (exactly what Firefox makes with Tabs) For knowledge representation, 1,000+ Tabs open in Firefox, earthquakes 3D live chart by Giuseppe is a nice tool. One axis can represent time (timeline), two other axis can represent features attributed to to opened Tabs, like frequency of visits, ranking. Ok, balls should overlayed with a respective url icon, as done in Firefox (Tabs row) : url icon + label's name abbreviated -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Tuesday, 28 March 2023 at 18:12:40 UTC+2, Thomas Passin wrote: > On 3/28/2023 8:47 AM, a a wrote: > > Ok, I can export bookmarks to html file and open it in Firefox to get > > a long list of clickable urls but icon of the bookmarked web page is > > missing. > > > > When I open Bookmarks as right a side-bar I can view and identify an > > individual Boomarks by icon, > > so I would like Firefox Library to export Bookmarks to html file, icons > > included 😉 > > > > Since accessing opened Tabs is my default use of history in Firefox and has > > worked fine for years > > I paid no special interest to bookmark opened Tabs and assign labels to > > individual bookmark. > > > > So, generally speaking, I am happy with 1,000+ opened Tabs in Firefox , not > > being sure if this number is for real or refers to every bookmark from the > > history + opened Tabs > > > > But definitely I need a smarter solution and approach to manage 10,000+ > > opened Tabs in Firefox in a future 😉 > > I think you had better start using another name for this thread, if it > continues. > > The HTML export file will contain the icons, but the HTML elements do > not provide for showing them. > > I can't imagine how you can find anything among nor navigate through > 1000 open tabs, let alone 10,000 in the future. I would think the memory > usage would be impossibly high. So I hope you are mostly using the > history and do not really have that many tabs open at once! I am a plain guy, so if Firefox counted 1,000+ opened Tabs, I can be surprised, but have no idea how to check that number. You are exactly right, icon URI and icon data come with saved opened Tabs, a single example below. So I am going to ask Firefox team to offer export to html, modified to have : icon, name of web page, url address to appear in a single row (feature already supported by Firefox, when you open new Tab and click: enter URL or search string - input field, you get such list List is limited in size for the reasons unknown to me, but feature works fine. -- So would prefer a horizontal list of opened Tabs by htmlized, vertical list of the same opened Tabs, featuring: icon, name of web-site, URL address Thank you for your excellent support darius "https://www.nasa.gov/feature/goddard/2017/nasas-sdo-watches-a-sunspot-turn-toward-earth"; add_date="1499899506" last_modified="1499899507" icon_uri="https://www.nasa.gov/favicon.ico"; icon="data:image/png;base64,iVBORw0KGgoNSUhEUgAAADAwCAYAAABXAvmHAAAPkklEQVRoQ+1ZCVQUZ7b+qqo36AVommYXBARR45rnlpgEEZdoJokLmkWjyRjH5ZkzODEz5pk4mfdeEsf3krjEqHFiEk2c6KijJiqK2/h04r4EEQRBZFFkpxt6q6p3/8I2wDSIY86ZM+fMfw6H7q6//rrfXb97i8M/+eL+yeXHvwD8oy34wBaInf6ZrqbYFSlDTJQkOR4yFy5BDJRkqAQBdhlcJSdz1+lznhGGayUHplVzHCf/VMD/LgBLlsj8B8dWx4puaZQIjJZluS9JZKX/OiaYwHEwaAXUOTzNcnKcyMtcPcfjGs/hLypOtVtjMX9/e0u67UGAyEuW0HH3uUyjPk2QHI4ZJFq6JElxdDvf9gh2ql6jQoPzDgDaQOAIR/PjOPANHC8fU/PcmgCLNbNkS3rTfYoBedIkAZev9u80gNCRX+gbXLbnJFlcIElIIpF83qsReKgFDnanqPx3ky8F+KnQJViP7NI60Ne7i/DYeY7brtOq3q/JnP3D/YCQuySniQJiOgXAPHJVtMMpLxFl+Xmvm7R9GClYWcx1dGpynyY3IoP8UFzVCINOpXzOu9nQCoD3DJ7nc1Uq7j/GmEO2b9mSTl7Z8ZIjk4aLkH8haIU37wkgeMSqZLtLXiHJUmrLYyUmMROaTmA+HxGgQwP5fD39mf3VsLk8cIuyskXB1sKFfInHg69RqbAkxmL9JHtLusvXHlIeh5jkcZJHXAqe+0AoyVvbIQBjysdJHlFcT5p/xHsgE0ZFd0WRSxh0ajQ0unCrzgGrXg1/8vurlXaoVTxE5joEpNruYrJ3alGM2FQC/9a/Pd5jxeElKT8GEMM/ZIifVFL1MjzS2xR1h/hA7StcdratXQCWUWvCbQ73HyhQR7cU3o+Em/R4HIL0WpRVN0JLEcvTX3VtE07mVeKWzQmO/UY3qSkeXKKkVEuBfvO0DIB2IHEcX6cVuPn1h+Z+cfe5cT27SG7XIojydMoEV3gNP5krzM1tTgg+VsKY77RlTYXLSPvzWrkNCTCiTwQsgTpsO1ZIwslkSZCmNegZHYi4cCNyS+pw9lq1IuydpAMtAQk1aVFc07lkQzFxnVNrpzR6Zp5GQdKToiguJjM+TIq5wQv8DK44L8srl08AhpSV6W4R62VZMrQEQEkF04Z3w55TN8jf3aA0CL2fWnGZAgrQIL0Gw3qGwV+rwv7zpYr7UJZRjmBAO2EAMHsx6w11VRzaW7olXy2508kFA+j2Cl6tmssV525tKdPfAAh58rMwm82+Q5SlQW2Nw9zn+ZQEbD56DU0UpFYSmFKgklCLbjcq2zkK2b5dgzGgWzD2ny2j322Ki91rMcHZrliPDc/bcjCt7gfEuOvunIlbsqDOEG7kfN22iv/NyYbhH/+7y+35kCmt7UN15ApTUxPwzdFC1JIFmEWYVlmQet2F3UOUAnGhBqT1j8LRS+XIIbdqD4RX47GeBkywXcULDZfR3VlJD2+OfDq3GGpNBopytvmiIK0ARKZ+Hlztqd9NGWSwL40xRNNHdEPm2VLcqLLfray+9jIQLPc/PTgGhwnE5RYgmGhMcA0JmeSuVQSf0HAFia5q8LKERkEDjSyiQB2E/abEd+Zf2vR2exZsBcCYunqcy+X5hrK3X3tCTRgag1sUjH/JqVAyS0dLARHoh7GDu+DAuVIUVNjJrjxMkhsDnBWYaMvDaPs1RJOrMMHtvBZXtWa67kKxyoRFlmE4qwvbFd7VL71owwyHr2e1kkD/+KqP3JI4n21Ucvedq95NLLf3jTWTf1uwYX9ec2SyvS1ObguJEpVSM9L6ReLC8cvod+sqnrXnY5CjFEEelpVkOHg1zugicF4Xhn6Om8jRBOFd8yAUCQaWKG76qdUjaw7MutQhgLgRawLK3e49oiQNYfnbTyMoklEdgN0lKu7iTxTBSL+/ODIRn2Xm4XaDEyywWTbyFmaHRwSrQF7ftogO9Gssx4wwBwbH6mHdsxsaBwU8WaKeNP69XyS2m5Kh8bjwjP0qvjPEYZ2xF2ycyhsHkk4lzGhZF1oCuauwZsogZXkkKTwqyB/vzh6K+OggNNidWLzmBC4WVOGtaQ8jyKjD6ewy3Khuwp4zJXg0MQSLZgykdKpRqu+KLedw5EQB+ojVGGG/jlRUIHncEBgfHQiEhwEFlMGKSrFlxwV85Q5FiS4Ic1GAKdESqidORqZsxXufn0J5TePdGFMLwjL74bmvd2gBfcrKVI8HO2VI/ira+fmbaZg4
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Tuesday, 28 March 2023 at 06:33:44 UTC+2, Thomas Passin wrote: > On 3/27/2023 8:37 PM, a a wrote: > >> To save the tabs, right click any one of them and select the "Select All > >> Tabs" item. They will all highlight. Right click on one of them and > >> select the "Bookmark Tabs" item. A dialog box will open with an entry > >> lone for the Name to use (like "Tabset1") and a location - a bookmark > >> folder - for them to go into. CAREFUL - if you just click "Save", you > >> may not be able to find them. Use the dropdown arrow to save them in > >> one of the top level folders, like "Bookmarks Toolbars". > > I can select All Opened Tabs (as from the given link) > > and get 1,000+ Opened Tabs ( I am afraid, this is s number of all saved > > bookmarks in the past) > > I go to menu, Bookmarks, Manage Boomarks and copy Tabs > > > > and > > https://www.textfixer.com/html/convert-url-to-html-link.php > > > > does the job, converting text urls into clickable web links > > > > I copy the result and past into Notepad++ to save file as html > > > > and what I get is web page of clickable Opened Tabs > > > > since icon and page name are lost > I don't understand this. You don't really have 1000 tabs open at the > same time, do you? If you select all the open tabs - I think you wrote > that you only have 50 - then you can save them as bookmarks under a > folder name you choose. That folder will contain the 50 open links. I > tried it this evening, so I know that's how it works. (It happens that > I'm working on my own bookmark manager just now, so I've been messing > around with importing, exporting, and reading the bookmark files). > > Then you can export them and import the same bookmark file into another > browser on another computer. Whenever you want to reopen some of those > tabs, you would navigate to that part of the bookmarks and open the tabs > you want. > > Maybe you have something else in mind? Do you want to send the links of > the opened tab set to someone else, but not all your bookmarks? Please > explain more carefully what you want to do. Ok, I can export bookmarks to html file and open it in Firefox to get a long list of clickable urls but icon of the bookmarked web page is missing. When I open Bookmarks as right a side-bar I can view and identify an individual Boomarks by icon, so I would like Firefox Library to export Bookmarks to html file, icons included ;) Since accessing opened Tabs is my default use of history in Firefox and has worked fine for years I paid no special interest to bookmark opened Tabs and assign labels to individual bookmark. So, generally speaking, I am happy with 1,000+ opened Tabs in Firefox , not being sure if this number is for real or refers to every bookmark from the history + opened Tabs But definitely I need a smarter solution and approach to manage 10,000+ opened Tabs in Firefox in a future ;) - I just build personal search engine resembling targets set by MyLifeBits Project by Microsoft in the past. darius -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Tuesday, 28 March 2023 at 06:33:44 UTC+2, Thomas Passin wrote: > On 3/27/2023 8:37 PM, a a wrote: > >> To save the tabs, right click any one of them and select the "Select All > >> Tabs" item. They will all highlight. Right click on one of them and > >> select the "Bookmark Tabs" item. A dialog box will open with an entry > >> lone for the Name to use (like "Tabset1") and a location - a bookmark > >> folder - for them to go into. CAREFUL - if you just click "Save", you > >> may not be able to find them. Use the dropdown arrow to save them in > >> one of the top level folders, like "Bookmarks Toolbars". > > I can select All Opened Tabs (as from the given link) > > and get 1,000+ Opened Tabs ( I am afraid, this is s number of all saved > > bookmarks in the past) > > I go to menu, Bookmarks, Manage Boomarks and copy Tabs > > > > and > > https://www.textfixer.com/html/convert-url-to-html-link.php > > > > does the job, converting text urls into clickable web links > > > > I copy the result and past into Notepad++ to save file as html > > > > and what I get is web page of clickable Opened Tabs > > > > since icon and page name are lost > I don't understand this. You don't really have 1000 tabs open at the > same time, do you? If you select all the open tabs - I think you wrote > that you only have 50 - then you can save them as bookmarks under a > folder name you choose. That folder will contain the 50 open links. I > tried it this evening, so I know that's how it works. (It happens that > I'm working on my own bookmark manager just now, so I've been messing > around with importing, exporting, and reading the bookmark files). > > Then you can export them and import the same bookmark file into another > browser on another computer. Whenever you want to reopen some of those > tabs, you would navigate to that part of the bookmarks and open the tabs > you want. > > Maybe you have something else in mind? Do you want to send the links of > the opened tab set to someone else, but not all your bookmarks? Please > explain more carefully what you want to do. Ok, I was not aware of the real number of the opened Tabs in Firefox, since I can jump from left to right and vice versa in real time, so the number given by me: 50 opened Tabs was my general estimate, but I can read the real number of opened Tabs from the same menu (line below) to be 1,000+ What I copy and paste into Notepad++ is 1,000+ -line file. It's hard to verify if the above number is made of opened Tabs only or bookmarks are included, since I exactly use and keep multi Tabs opened as my live bookmarks and cache memory, when I work on my projects (watching, counting sunspots, Earthquakes prediction in Turkey, ... ) I would like to fund the development of such smart Tabs Manager to replace boomarks, to let me group Tabs belonging to different projects. It doesn't look to be complicated, if supported by the Firefox team. Firefox 97. comes with alike functionality (when I open a new Tab) but limited to 4 rows of web-page icons + names and 4 rows called: Recent activity All I need is to replace opened Tabs by history of the Recent activity - default Firefox page, when I open a new Tab It's hard to imagine, I can have 1,000+ Tabs live opened in Firefox but I really need such feature, called in the past as: MyLifeBits by MS So I have to ask Firefox team today to lift 4 rows limit on web links and 4 rows limit on the recent activity, coming with New Tab opened When I am busy on a project I can open 100+ web pages via search engine in one day and would prefer 100+ opened Tabs to be saved in html format for the records as a reference. Hope to get some support from Firefox team via Twitter. Ok, smart bookmarks manager can offer the above functionality right now, so I go to search engine to get one. darius -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Tuesday, 28 March 2023 at 02:07:43 UTC+2, Thomas Passin wrote: > On 3/27/2023 4:02 PM, Thomas Passin wrote: > > On 3/27/2023 3:07 PM, a a wrote: > >> On Monday, 27 March 2023 at 19:19:41 UTC+2, Thomas Passin wrote: > >>> On 3/27/2023 10:07 AM, a a wrote: > >>>> Ok, I know, I need to switch to Windows 10 run on another PC next to > >>>> me. > >>>> > >>>> I need to learn how to copy and move every web page opened in > >>>> Firefox as a reference to social media, web sites for Python, chat > >>>> and more (about 50 web pages live opened 😉 > >>> > >>> This sounds like you mean when you get a new Windows 10 PC, you will > >>> want to move your open tabs to the new machine. I see several > >>> possibilities for this. > >>> > >>> 1. Copy your Firefox profile folder to the new computer, and tell > >>> Firefox to use it as the default profile. I *think* this will include > >>> the open tabs, but I haven't tried it. Saving that folder is useful for > >>> backup anyway. (If you use Thunderbird for email, you really *must* > >>> back up its profile folder because all your email with its folder > >>> structure is there. BTW, you can even copy the profile over to a Linux > >>> machine that has Thunderbird, and presto, all your email will be there. > >>> The Firefox profile would probably transfer just as well). > >>> > >>> 2. Bookmark all your open tabs under a new heading "open tabs", then > >>> export the bookmarks. In the new machine, import them into Firefox > >>> there. They won't open in tabs, but it will be easy to find them and > >>> open them when you want to. You probably will want to copy over your > >>> bookmarks anyway, so this adds little effort. > >>> > >>> 3. There may be a specific record of open tabs that you can copy or > >>> export. I don't know about this but an internet search should help. > >>> > >>> Good luck. > >> > >> a nice solution comes from > >> > >> How to Copy URLs of All Open Tabs in Firefox > >> > >> https://www.howtogeek.com/723921/how-to-copy-urls-of-all-open-tabs-in-firefox/ > >> > >> > >> right clicking opened tab, all opened tabs can be selected > >> moving via menu to bookmarks/ booksmarks management > >> url bookmarks can be right-mouse clicked to copy urls > >> finally, urls can be pasted into Notepad++ > >> and saved as a file > >> unfortunately, saving as .html file > >> fails to generate html file with clickable web links > >> > > > > Don't go pasting urls into a text file one by one. Instead, do my #2 > > above. That will import all the bookmarks, including the tabs you saved > > as bookmarks. Then import the exported bookmark file into the new > > browser. There's no reason to fuss around trying to get text copies of > > urls to open. > > > > For that matter, the exported bookmarks file is an HTML file and can be > > opened directly in a browser, with clickable links. > All right, I think I've got the easiest way to go. You *can* bookmark > all the tabs at once - see below. Then, as I already proposed, export > the bookmarks and import them into Firefox on the new computer. > > To save the tabs, right click any one of them and select the "Select All > Tabs" item. They will all highlight. Right click on one of them and > select the "Bookmark Tabs" item. A dialog box will open with an entry > lone for the Name to use (like "Tabset1") and a location - a bookmark > folder - for them to go into. CAREFUL - if you just click "Save", you > may not be able to find them. Use the dropdown arrow to save them in > one of the top level folders, like "Bookmarks Toolbars". I can select All Opened Tabs (as from the given link) and get 1,000+ Opened Tabs ( I am afraid, this is s number of all saved bookmarks in the past) I go to menu, Bookmarks, Manage Boomarks and copy Tabs and https://www.textfixer.com/html/convert-url-to-html-link.php does the job, converting text urls into clickable web links I copy the result and past into Notepad++ to save file as html and what I get is web page of clickable Opened Tabs since icon and page name are lost I would prefer another solution already ofered by Firex to generate web page of recently visited web pages, unfortunately coming with limits on the number of visited web pages, so I contacted Firefox, Notepad++ for help -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Monday, 27 March 2023 at 19:19:41 UTC+2, Thomas Passin wrote: > On 3/27/2023 10:07 AM, a a wrote: > > Ok, I know, I need to switch to Windows 10 run on another PC next to me. > > > > I need to learn how to copy and move every web page opened in Firefox as a > > reference to social media, web sites for Python, chat and more (about 50 > > web pages live opened 😉 > > This sounds like you mean when you get a new Windows 10 PC, you will > want to move your open tabs to the new machine. I see several > possibilities for this. > > 1. Copy your Firefox profile folder to the new computer, and tell > Firefox to use it as the default profile. I *think* this will include > the open tabs, but I haven't tried it. Saving that folder is useful for > backup anyway. (If you use Thunderbird for email, you really *must* > back up its profile folder because all your email with its folder > structure is there. BTW, you can even copy the profile over to a Linux > machine that has Thunderbird, and presto, all your email will be there. > The Firefox profile would probably transfer just as well). > > 2. Bookmark all your open tabs under a new heading "open tabs", then > export the bookmarks. In the new machine, import them into Firefox > there. They won't open in tabs, but it will be easy to find them and > open them when you want to. You probably will want to copy over your > bookmarks anyway, so this adds little effort. > > 3. There may be a specific record of open tabs that you can copy or > export. I don't know about this but an internet search should help. > > Good luck. a nice solution comes from How to Copy URLs of All Open Tabs in Firefox https://www.howtogeek.com/723921/how-to-copy-urls-of-all-open-tabs-in-firefox/ right clicking opened tab, all opened tabs can be selected moving via menu to bookmarks/ booksmarks management url bookmarks can be right-mouse clicked to copy urls finally, urls can be pasted into Notepad++ and saved as a file unfortunately, saving as .html file fails to generate html file with clickable web links Notepad++ keeps urls active, selectable but not ready to be opened in Firefox so I need to learn how to make Notepad++ or another editor to save urls as html file BTW Selecting all opened tabs I get 1,000+ active urls (opened web pages ), so something must be wrong -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Thursday, 23 March 2023 at 22:15:10 UTC+1, Thomas Passin wrote: > On 3/23/2023 3:38 PM, Mats Wichmann wrote: > > On 3/23/23 09:48, Thomas Passin wrote: > > > >> I didn't realize that Christoph Gohlke is still maintaining this site. > > > > Unless the the last-changed stuff stopped working, it's in a static state: > > > > by Christoph Gohlke. Updated on 26 June 2022 at 07:27 UTC > I did see that. The OP needs a version that would work with Windows 7 > and an older version of Python (3.7 or 3.8, IIRC), so things may work out. Thank you Thomas for your excellent work you did for me. Ok, I know, I need to switch to Windows 10 run on another PC next to me. I need to learn how to copy and move every web page opened in Firefox as a reference to social media, web sites for Python, chat and more (about 50 web pages live opened ;) I really love the limited functionality of w3schools to let me live open and run Python examples, especiallly Matplotlib examples. Unfortunately chat forum at w3schools is low traffic, showing no interest to add more examples. https://www.w3schools.com/python/trypython.asp?filename=demo_matplotlib_subplots3 https://www.w3schools.com/python/matplotlib_subplot.asp thank you Thomas, darius -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Saturday, 18 March 2023 at 20:12:22 UTC+1, Thomas Passin wrote: > On 3/17/2023 11:52 AM, a a wrote: > > On Friday, 17 March 2023 at 16:32:53 UTC+1, a a wrote: > >> On Friday, 17 March 2023 at 16:03:14 UTC+1, Thomas Passin wrote: > >>> On 3/16/2023 8:07 PM, a a wrote: > >>>> Crash report: > >>>> > >>>> Problem Caption: > >>>> Problem Event Name: APPCRASH > >>>> Application name: python.exe > >>>> Application version: 3.8.7150.1013 > >>>> Application time signature: 5fe0df5a > >>>> Error module name: _multiarray_umath.cp38-win32.pyd > >>>> Version of the module with the error: 0.0.0.0 > >>>> Time signature of the module with the error: 63dfe4cf > >>>> Exception code: c01d > >>>> Exception offset: 000269c9 > >>>> Operating system version: 6.1.7601.2.1.0.256.48 > >>>> Regional Settings ID: 1045 > >>>> Additional information 1: 0a9e > >>>> Additional information 2: 0a9e372d3b4ad19135b953a78882e789 > >>>> Additional information 3: 0a9e > >>>> Additional information 4: 0a9e372d3b4ad19135b953a78882e789 > >>> This exception has been reported to have many causes, but one > >>> possibility seems to be that your computer may not support an advanced > >>> instruction set that the .pyd was compiled for. I found this one > >>> specifically mentioned on the Internet: Advanced Vector Extensions. If > >>> that were the case, you would either need to find a different version of > >>> the module, or upgrade the computer/OS. > >>> > >>> It would be worth trying to downgrade the multiarray version to an > >>> earlier one and see if that fixes the problem. > >> Thank you Thomas > >> for your kind reply. > >> > >> I am fully aware to be living on an old machine, old OS, Windows 7, 32-bit > >> system > >> but I have visited every social chat support forum on the Internet: from > >> Python to Matplotlib, Numpy, Twitter, Github. > >> > >> As a newbie I am not aware how to downgrade "the multiarray version to an > >> earlier one > >> > >> I simply tried to test Python code from > >> > >> > >> https://www.section.io/engineering-education/reading-and-processing-android-sensor-data-using-python-with-csv-read/ > >> > >> > >> > >> # Python program to read .csv file > >> > >> import numpy as np > >> import matplotlib.pyplot as plt > >> import csv > >> > >> > >> "After importing the libraries, we now read the .csv file: > >> > >> with open('accl1.csv', 'r') as f: > >> data = list(csv.reader(f, delimiter=',')) #reading csv file > >> > >> > >> Just read about AVE from Wikipedia > >> > >> https://en.wikipedia.org/wiki/Advanced_Vector_Extensions > > > > > > downloaded and run > > HWiNFO > > and AVE not supported, not greened out > That's too bad; you may be out of luck. It's possible that someone has > compiled the .pyd library in such a way that it does not need the > instruction set extensions. I'm sorry but I don't know how to find out > except by trying internet searches - or by downgrading to earlier > versions of Numpy hoping to find one that works and also can be used by > the other libraries/programs that need to use it. Thank you Thomas for youre kind help. You are the real Python PRO, you deserve Nobel Prize in Python. I operated an old Dell computer with Windows XP preinstalled and upgraded XP to Windows 7 to get some web services to work. Unfortunately I failed to find and install driver for video controller since none supported by Dell. Visited many driver sites (Intel Driver Assistant included and more) without any success. So life with an old PC is not easy -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Friday, 17 March 2023 at 16:03:14 UTC+1, Thomas Passin wrote: > On 3/16/2023 8:07 PM, a a wrote: > > Crash report: > > > > Problem Caption: > > Problem Event Name: APPCRASH > > Application name: python.exe > > Application version: 3.8.7150.1013 > > Application time signature: 5fe0df5a > > Error module name: _multiarray_umath.cp38-win32.pyd > > Version of the module with the error: 0.0.0.0 > > Time signature of the module with the error: 63dfe4cf > > Exception code: c01d > > Exception offset: 000269c9 > > Operating system version: 6.1.7601.2.1.0.256.48 > > Regional Settings ID: 1045 > > Additional information 1: 0a9e > > Additional information 2: 0a9e372d3b4ad19135b953a78882e789 > > Additional information 3: 0a9e > > Additional information 4: 0a9e372d3b4ad19135b953a78882e789 > This exception has been reported to have many causes, but one > possibility seems to be that your computer may not support an advanced > instruction set that the .pyd was compiled for. I found this one > specifically mentioned on the Internet: Advanced Vector Extensions. If > that were the case, you would either need to find a different version of > the module, or upgrade the computer/OS. > > It would be worth trying to downgrade the multiarray version to an > earlier one and see if that fixes the problem. Just reading from search engine: https://www.bing.com/search?q=how+to+downgrade+_multiarray_umath.cp38-win32.pyd+&form=QBLH&sp=-1&lq=0&pq=how+to+downgrade+_multiarray_umath.cp38-win32.pyd+&sc=1-50&qs=n&sk= -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Friday, 17 March 2023 at 16:03:14 UTC+1, Thomas Passin wrote: > On 3/16/2023 8:07 PM, a a wrote: > > Crash report: > > > > Problem Caption: > > Problem Event Name: APPCRASH > > Application name: python.exe > > Application version: 3.8.7150.1013 > > Application time signature: 5fe0df5a > > Error module name: _multiarray_umath.cp38-win32.pyd > > Version of the module with the error: 0.0.0.0 > > Time signature of the module with the error: 63dfe4cf > > Exception code: c01d > > Exception offset: 000269c9 > > Operating system version: 6.1.7601.2.1.0.256.48 > > Regional Settings ID: 1045 > > Additional information 1: 0a9e > > Additional information 2: 0a9e372d3b4ad19135b953a78882e789 > > Additional information 3: 0a9e > > Additional information 4: 0a9e372d3b4ad19135b953a78882e789 > This exception has been reported to have many causes, but one > possibility seems to be that your computer may not support an advanced > instruction set that the .pyd was compiled for. I found this one > specifically mentioned on the Internet: Advanced Vector Extensions. If > that were the case, you would either need to find a different version of > the module, or upgrade the computer/OS. > > It would be worth trying to downgrade the multiarray version to an > earlier one and see if that fixes the problem. Thank you Thomas for your kind reply. I am fully aware to be living on an old machine, old OS, Windows 7, 32-bit system but I have visited every social chat support forum on the Internet: from Python to Matplotlib, Numpy, Twitter, Github. As a newbie I am not aware how to downgrade "the multiarray version to an earlier one I simply tried to test Python code from https://www.section.io/engineering-education/reading-and-processing-android-sensor-data-using-python-with-csv-read/ # Python program to read .csv file import numpy as np import matplotlib.pyplot as plt import csv "After importing the libraries, we now read the .csv file: with open('accl1.csv', 'r') as f: data = list(csv.reader(f, delimiter=',')) #reading csv file Just read about AVE from Wikipedia https://en.wikipedia.org/wiki/Advanced_Vector_Extensions -- https://mail.python.org/mailman/listinfo/python-list
Re: Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
On Friday, 17 March 2023 at 16:32:53 UTC+1, a a wrote: > On Friday, 17 March 2023 at 16:03:14 UTC+1, Thomas Passin wrote: > > On 3/16/2023 8:07 PM, a a wrote: > > > Crash report: > > > > > > Problem Caption: > > > Problem Event Name: APPCRASH > > > Application name: python.exe > > > Application version: 3.8.7150.1013 > > > Application time signature: 5fe0df5a > > > Error module name: _multiarray_umath.cp38-win32.pyd > > > Version of the module with the error: 0.0.0.0 > > > Time signature of the module with the error: 63dfe4cf > > > Exception code: c01d > > > Exception offset: 000269c9 > > > Operating system version: 6.1.7601.2.1.0.256.48 > > > Regional Settings ID: 1045 > > > Additional information 1: 0a9e > > > Additional information 2: 0a9e372d3b4ad19135b953a78882e789 > > > Additional information 3: 0a9e > > > Additional information 4: 0a9e372d3b4ad19135b953a78882e789 > > This exception has been reported to have many causes, but one > > possibility seems to be that your computer may not support an advanced > > instruction set that the .pyd was compiled for. I found this one > > specifically mentioned on the Internet: Advanced Vector Extensions. If > > that were the case, you would either need to find a different version of > > the module, or upgrade the computer/OS. > > > > It would be worth trying to downgrade the multiarray version to an > > earlier one and see if that fixes the problem. > Thank you Thomas > for your kind reply. > > I am fully aware to be living on an old machine, old OS, Windows 7, 32-bit > system > but I have visited every social chat support forum on the Internet: from > Python to Matplotlib, Numpy, Twitter, Github. > > As a newbie I am not aware how to downgrade "the multiarray version to an > earlier one > > I simply tried to test Python code from > > > https://www.section.io/engineering-education/reading-and-processing-android-sensor-data-using-python-with-csv-read/ > > > > # Python program to read .csv file > > import numpy as np > import matplotlib.pyplot as plt > import csv > > > "After importing the libraries, we now read the .csv file: > > with open('accl1.csv', 'r') as f: > data = list(csv.reader(f, delimiter=',')) #reading csv file > > > Just read about AVE from Wikipedia > > https://en.wikipedia.org/wiki/Advanced_Vector_Extensions downloaded and run HWiNFO and AVE not supported, not greened out -- https://mail.python.org/mailman/listinfo/python-list
Numpy, Matplotlib crash Python 3.8 Windows 7, 32-bit - can you help ?
Crash report: Problem Caption: Problem Event Name: APPCRASH Application name: python.exe Application version: 3.8.7150.1013 Application time signature: 5fe0df5a Error module name:_multiarray_umath.cp38-win32.pyd Version of the module with the error: 0.0.0.0 Time signature of the module with the error: 63dfe4cf Exception code: c01d Exception offset: 000269c9 Operating system version: 6.1.7601.2.1.0.256.48 Regional Settings ID: 1045 Additional information 1: 0a9e Additional information 2: 0a9e372d3b4ad19135b953a78882e789 Additional information 3: 0a9e Additional information 4: 0a9e372d3b4ad19135b953a78882e789 -- https://mail.python.org/mailman/listinfo/python-list
Re: Can you process seismographic signals in Python or should I switch to Matlab ?
On Monday, 13 March 2023 at 16:12:04 UTC+1, Thomas Passin wrote: > On 3/13/2023 12:39 AM, a a wrote: > > But some unknown reasons Matplotlib and numpy crash my Python 3.8 for > > Windows , 32-bit and no support is offered > It is possible, using pip, to downgrade versions (e.g., of Matplotlob > and numpy) to see if you can find versions that work. Of course moving > to 64-bit Python >= 3.10 would be better, but if that were possible I > imagine you would have done it already. > > BTW, it would be useful if you said what operating system you are using > (I've been assuming Windows). sorry Windows 7 My concept in building Earthquake Prediction System based on Precognition is to use RTL Software Defined Radio (SDR) to receive data from outdoor seismic sensors (smartphones turned into seismographs - sending acceleration data via audio output, to be transmitted by radio transmitter to a remote RTL SDR station, for real time processing, P-wave energy envelope calculation, earthquake depth calculation sine in case of Turkey, USGS assigns 10km depth value by default to a single EQ event. Why SDR ? Since I don't expect Cellular network to work and be operational in remote, mountain regions of Turkey after the strong 7,8 earthquake, so SDR should work as backup for cellular 3G/LTE network in the region. In case of Android smartphones I need to switch to Python for Android to get flexibility offered by scripting to support earthquake study ideas just in time and to share such ideas with friends. --- python-for-android · PyPI https://pypi.org/project/python-for-android python-for-android is a packaging tool for Python apps on Android. You can create your own Python distribution including the modules and dependencies you want, and bundle it in an APK or AAB along with your own code. Features include: Different app backends including Kivy, PySDL2, and a WebView with Pyt… See more Documentation Follow the quickstartinstructionsto install and begin creating APKs and AABs. Quick instructions: install python-for-android with: (for the develop branch: pip install git+https://github.com/kivy/… See more Contributing We love pull requests and discussing novel ideas. Check out the Kivyproject contribution guideandfeel free to improve python-for-android. See ou… See more Support If you need assistance, you can ask for help on our mailing list: 1. User Group: https://groups.google.com/group/kivy-users 2. Email: kivy-us...@googlegroups.com … See more History In 2015 these tools were rewritten to provide a new, easier-to-use andeasier-to-extend interface. If you'd like to browse the old toolchain, itsstatus is re… See more Explore further Global web icon Is there a way to run Python on Android? - Stack Overflow stackoverflow.com Global web icon How to Download and Install Python for Android mptricks.com Global web icon How to develop Android app completely using python? stackoverflow.com Global web icon How to download and install Python Latest Version on An… geeksforgeeks.org Global web icon An Introduction to Python for Android Development pythonpool.com Recommended to you based on what's popular • Feedback From pypi.org Content Documentation Support Contributing History Create and run Python apps on your Android phone https://opensource.com/article/20/8/python-android... WebAug 26, 2020 · $ pkg install python Once the installation and auto set-up of configuration is complete, it’s time to build your application. Build an app for Android on Android Now that you have a terminal installed, you can … GitHub - kivy/python-for-android: Turn your Python application … https://github.com/kivy/python-for-android Webpython-for-android is a packaging tool for Python apps on Android. You can create your own Python distribution including the modules and dependencies you want, and bundle it in an APK or AAB along with your … When did Python 2 stop supporting Android? See this and other topics on this result An introduction to Python on Android - Android Authority https://www.androidauthority.com/an-introduction... WebMar 31, 2017 · Python is a particularly simple and elegant coding language that is designed with the beginner in mind. The problem is that learning to … Reviews: 8 Estimated Reading Time: 9 mins Android - Python Wiki https://wiki.python.org/moin/Android WebThere are several ways to use Python on Android. The following table summarizes those projects which are currently active: BeeWare is a toolkit for developing cross-platform … People also ask How to run Python on Android?Create and run Python apps on your Android phone 1 Install Termux on Android. First, install the Termux application. ... 2 Build an app for Android on Android. Now that you have a terminal installed, you can work on your Android phone largely as if it were just another Linux computer. 3 Write Python code on Android. You're
Re: Can you process seismographic signals in Python or should I switch to Matlab ?
On Monday, 13 March 2023 at 16:16:28 UTC+1, Thomas Passin wrote: > On 3/13/2023 12:39 AM, a a wrote: > > But what I need is analysis of seismograms from 4,000 seismographs world > > wide to detect P-wave energy distribution underground around the earthquake > > to verify EQ Domino Effect > In that case, you will have to do a great deal of work to get all that > data into a common usable form, cleaned and errors removed. That will > be a lot of effort no matter what language you use. In the Matplotlib > lesson you pointed to, the work was already done, for one one earthquake > at one location. > > The reference I gave, > https://towardsdatascience.com/earthquake-time-series-forecasts-using-a-hybr > > id-clustering-lstm-approach-part-i-eda-6797b22aed8c > > actually includes a Python script that does this work for some selected > ranges of data, so it might be a good starting point. Thank you excellent example "The imported json files were heavily-nested; hence, during data cleaning, I “denested” the json files, transformed them into dataframes, fixed the column datatypes, imputed the NaN values, and finally concatenated them into a global dataframe, which was workable. For a full description of data cleaning, visit my GitHub profile. Finally, I indexed the dataframe by timestamps as a time-series dataframe: https://towardsdatascience.com/earthquake-time-series-forecasts-using-a-hybrid-clustering-lstm-approach-part-i-eda-6797b22aed8c I would like to work with Saied Mighani one day but unfortunately, seismology projects, studies are one-man activity. I am success oriented in building Earthquake Prediction System and I am sure, P-wave energy envelope calculate for every earthquake, for every seismographic station can give valuable hints on how earthquake energy is distributed underground, since what is recorded by surface seismographs is some form of such P-wave envelope energy transferred at the direction of surface placed seismograph. Ideas are great but life is for real ;) thank you -- https://mail.python.org/mailman/listinfo/python-list
Re: Can you process seismographic signals in Python or should I switch to Matlab ?
On Sunday, 12 March 2023 at 06:17:54 UTC+1, avi.e...@gmail.com wrote: > I have used GNU Octave as a sort of replacement for MATLAB as a free > resource. I have no idea if it might meet your needs. > > Although Python is a good environment for many things, if you have no > knowledge of it yet, it can take a while to know enough and if you just need > it for one project, ... > -Original Message- > From: Python-list On > Behalf Of Thomas Passin > Sent: Sunday, March 12, 2023 12:02 AM > To: pytho...@python.org > Subject: Re: Can you process seismographic signals in Python or should I > switch to Matlab ? > On 3/11/2023 6:54 PM, a a wrote: > > My project > > > https://www.mathworks.com/help/matlab/matlab_prog/loma-prieta-earthquake.htm > l > > If your goal is to step through this Matlab example, then clearly you > should use Matlab. If you do not have access to Matlab or cannot afford > it, then you would have to use something else, and Python would be a > prime candidate. However, each of the techniques and graphs in the > lesson have been pre-packaged for you in the Matlab case but not with > Python (many other case studies on various topics that use Python Python > can be found, though). > > Everything in the Matlab analysis can be done with Python and associated > libraries. You would have to learn various processing and graphing > techniques. You would also have to get the data from somewhere. It's > prepackaged for this analysis and you would have to figure out where to > get it. There is at least one Python package that can read and convert > Matlab files - I do not remember its name, though. > > A more important question is whether doing the Matlab example prepares > you to do any other analyses on your own. To shed some light on this, > here is a post on some rather more advanced analysis using data on the > same earthquake, done with Python tools - > > https://towardsdatascience.com/earthquake-time-series-forecasts-using-a-hybr > id-clustering-lstm-approach-part-i-eda-6797b22aed8c > -- > https://mail.python.org/mailman/listinfo/python-list Thank you my dear friends for your kind opinions. Matlab is pro, commercial, paid and demo is available for tests only. So it's hard to dicuss projects, apps in Matlab if cannot be verified by peers. What is hot today is the following 3D plot animation in Matplotlib https://twitter.com/gmrpetricca/status/1633477532526817281 But some unknown reasons Matplotlib and numpy crash my Python 3.8 for Windows , 32-bit and no support is offered Ok, I can read 100 research papers daily, preview hundreds pages of text from search engines. But what I need is analysis of seismograms from 4,000 seismographs world wide to detect P-wave energy distribution underground around the earthquake to verify EQ Domino Effect As you can see below, the Matlab project named in my first submission turned into Python project and EQ energy envelope makes sense. But I would prefer to join 100+ man project in seismology since it may take me months to download seismograms, process seismograms, preview, select features and build EQ energy envelope 3D plots for earthquakes in Turkey alone. To develop another theory, to get data, process data and get results for analysis to verify EQ energy envelope Domino Effect I am afraid there are no team research projects in seismology. What is published and discussed is one-man project. PICOSS: Python Interface for the Classification of Seismic Signals A. Buenoa, L. Zuccarellob,c, A. D ́ıaz-Morenod, J. Woolamd, M. Titosb, L. Garc ́ıaa, I. ́Alvareza, J. Prudenciob, S. De Angelisd aDepartment of Signal Theory, Telematic and Communications, University of Granada, Spain. bDepartment of Theoretical Physics and Cosmos, University of Granada, Spain. cIstituto Nazionale di Geofisica e Vulcanologia, Sezione di Pisa, Italy dDepartment of Earth, Ocean and Ecological Sciences, University of Liverpool, UK https://core.ac.uk/download/pdf/334413225.pdf seismic-signal https://github.com/topics/seismic-signal STA-LTA Algorithm and Seismometer Trajectory visualization in 3D Tonumoy / STA-LTA-Algorithm-and-Seismometer-Trajectory-visualization-in-3D https://github.com/Tonumoy/STA-LTA-Algorithm-and-Seismometer-Trajectory-visualization-in-3D PICOSS A Python Interface for the Classification of Seismic Signals. PICOSS is a Python GUI designed as a modular data-curator platform for volcano-seismic data analysis. Detection, segmentation and classification. With exportability and standardization at its core, users can select automatic or manual workflows to annotate seismic data from the suite of included tools. Originally, PICOSS was designed for the purposes of seismicity research as a collaboration between University of Granada (UGR) and Univer
Can you process seismographic signals in Python or should I switch to Matlab ?
My project https://www.mathworks.com/help/matlab/matlab_prog/loma-prieta-earthquake.html -- https://mail.python.org/mailman/listinfo/python-list
Alessandra Ambrosio
Alessandra Ambrosio www.alphasearch.gr-- http://mail.python.org/mailman/listinfo/python-list
spam magnet
Hello, I hear (from google) that people get a lot of spam after posting to this list. That's nice, because I, [EMAIL PROTECTED] , happen to want a lot of spam :) Anyone who would like to send me their spam is welcome to as well (full headers please, I'm trying to track & corellate those wascally bots :)) SuperSpamCollector [EMAIL PROTECTED] :D -- http://mail.python.org/mailman/listinfo/python-list
Python 2.4 decompiler
A brand new python 2.4 bytecode decompiler has been released. The compiling service is now available and includes features to check the correctness of the output. Those who need the service can contact us at [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list