Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by pritaeas Probably the most unexpected (for a die-hard old-fashioned technical programmer) would be Reiki. I feel like since I've been doing this, my master has introduced me into so many things that appear to have been missing from my life. So much is falling into place now, and I have a very different (and better) view of my life now. Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim Hi David, > More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the … reason for the blank white screen is something in the coding not being understood by PHP 8.2. Any insights on… What's your favorite productivity hack outside of coding? Community Center by Dani Just a random question to try to get some good discussion going. For me, at least the last handful of years, it's been taking a nice stroll around town. When I first moved to California from NY, I was living in an apartment in the middle of downtown Palo Alto. I absolutely *loved* that, at 3 pm on a Tuesday afternoon, I could go outside, and see… What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by Dani I asked ChatGPT for some interesting conversation starters and it suggested this. However, the more I think about it, the less I can come up with something! I enjoy walks on nature trails, but hiking is *huge* amongst techies in the Bay Area. My husband plays DDR regularly for exercise, but that has a cult following amongst nerdy people. He enjoys … Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by Reverend Jim My wife and I consume vast quantities of e-books. Mostly mysteries. But I used to be big into sci-fi. As a teen I loved the (at that time) biggies like Asimov, Heinlein (who has lost his shine the more I learn about him), Blish, Clarke, Herbert, Niven, Ellison, etc. A book I reread every few years is The Flying Sorcerers. It is both a parody/comedy… 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 pathways, vitamins, minerals, and 20 amino acids, associated with each gene. I wish they wouldn't gatekeep such great technologies for people to have a full mapping. E.g., Celiac disease, if you don't have the genes HLA-DQ2 or HLA-DQ8, there's a 99% chance you don't have celiac. … 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: Online subission forms not sending emails of submitted info Programming Web Development by Dani To clarify, I am suggesting: [...] //make your email body to send here $survey = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . "Name: " . $_POST['Name'] . "\r\n" . "E-mail Address: " . $_POST['Email'] . "\r\n&… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …caused because of PHP 8 incompatibility problems. However, got the coding to fix all of that and things worked good again…forms on several websites. Same thing, nothing is sending. The coding I used to fix everything before is the same on… pages. It appears to be an issue with PHP. The coding for 1 of these pages is below. ` <?php // … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … to check to see if mail() is returning false. The coding I'm using has worked (e.g. sent email with… new STMP PHPmailer program needs to be used. In generic coding I got for that, I saw $mail -> send();. I… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the … reason for the blank white screen is something in the coding not being understood by PHP 8.2. Any insights on… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. How Build video-player in html And css ? Programming by Kirubel_2 …;div class="card-title"> <h2>Coding tutuorials</h2> </div></a>… Re: What would you like to see in a business directory? Programming Web Development by antwanlee … up.. Which will take lots of time. if you are coding this for fun and as an excercise, go for it… Re: Read file properties of video files in C++ Programming Software Development by Thomasio … also use just API commands, even if wrapped in whatever coding language they use, at the bottom of it, it's… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani The first thing I will say is never output `$_POST[]` content directly into the HTML without escaping it first. You are leaving yourself wide open to an HTML injection attack. Not only that, but you're also leaving yourself open to invalid HTML. All it takes is to wrap your user-sent variables with htmlspecialchars to make sure they're HTML-escaped… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… 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: How Build video-player in html And css ? Programming by Kirubel_2 body{ /* background: url(../img/w11.png); */ background: url(../img/m.jpg); background-size: cover; background-repeat: no-repeat; margin: 0; padding: 0; height: 101vh; overflow-y: hidden; } .container button{ background: transparent; … Design vs. Coding Programming Software Development by cored0mp I was thinking that one way that a coding team could work would be that coders would be rotated … (code quality wise) from developing in the department. * Architecture * Production Coding * Documentation * Quality Control Splitting off architecture as a role will… Re: Design vs. Coding Programming Software Development by cored0mp … if anything I would go further. I don't see coding and design as seperate fields (rather, seperate roles.) In other… Re: Design vs. Coding Programming Software Development by cored0mp … give any one person full accountability for every aspect of coding, I'll try to give every person a bit of… Re: Design vs. Coding Programming Software Development by pritaeas > I think that to be a good coder one must show some talent for design. And to be a good designer one must show some talent at code. I have never experienced this in any of the companies I have worked for. It's a bit different for web apps, since some designers know (the quirks of) HTML/CSS, but to me that is not coding. Re: Design vs. Coding Programming Software Development by Reverend Jim … leave. The other engineers failed miserably at both design and coding. I think anyone who aspires to software design should be… Is Coding About Authoring or Achieving a Specification? Programming by cored0mp I'll admit that I have an opinion about this. Is the point of professional coding to write creative software or to write software that adheres closely to standards? Re: Is Coding About Authoring or Achieving a Specification? Programming by Reverend Jim …. Ideally that meant writing as little code as possible. If coding is required then it should be as clean and as… Re: Is Coding About Authoring or Achieving a Specification? Programming by cored0mp @Reverend Jim Thank you for the Fortran sample. It was splendid! You were right to highlight the differences between design and coding. In fact I made a seperate post about this! Devin Might Be Fake, Yet AI's Threat to Jobs Is Real. Community Center by Johannes C. …tout their AI's capability to independently tackle complete coding projects, including actual tasks from Upwork. While …team behind Devin claims it can autonomously finish entire coding projects using its integrated shell, code editor, and…mid-term, I argue that freelance work in copywriting, coding, sales, illustrating, etc., is not dead. All …