• Member Avatar for rproffitt
    rproffitt

    Began Watching How AR Will Change Digital Marketing

    Businesses all over the world are trying to figure out how to make the most of their digital marketing campaigns. The rise of influencer marketing is quite significant, and many …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Hi all from Holland

    Welcome. Always nice to see where folk are from. Sunny San Diego, USA here.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Hi all from Holland

    New to this site I would like to say hello. My main interest is programming in cpp and especially the use of the Standard Template Library and std:: stuff. More …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Router have many ip's referenced to it. How to differenciate per usage?

    Too vague a question. But let's try this. Forget the IP for a moment and if you want to know the unique PC or device, look up it's MAC address …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Router have many ip's referenced to it. How to differenciate per usage?

    I am very new to Networking. When I was learning on, and configuring, a router as DHCP for practice...I stumbled over which ip address should I choose amongst many ! …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Reverend Jim in Trump

    Gotta love how the GOP just keeps inventing rules. The latest one reasons that because no president has ever been impeached during his first term, we should not impeach Trump.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in can this code be converted to java?

    Yes. The programmer reads the code, and either writes the new app or tries to convert it line by line. Said programmer would have to work at it but once …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching can this code be converted to java?

    .
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Resizing images without loss of quality

    I see I was unclear. If you pose a question and it's not what you are really asking then folk may not answer your unwritten question. Take a little more …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Resizing images without loss of quality

    The topic is "Resizing images without loss of quality" so folk may not guess you meant to ask something else.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Resizing images without loss of quality

    You must know by now that "Resizing images without loss of quality" is not possible. Decrease the pixel count and you lose pixels. Increase the pixel count and the new …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Resizing images without loss of quality

    this is may code on adding or saving image in to mysql DB Private Sub SAVECATEGORY_Click(sender As Object, e As EventArgs) Handles SAVECATEGORY.Click If PictureBox1.Image Is Nothing Then MessageBox.Show("Please Insert …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to use H3LIS331DL 3-Axis arduino to detect Harsh braking

    Here's the research on that. Pick over priors at https://www.google.com/search?q=Arduino+Accelerometer%3A+detect+braking%2F+deceleration 1. You have to filter the input (some call this averaging.) 2. Since we can't be sure of orientation you …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to use H3LIS331DL 3-Axis arduino to detect Harsh braking

    Hi, I am a newbie here, Recently I was working with H3LIS331DL 3-Axis Linear Accelerometer I²C Mini Module Here is code for the X, Y, Z-axis. #include <Wire.h> // H3LIS331DL …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in PHP Warning HTTP request failed! HTTP/1.0 404 Not Found

    Frankly I'd unplug what you use now and plug in a replacement as it appears the plugin you have broke. https://www.google.com/search?q=Plugins+to+Enable+Social+Media+oAuth+login+in+WordPress
  • Member Avatar for rproffitt
    rproffitt

    Began Watching PHP Warning HTTP request failed! HTTP/1.0 404 Not Found

    Hi, I am new to this community and would be grateful for any guidance you can give. I am constantly receiving a PHP warning whenever I create a post on …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Creating Registry binary value

    Line 2 at the end did say "Binary". Is there any mystery here Shaggy?
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Creating Registry binary value

    Hello Everyone, I'm trying to create / edit a binary value within the windows registry so far I have this: Dim data As Byte() = New Byte() {&H48, 96} Microsoft.Win32.Registry.SetValue("hkey_local_machine\hardware\description\system\bios", …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Can you get a software job right out of college without an internship?

    As to the last question in last reply. Yes, some companies try that but with employment rates in the last few percent they don't try it as often. On top …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Can you get a software job right out of college without an internship?

    Companies that expect interns to be fully fledged experts and ready to go to work are to be treated as you see fit. From the dictionary: Intern: "a student or …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Can you get a software job right out of college without an internship?

    1. Internships. My view is this is "not a job." Do you need me to detail how internships used to be and how many companies are ripping off interns? 2. …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Can you get a software job right out of college without an internship?

    Let's take a big old swipe or beat up software development while we are here. Start with https://imgur.com/gallery/z2WkWhb We have waterfall, Agile, Kanban, Scrum, Lean, and more. All these are …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Can you get a software job right out of college without an internship?

    Wait, I thought you asked about internship. If it's a job, then yes they can expect you to have the knowledge. But "internship" means you have the basics but will …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Can you get a software job right out of college without an internship?

    To the topic question: "Yes." But I went about it another way. I wrote code BEYOND homework and over the years always had demos of my work on hand. I …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Can you get a software job right out of college without an internship?

    Hi. I am a college student and I am in my third year of college. I have an associate degree in general science and i am studying to earn my …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Javascript - form submission write a string to the next page?

    https://www.google.com/search?q=submit+html+without+server looks to find the priors but let's go with no server. Rather than submit, why not tackle this with passing the value in the URL? https://www.w3schools.com/nodejs/nodejs_url.asp shows how to …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Javascript - form submission write a string to the next page?

    I have a form <form action="frame.html" method="GET"> <input type="text" name="SOMEID" /> <input type="submit" value="Submit" /> </form> I'd like to pass SOMEID to the frame.html page in a few places as …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to JamesCherrill in Drawing Graph and writing to .ppm

    > only God knows and they are not talking to me at the moment. Presuming that you are using "they" as a gender-neutral pronoun, then shouldn't that be "they is …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Drawing Graph and writing to .ppm

    Thank you JC for that. While it's been accepted to use "they" for gender neutral, I failed to resolve for the single or multiple deity point of view. I have …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Steven Peterson in Write data to excel in multiple sheets using c#

    Hi! You can use ZetExcel.com. It is very helpful.
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to (MeoW) in how to retrieve ID if it not on listview

    theres the time that i cant edit may last post and i thinking if the person didnt understand the post, they will not read it and if i add some …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Drawing Graph and writing to .ppm

    In regards to your last post. Your code is uncommented so while you and God knows what you expect, from my view, only God knows and they are not talking …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in how to retrieve ID if it not on listview

    This doesn't look better than your other post at https://www.daniweb.com/programming/threads/521271/how-to-retrieve-id-from-listview1-mysql What's the difference between this post and that one? In case folk don't know, asking again so quickly won't speed …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching how to retrieve ID if it not on listview

    ![help1.png](/attachments/large/4/f82a18611583d3d8a689ee71b5a6bc3b.png) it hard for me to explain what the problem, but the thing that i need your help is , how to retrieve the ID to listview, im trying to …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Implementing search Bar using JavaScript

    I'd use a search for this search system. Example: https://www.google.com/search?q=search+bar+using+javascript%2C+html+and+css+without+database There are videos and code to explore.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Implementing search Bar using JavaScript

    Hello guys i need help on implementing of search bar using javascript, html and css without database so that i can store data and then i can search them and …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How can i create a Hotel Management program in Netbeans?

    How about a 10 part Video on how to create a Hotel Managemnet program in Netbeans? Yes, it's true. Start at https://www.youtube.com/watch?v=VxrzKcBAAI4
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How can i create a Hotel Management program in Netbeans?

    Hello everyone, I am Bastian, i would be very grateful if anyone could help me on this one. I want to self-study about creating a Hotel Management program in Netbeans …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Database Forms and logins

    Then that is where that information is. As worded at top I read this they were logging in already. Few may guess what you have now. If it's some networked …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Maha_6 in print out number in ascending order in c++ WITHOUT USING ARRAY AND FUNCTION

    I need a program of five integer in ascending oder with if condition plz reply fast
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in looking for laptop for latest gaming

    So you're telling everyone that the site you linked to is a [GARBAGE SCOW](https://en.wikipedia.org/wiki/Garbage_scow)? Nod to https://www.youtube.com/watch?v=tMrzdKzQTf8 It's your first post so did you spam?
  • Member Avatar for rproffitt
    rproffitt

    Began Watching looking for laptop for latest gaming

    looking for laptop for latest gaming under $1000 need some suggetions for [gaming laptops under $1000]
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Drawing Graph and writing to .ppm

    I gave you the basic gist of the loop till exit. { bool something = true; do { something = stuff(); // stuff() does stuff and returns false when done. …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to work.caglar in SQL TimeStamp in DataViewGrid

    Hi, Jerry, I'm having the same problem. my value is 0x000000003DD56F2A type timestamp and I'm having trouble. I wrote code to share the solution, but it didn't work. What should …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Reverend Jim in Is This Folder Empty?

    >What is "reminiscence space"? There's an amusing old story about how all those files got there...
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Jonny_4 in Is This Folder Empty?

    Open My Computer. Click on the Search Tab to open the Search Menu. From the Search Menu set the Size filter to Empty and be certain that the All subfolder …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Need Digital Marketing Services In Toronto

    I have a friend in Vancouver BC and he assures me there are many many such agencies in Toronto. Because you are there I have to ask one question. Are …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Need Digital Marketing Services In Toronto

    Hi, I am Sasha Jenner and I am running a business. I need to get more traffic on my website. So can you guys suggest to me any digital marketing …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in I’m away for awhile

    I hear you. My son's job at Whole Wallet (Foods) has him exposed to so much. Only 25 and still not accepting how he needs to get more proactive with …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching I’m away for awhile

    I went to Disney World for Thanksgiving break, and all those germs got to me, and I now have bronchitis. On top of it, my laptop (the only computer I …

The End.