Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by Chris_103 Doggy Adventures: Share a recent memorable experience you had with your dog on a nature … Re: Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Dani I'm happy to live in Silicon Valley :) This is me venting Community Center Meta DaniWeb by Dani … the site every day (that I am able to, given recent health challenges). I've made, on average, 700-1000 code… '30% of Activities Performed by Humans Could Be Automated with AI' Community Center by Johannes C. … potential to offload repetitive work and empower employees is immense. Recent research suggests that around **30% of activities currently performed by… Re: Mariadb10.11.6 Glarea single failed node startup stuck failure Programming Databases by rproffitt I wonder if the last other stable releases show this issue? "Stable release: 11.3.2 / 16 February 2024; 46 days ago" or the most recent release of MariaDB 10.11: MariaDB 10.11.7 Stable (GA) That is, many fixes don't get released for out of date versions. The new version is how many fixes are issued. Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by toneewa A recent interest is the genome mapping of our DNA. The related … Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by Puterwiz82 Thank you. It seems based on the email on Friday, they got mad I reposted it to spam. The same supposed police department has contacted previously. I attached the recent emails. ![IMG_3185.jpeg](https://static.daniweb.com/attachments/4/7b55edb5f07accf5e085c8309e4055be.jpeg) Re: This is me venting Community Center Meta DaniWeb by Reverend Jim It's hard for me to imagine that all of the pleasure I've gotten out of Daniweb, the challenges, the insights, the friendships since I joined in 2010, are all dependent on the largesse of just one very talented person. I, for one, appreciate all you have done, particularly considering your current health issues. If you feel unappreciated then … Re: This is me venting Community Center Meta DaniWeb by Reverend Jim Also, in non-computing over the years I have heard comments like "if only I hadn't stopped for coffee I would have missed that accident, or several other variations. The thing is you never know what would have happened if you had made different decisions. Certainly making a different decision may have resulted in things being better. Or they … Re: This is me venting Community Center Meta DaniWeb by jkon Dani , yes I also believe that you are responsible for the decline of DaniWeb .... BUUUT that was many years ago. We all foreseen the decline of "forums" back in early 2010's , there were many alternatives of what to do , and I strongly believe that you choose the wrong one. I will not repeat what you did or what you could be done … Re: This is me venting Community Center Meta DaniWeb by Dani > what was missing was a programming hub of news / forum / interviews I have always been a strong proponent of having editorial (news, tutorials, interviews, etc.) complement the user-generated forum discussions. In the past, well over 50% of our gross revenue from advertising went straight into paying for staff writers. IMHO we used to have … Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun …: >>> %Run 'open cv - tot.py' Traceback (most recent call last): File "C:\Users\Audun Nilsen\open cv…: >>> %Run 'open cv - tot.py' Traceback (most recent call last): File "C:\Users\Audun Nilsen\open cv… i don´t understand this syntax error when using OpenCV Programming Databases by Audun … error message: >>> %Run -c $EDITOR_CONTENT Traceback (most recent call last): File "<string>", line 6… 7 NLP Tasks to Perform for Free in Python with Mistral 7b LLM Programming Computer Science by usmanmalik57 … built with a decoder-only transformer-based architecture while some recent implementations are based on other architectures, such as recurrent neural… A module that comes with Python, doesn´t register? Programming Web Development by Audun … the error message: %Run 'open cv - tot.py' Traceback (most recent call last): File "C:\Users\Audun Nilsen\open cv… How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 … error I got after running the script. Python Traceback (most recent call last): File "/opt/scripts/netbox_backups_transfer.py", line… Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Johannes C. … thrive, the economic outlook appears bleak.** If you've missed recent AI news, **[Claude Opus now outperforms GPT-4 in most… Re: Learning about AI Community Center by Dani … of talk about Reddit, though. Especially revolving around Google's recent partnership where they are now paying a shit ton of… Re: Learning about AI Community Center by Dani Oh, but to follow up to Rev Jim's links, Google's recent core algorithm update that launched during the conference is meant to specifically go after AI-generated editorial content. Re: i don´t understand this syntax error when using OpenCV Programming Databases by Reverend Jim Assuming this is python you have to ensure the backslashes are not read as escape characters. Try image = cv2.imread(r'C:\Users\Audun Nilsen\Pictures\pica.webp') Using `r'` in front of a string indicates a raw string and the backslashes will not be interpreted as special unless the backslash is the final character in the string. You could… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun Sorry for the weird formatting.. Re: A module that comes with Python, doesn´t register? Programming Web Development by Reverend Jim I tried installing python 3.12 and had the same problem. I typically wait a bit before installing the latest and greatest because I have found it can take a while before packages are upgraded to be compatible (usually wxpython). I was able to install the individual packages under python 3.10. I know that the "next to latest and greatest" … Re: i don´t understand this syntax error when using OpenCV Programming Databases by Reverend Jim What happens if you open a python shell and just type "import cv2"? As I said in your other thread, the problem might be with python 3.12. It imports ok under 3.10. Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun I tried that using Thonny, and I´m getting the same result. I tried the same in the "CMD" that opens when I press Python 3.12, and what happened was, it just said nothing and went back to an empty "line", or whatever. I suppose that´s a good sign? It says syntax error a lot on there too. What sort of programs do you use … Re: 88 Business-Growing Strategies Digital Media Digital Marketing by henrymorgan9522 A growth strategy is an organization's plan for overcoming current and future challenges to realize its goals for expansion. Examples of growth strategy goals include increasing market share and revenue, acquiring assets, and improving the organization's products or services. Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem First, let's prepare two tar files using different compression schemes for demo purposes. $ cat foo_1.txt This is file 1 $ cat foo_2.txt This is file 2 This is file two This is file too # Three tar files, two compressed and one uncompressed for reference $ tar -j -c -f foo.tar.bz2 foo_1.txt foo_2.txt… Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 Good day, Salem. My apologies for taking so long to reply to your suggestion. I refactored my code to read the contents of the tar.bz2 file and then pass them as a file-like object to the 'put_object' and also to change the content type for the file transfer to "application/octet-stream". The first was sent through to object storage … Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem I don't understand why you need to extract all the files from the compressed `tar.bz2` just to upload to a backup. Also, line 69 is now meaningless having just posted only a snippet of the code. Before the error, what was the last `logger.info` message? Recent Downtime Community Center Meta DaniWeb by Dani … would like to thank everyone for supporting us during our recent downtime. Unfortunately, it was inevitable. On Saturday morning, at 9…, and figure out some way for me to get a recent backup of the database off of a machine with no… Recent CS grad - indecisive.... Community Center by Extro I'm a recent CS grad with a minor in Stats and absolutely no …+ years of industry experience. So, how the heck is a recent Bioinformatics grad suppose to get started? With a CS background…