Eero plus vs NextDNS Hardware and Software by Puterwiz82 I been using Eero+ but recently switched to NextDNS. I selected several blocklists. Which is better to use, Eero+ or NextDNS? I know there’s a price difference. I don’t need parental controls. Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by Puterwiz82 I have blocked the email on my Gmail account, any new emails get sent to spam. I received one Friday afternoon. I know I can just delete my spam emails but would like to have it deleted. Would I need to unblock the email address and set a rule that emails from that address get deleted and not sent to spam or can I leave it blocked and do a rule so … Re: What's your favorite productivity hack outside of coding? Community Center by Dani I don’t think there’s a better answer than that. Productivity hack when not coding are none other than breaks from coding. It’s so simple :) Re: Backlink Indexing issue Digital Media Digital Marketing Search Engine Strategies by Dani Make sure the backlinks are on pages that are not noindexed (they neither have a meta noindex tag nor a noindex http header), as well as the pages’ URLs not matching any rule on their website’s robots.txt file. Additionally, make sure that the page on your own website the backlink points to doesn’t match a rule on your site’s own robots.txt … Re: Eero plus vs NextDNS Hardware and Software by rproffitt Why either? https://www.reddit.com/r/eero/comments/tv39ig/eero_secure_vs_nextdns/ kicks it around and I can't see why to use either. Re: Eero plus vs NextDNS Hardware and Software by rproffitt HTTPS and DNS? Why not use the Brave browser then? Too much to type about that here so read how to set up at https://www.reddit.com/r/brave_browser/comments/ucx1jp/most_secure_dns/ Then again, why aren't you using a VPN and calling it a day? Re: Eero plus vs NextDNS Hardware and Software by rproffitt Network level? My answer would be a VPN. Installing programs from Github Programming Software Development by Audun Hi I downloaded Tkinter Designer, but there´s no exe there. I´ve used Thonny as a "compiler" for running scripts, and I used it to "make" a a simple program, but I don´t know how to save as an exe, and I don´t know how I would put these files into Thonny. Am I even using the right program ? Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Johannes C. **With the decline of industry and post-colonial exploitation, Europe should aim to become a global leader in the tech and service industry. But as the EU increasingly complicates the process for startups to thrive, the economic outlook appears bleak.** If you've missed recent AI news, **[Claude Opus now outperforms GPT-4 in most areas](https://… Alteryx Upgrade - No workflow data in Gallery Hardware and Software by saichinnu1852 We are working on upgrading our Alteryx application as well as the MongoDB version. We have created a non-production environment to test the upgrade. Since the non-production environment is new, and Alteryx and MongoDB have just been installed to it, it has no existing data yet. We tried to migrate our prod MongoDB data into the non-prod … Re: Installing programs from Github Programming Software Development by rproffitt > Python is an interpreted language, which means the source code of a Python program is converted into bytecode that is then executed by the Python virtual machine. As such the .exe would be the Python virtual machine and not your Python apps. Re: Installing programs from Github Programming Software Development by Reverend Jim Further... Python gets converted to byte code which is then cached in a sub-folder. As long as the source code and packages have not changed there is no need to reconvert so subsequent runs should start faster. Also, I strongly recommend that you look into wxpython as a much better alternative to tkinter. Wxpython is a wrapper for wxwidgets … Re: Finished learning basics of html and css. What next? Community Center Geeks' Lounge by Dani Or you could try the React framework instead of Angular. I've heard better things about it. ChatGPT ‘Lobotomized’? Performance Crash Sees Users Leaving in Droves Community Center by Johannes C. **ChatGPT has had lazy days before, but this week’s performance marks an unprecedented low. Here’s why many ChatGPT Pro users are canceling their subscriptions – and even more might follow.** ![lobotomized-chatgpt.jpg](https://static.daniweb.com/attachments/4/7421f2d25c68fdee20e906d1ae1bfec9.jpg) Yes, complaints about ChatGPT being lazy have … Odoo : report creation from JSON data Programming Web Development by codewasher … API part, I have the JSON response now but I dont know how to make the views. I only need some… A module that comes with Python, doesn´t register? Programming Web Development by Audun Hi Title: A module that comes with Python, doesn´t register. This is the error message: %Run 'open cv - tot.py' Traceback (most recent call last): File "C:\Users\Audun Nilsen\open cv - tot.py", line 1, in <module> import cv2 # OpenCV for image processing ModuleNotFoundError: No module named 'cv2' I double-checked to … Re: How many users return to your site? Digital Media Digital Marketing by Dani It really depends on the specific niche of the website. However, from my perspective (and this is only my perspective), most people get their fill of memes nowadays across Tik-Tok, Facebook, Twitter, Reddit, etc. People have already incorporated these sites into their daily browsing habits. For me, I would probably not go to a separate website … i don´t understand this syntax error when using OpenCV Programming Databases by Audun This is the error message: >>> %Run -c $EDITOR_CONTENT Traceback (most recent call last): File "<string>", line 6 image = cv2.imread(“C:\Users\Audun Nilsen\Pictures\pica.webp”) ^ SyntaxError: invalid character in identifier >>> This is the code: import cv2 # OpenCV for image processing image =… 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 Thanks. That sorted it. Now, I have a new problem.. I tried the two variations of quotation marks, without the backslash, and got this: >>> %Run 'open cv - tot.py' Traceback (most recent call last): File "C:\Users\Audun Nilsen\open cv - tot.py", line 8 image = cv2.imread("C:\Users\Audun Nilsen\Pictures\… Re: i don´t understand this syntax error when using OpenCV Programming Databases by Audun Sorry for the weird formatting.. 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: 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: Cannot delete file Hardware and Software Microsoft Windows by afi_freak27 dont have another one Re: 3 word story Community Center Geeks' Lounge by arjunsasidharan dont you get Re: *One Word Game* Community Center Geeks' Lounge by vinod_javas dont Re: Dont know..whether the problem is spyware or registries..!! Hardware and Software Microsoft Windows by caperjack Dont know..whether the problem is spyware or registries. hi, so … Idiot needs help Programming Web Development by mach1 … purchased a php nuke template at the template monster and dont know how to upload it properly to my server. I… WUPDATER HELP Hardware and Software Microsoft Windows by acehi436 Dont where this came from or what the problem is now …