• Member Avatar for rproffitt
    rproffitt

    Gave Reputation to mariah1902 in Laptop keyboard - certain keys not working

    If you have changed the keyboard and still the keys are not working then definitely the problem is with your windows. If you have a restore point please try to …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Get Value From Check box and Email it using mailto function

    I see Javascript tutorials are widely available for free. If I write code for you then you didn't learn Javascript. Instead you learn to get solutions from others which won't …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Purvi_1 in How to backup all databases in one step..?

    You can use ***mysqldump*** option, then you can use ***--all-databases** * parameter. For more information refer the following link : https://linuxize.com/post/how-to-back-up-and-restore-mysql-databases-with-mysqldump/
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Covid-19 Virus and N95

    While the CDC has missed a key item in controlling the spread which folk have written about, be sure to read https://www.cdc.gov/coronavirus/2019-ncov/specific-groups/high-risk-complications/older-adults.html Even if you take the lowest % values …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Covid-19 Virus and N95

    Preface: Horrible but want to pass it along. https://www.urbandictionary.com/define.php?term=Boomer%20Doomer > Boomer Doomer >Coronavirus (COVID-19) > >It's gonna kill all the boomers >Hey bro *shakes hand* I just gave you boomer …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Get Value From Check box and Email it using mailto function

    Did you read up about mailto? Example to test: mailto:ctestier@gmail.com?subject=Important!&body=Checked.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Get Value From Check box and Email it using mailto function

    Hi there, I have multiple check bok in the html webpage. I want to get the selected check box value usin Javascript and email that value in email body content …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Covid-19 Virus and N95

    I'm torn between linking to such stories but March 23, 2020 I'm reading where the US president and others want to return to normal and that the elderly and people …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in PC turns on but no display and no beep

    While there are many discussions about The Dead PC (google that) the basics remain that you reduce the parts count to bare minimum. For beeps (if your motherboard does the …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching PC turns on but no display and no beep

    hey guys can u please help me. My pc turns on, the fans are on and so are the lights. But my monitors says there is no signal. I tried …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in What do you think about social media automation?

    To me this is a dumb idea. At first it may work but as more install this, AIGrow and alternatives the system is just one of bots and few real …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching What do you think about social media automation?

    I have been using Instagram automation for over 2 years now and I have a very ood personal exerince with it. I am a business woman and I needed to …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Reverend Jim in How to bring Windows form on top

    >It would be improper for any app to force itself to be the active application. Even though Windows does this all the time.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to bring Windows form on top

    https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.form.activate?redirectedfrom=MSDN&view=netframework-4.8#System_Windows_Forms_Form_Activate notes how to activate a form. If it's not the active application the taskbar will flash. It would be improper for any app to force itself to be the …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to bring Windows form on top

    Hi, I have form1, and second form2 When I call second form2, form1 is disabled for any interaction. customer.Show() Me.Enabled = False Close button on form2 code is Private Sub …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Reverend Jim in Is it a correct career path?

    I think it's much more important to learn how to formulate a plan first. I've taught intro classes and the first thing I did was to get the students to …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Is it a correct career path?

    @Lev_3 Good to read your reply. With a stack of Python, Java and Javascript you will be ready to tackle what I see in the market here. In my circles …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to AndreRet in Covid-19 Virus and N95

    Some feedback from South Africa, although we are not hard hit by the virus, thing are spiralling towards the wrong end fast here as well. We went from 7 cases …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Is it a correct career path?

    My view is that you need to develop a stack. You'll learn to deal with more than one language or you won't be able to move from language to language …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Is it a correct career path?

    Hello people! :) I'm quite new in the programming world. I'm really interested in programming from the time I found that there's coming a game called Hytale, and **I would …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Please help with this MARIE code

    You seem to be having posting difficulties. Try it without the characters that don't post and PREVIEW your work before posting. Also, share your code so far. For homework and …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Please help with this MARIE code

    Hello dears, can anyone help me with how to code this: Write MARIE code to: 1. Input a number and store it in X . 2. Y will be equal …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Restarting/creating fresh instance of Tkinter GUI program

    I searched DANIWEB to see if such was asked before. Try this link: https://www.daniweb.com/programming/software-development/code/260268/restart-your-python-program
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Restarting/creating fresh instance of Tkinter GUI program

    Hi all, I am building a GUI application using Python and Tkinter to mimic a Pay-At-Pump system. Currently, I am at stage where I have coded and defined the relevant …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Covid-19 Virus and N95

    Remember when the Utah Jazz basketball team was tested for COVID-19? March 10th 2020 or thereabouts. They used up HALF of the availble COVID-19 test kits in the state. What …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Purvi_1 in sql query find the second highest salary

    Try this query to find second highest salary. SELECT MAX(salary) From table_name WHERE salary < (SELECT Max(salary) FROM table_name);
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in c++ server pages

    I'd start with tutorials and documentation because your question is too open ended. Here's how I found documentation and examples. https://www.google.com/search?client=opera&q=How+to+create+c%2B%2B+server+pages
  • Member Avatar for rproffitt
    rproffitt

    Began Watching c++ server pages

    How to create **c++ server pages**.?
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Tcll in How can I create piped IPC between a subprocess under native modules??

    just wanted to update I've finally figured something out as of Mar 19 at 2:08 AM (-5) had a night I couldn't sleep, and the thought just came to me: …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in r programmin language

    That project should be attempted over a few days if you are a seasoned R programmer. If you are new to R then you would allocate time to complete courses …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching r programmin language

    Hello! Can someone help me with coding in R ? I am new to R and I need to solve this project. It has been so many days I dont …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to manishmalikif in Which browser is best for SEO?

    Google chrome.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Are you coding from home during this pandemic?

    Somewhere about 2000 I stopped going to work and did the consultant/programmer/designer thing. A lot of my former coworkers did the same.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Are you coding from home during this pandemic?

    Are you a student studying programming from home? Are you an employee who is working from home for the time being? Or are you a self-employed freelancer? Has your work …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Windows 7 activation

    You need to clarify what your question is. All that aside I read https://answers.microsoft.com/en-us/windows/forum/all/product-key-recovery-for-windows-7-for-acer-aspire/b28093f3-98c3-4322-acea-82923ee75b17 and it covers just about every angle to W7 keys and an Acer today.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Windows 7 activation

    Windows 7 product key acer stater 2020
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Dani in What's been your experience running a/b or multivariate creative tests?

    I just throw spaghetti at a wall and see what sticks. Google Ads does great for me. Facebook Ads does terrible for me. Twitter ads do fine for lighthearted fluff.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Oracle Privacy Security Auditin

    I think it's at https://books.google.com/books?id=Gm2hzeWhou0C&pg=PA13&source=gbs_toc_r&cad=4#v=onepage&q&f=false I skimmed to page 43 and it looks like it's free to read.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Oracle Privacy Security Auditin

    HI : I WANT THIS BOOK Oracle Privacy Security Auditing: Includes Federal Law Compliance with HIPAA
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Sharing a compiled program

    I use Dropbox. I can put it in some .zip file if need be. BUT if the friend has like most of us an anti-virus installed even that may block …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Sharing a compiled program

    I just wrote a simple C++ program. But now I want to share it with a friend and GMail doesn't allow me to use it and putting it on a …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Discussion ~ MS Data Collecting

    Since you don't have to use that OS, why not start using something else? For example, many just need email (ThunderBird), an office suite (LibreOffice) and Chrome.
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Discussion ~ MS Data Collecting

    I think MS is getting a bit shifty in how it coerces you to have an MS account. It's finding more and more ways to get you on the inside. …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Covid-19 Virus and N95

    Isolation works. The paper at https://www.imperial.ac.uk/media/imperial-college/medicine/sph/ide/gida-fellowships/Imperial-College-COVID19-NPI-modelling-16-03-2020.pdf shows this is not about stopping a virus but flattening the curve so hospitals are not as swamped. The curve is pages into the …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Covid-19 Virus and N95

    @Dani. I got chicken. Really. Went to Trader Joe's just after 9AM (their new opening time) and was able to finish my shopping list. Here's shots from my usual(?) Sunday …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to rajanraveendran in Higher Studies

    After completing your graduation successfully, it is better to take your Masters degree from reputed universities of Canada and Australia. There are many universities there which provides best education and …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Covid-19 Virus and N95

    My wife said I should listen to today's announcements. Google was mentioned yet they didn't know what he was talking about. Read: https://www.techrepublic.com/article/trump-says-google-is-building-a-coronavirus-website-to-speed-up-testing-for-covid-19/ > Trump said that Google has 1,700 …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Memory frequency higher than indicated on the motherboard

    No. You asked if it would "support" not if it might work. Overclocking has from my experience been hit or miss but no maker supports it. This means you try …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Memory frequency higher than indicated on the motherboard

    I'm going to build a new computer, and ran into such a question. The processor (R7 3700x) has a maximum frequency of 3200, and the question is ... will it …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in hello please hellp be appreciate

    Please show some effort (per the Community Rules.) Also, NO company would do this so it's a bad example. Such would likely be web based and developed with a stack …

The End.