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: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …;; // $message = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . // "Name: " . $_POST['Name'] …// $from = $_POST['Email']; // $headers = "From: $from" . "\r\n"; // $to = "david.tigner@RadiantNewHorizonHomes.com"; // mail… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … here $survey = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . "Name: " . $_POST['Name'] . "… Address: " . $_POST['Email'] . "\r\n" . "Phone Number: " . $_POST['Phone'] . "\r\n" . "Comments or Questions… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … the end: "Comments or Questions: " . $_POST['Message'] . "\r\n" . //make your email body to send here Should… be "Comments or Questions: " . $_POST['Message'] . "\r\n"; //make your email body to send here Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem …tar.gz foo.tar.bz2 foo.tar -rw-rw-r-- 1 sc sc 181 Mar 23 08:06 … 23 08:07 foo.tar.gz -rw-rw-r-- 1 sc sc 10240 Mar 23 08:26 …gt;>> tf1 = tarfile.open('foo.tar.bz2',mode='r') # let it figure out the compression >>>…gt;>> tf2 = tarfile.open('foo.tar.gz',mode='r') # let it figure out the compression >>>… How to Optimize RecyclerView performance by implementing the ViewHolder Programming Mobile Development by Mikekelvin …itemView) { super(itemView); textView = itemView.findViewById(R.id.textView); } } @Override public ViewHolder … View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_layout, parent, false); return new ViewHolder… How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 ….open('/var/backup/netbox_backups/netbox_media_2024-03-20.tar.bz2', mode='r:bz2') as file_tar_bz2: # Read the contents of the compressed Netbox… Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 …;/var/backup/netbox_backups/netbox_media_2024-03-24.tar.bz2", "r:bz2") as file_tar_bz2: # Go over each file in the… VB2010- why i get a different vertical size\color on RayCasting? Programming Software Development by cambalinho …, OffSetGrid, Fix(RayHeight * 4), RayCounts, 5) imgverticalline.ForeColor(RGB(VertColor.R, VertColor.G, VertColor.B)) imgverticalline.DrawLine(RayCounts, imgverticalline.Height / 2… Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by rproffitt The police email scam is well known. That's about all you need to know that it's the scam of note. Example: https://www.reddit.com/r/Scams/comments/1b592gr/is_this_real/ r/Scams has many other scams of note. Worth noting: 1. Do not track them down. 2. Ignore, block and report as spam. 3. No police use a Gmail account. Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Read a Book … www RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L] ` Is this good enough? I also have another… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Read a Book …=([^&]+) RewriteRule ^product/index\.php$ /product/%1/%2/%3? [L,R=301] RewriteRule ^product/([^/]+)/([^/]+)/([^/]+)/?$ product/index.php?mainCategory=$1&productName… Re: Do you participate in any other communities? Community Center Geeks' Lounge by Salem Yeah, there are sub-reddits for most languages and programming in general. I'm spending way too much time in https://www.reddit.com/r/C_Programming/ for example. There's the usual collection of helpful people, pedants, trolls and idiots - but that's true anywhere. The mods seem to be keeping it ticking over nicely. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Ran into some new issues. Here goes. In order to download PHPMailer, must download Composer. In order to install Composer, need a Command Line PHP.exe file. I do not have one of these. I have been using PHP services from URL provider, 1 & 1/Ionos since 2011. They said in order to get a Command Line PHP.exe file, requires SSH to 'Connect to … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim You don't need composer or access to the php.exe. just locate the PHPmailer Directory into your web root, to keep it simple and the require links should point to where it is located. mine is `require 'includes/PHPMailer/src/PHPMailer.php';` cause I put it in a folder called includes, this should be relative to the file that is using it.… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani > After code changed, not only will still not send email but screen turns blank white. That's a PHP fatal error. It could be a syntax error, or it could also be that PHPMailer is not in the location you're telling PHP to look. Do you have any way of accessing the error log? Without access to the server, perhaps through a web-based control … 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? Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … 'header' => "Content-type: application/x-www-form-urlencoded\r\n", 'method' => 'POST', 'content' => http_build_query… wants to see them: " . $_POST['ShowingTimes'] . "\r\n" . "Questions or Comments: " . $_POST['… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … HTML-escaped. Instead of `"Name: " . $_POST['ShowingName'] . "\r\n" .` you should be doing `"Name: " . htmlspecialchars…($_POST['ShowingName']) . "\r\n" .`. That being said, if the code stayed the… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …/SMTP.php'; $survey = 'Form Data:'."\r\n"; $survey .= 'Some form data:'."\r\n";//make your email body to… Converting PDF Image to CSV Using Multimodal Google Gemini Pro Programming Computer Science by usmanmalik57 … the configuration settings. ``` os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = r"PATH_TO_VERTEX_AI_SERVICE_ACCOUNT JSON FILE" model = GenerativeModel("…().split('\n') def process_line(line): special_patterns = re.compile(r'\d+,\d+\s[€%]') temp_replacement = "TEMP_CURRENCY" currency_matches… ChatGPT ‘Lobotomized’? Performance Crash Sees Users Leaving in Droves Community Center by Johannes C. … Many users are [experiencing the same](https://www.reddit.com/r/OpenAI/comments/1aktki2/i_might_be_officially_done_with_gpt_for_now/) and are abandoning the platform. “[… thoroughly lobotomized has been truly infuriating](https://www.reddit.com/r/ChatGPT/comments/1akcbev/im_sick_of_the_downgrades/),” Reddit user [Timely-Breadfruit130](https… Use of the Word ‘Tapestry’ in Web News More Than Doubled Last Year Community Center by Johannes C. … specific current issue. Although [some meming](https://www.reddit.com/r/ChatGPT/comments/18dz61c/is_this_too_niche/) has been going on about LLM… users have long noticed [overused terms](https://www.reddit.com/r/ChatGPTPro/comments/163ndbh/overused_chatgpt_terms_add_to_my_list/) and have practice spotting them. However… PDF Image Table Extractor Web App with Google Gemini Pro and Streamlit Programming Computer Science by usmanmalik57 …generative_models import GenerativeModel, Part os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = r"PATH_TO_JSON_API_FILE" model = GenerativeModel("gemini-pro…lines = full_response.strip().split('\n') special_patterns = re.compile(r'\d+,\d+\s[€%]') temp_replacement = "TEMP_CURRENCY" currency_matches … Fine Tuning Google Gemma Model for Text Classification in Python Programming Computer Science by usmanmalik57 … fine-tune on any number of records. ``` dataset = pd.read_csv(r"/content/IMDB Dataset.csv") dataset = dataset.sample(frac… script sets the LoRa configuration for fine-tuning. ``` lora_config = LoraConfig( r = 8, target_modules = ["q_proj", "o_proj", "k_proj… Devin Might Be Fake, Yet AI's Threat to Jobs Is Real. Community Center by Johannes C. …/Lauramaywendel/status/1767588416730894756) and [gallows humor](https://www.reddit.com/r/ProgrammerHumor/comments/1bd3dft/fuckyoudevin/) to the demo. However, upon [closer… examination](https://www.reddit.com/r/cscareerquestions/comments/1bd12gc/comment/kujyidr/?share_id=MBGYSWo5_ZYaKw0WutO69&utm_content=2… Extracting values from capturing groups in regex Programming Software Development by Tom_45 …;/td> I am using the pattern match = re.findall(r'<td.*?>([\d+])([.*?])*<\/td>', file) The file… Extracting values from a regex match Programming Software Development by Tom_45 …;/td> I am using the pattern match = re.findall(r'<td.?>([\d+])([.?])*<\/td>', file) The file…