Jump to content

Shpadee

Member
  • Posts

    140
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Member title
    Junior Member
  1. Hi all! I'm trying to clean up my dad's workflow at his small business. He receives items to refurbish and currently manages all invoicing with Excel and macros, using Zed Axis to import to QuickBooks. I'm hoping to switch his storage to Microsoft Access using Azure. Can I import this data from a database to QuickBooks Desktop without going through QuickBooks Online or using a GUI application like Zed Axis or other import products? Thanks in advance.
  2. I'm trying to make an LED sign that shows bus arrival times. I have the authorization key for the API service, but the company says I have to set up a server to make the requests. All the requests are made to localhost (ie. http://localhost:[port]/...) I was hoping someone could point me in the right direction as to how the server is set up and what it needs to do. Thanks in advance!
  3. My dad's looking to have his Quickbooks data stored so he can access it both on a system at work and his laptop away from work. Would Dropbox be the best solution for this or would a custom solution be better? Thanks in advance.
  4. Hey, all! So there's a teacher at my high school that's trying to replace the electronic bell that marks the end of our periods with music. Is there any way to automate this with songs on a playlist that changes for every bell and stop after a short time? Thanks!
  5. Intel Ivy Bridge 3770k (i7 unlocked)
  6. GPU is sitting at 95F while just browsing
  7. Typically when playing video games, my computer sometimes stutters: audio skips, frames freeze and then my monitors hold a frame and audio stops. At this point I can't do anything but force shutdown. Is this a problem with my CPU or GPU? Is something overheating or not functioning right? I have a Intel 3770k and a Gigabyte GeForce 770
  8. https://support.squarespace.com/hc/en-us/articles/205815908
  9. Hey! My dad's switching his site over to Square Space from Homestead. He has a calculator for his website (currently hosted on Homestead) to find the price of a product according to the dimensions of the product. However, the same code he's using in Homestead is NOT working in Square Space. I'm not very good with code and I don't know whether it has something to do with languages or what. Any help would be appreciate! Thanks! Here's the website with the calculator on it: http://www.eastcoasttinning.com/pricing.html (Also, if there's a different way of executing this that's better than this, please let me know. Thanks again!) Here's the code he's using: <p><font face="Georgia"><font color="#000000" size="2"><strong>Cost Calculator</strong><br/>Enter diameter and height of pan to the <u>nearest</u> inch. </font></font></p> <table style="WIDTH: 200px; HEIGHT: 80px" cellspacing="0" cellpadding="0" width="200" summary="" border="0"> <tbody> <tr> <td width="75"><font face=" Georgia " size="2"><font color="#000000">Diameter:</font></font></td> <td>&#160;<input onkeypress="javascript:findcost();" id="diameter" size="3" />&#160;inches </td> </tr> <tr> <td><font face="Georgia " size="2"><font color="#000000">Height:</font></font></td> <td>&#160;<input onkeypress="javascript:findcost();" id="height" size="3" width="25" /> inches</td> </tr> <tr> <td><font face=" Georgia " size="2"><font color="#000000">Price $:</font></font></td> <td id="Price"><font face=" Georgia " size="2"><font color="#000000">&#160;&#160;&#160;&#160;---</font></font></td> </tr> </tbody> </table> <script language="Javascript"> function findcost() { var dia = document.getElementById("diameter").value; var height = document.getElementById ("height").value; if( IsNumeric(dia) && IsNumeric(height) ) {setTimeout("displaycost()",60);} else { document.getElementById("Price").innerHTML = '<font size="2" face=" Georgia "><font color="#000000">' + "&#160;&#160;&#160;&nbsp---" + "</font></font>" } } function displaycost(dia,height) { var dia = document.getElementById("diameter").value; var height = document.getElementById("height").value; if( IsNumeric(dia) && IsNumeric(height) && (height!="") && dia!="") { dia = parseInt(dia); height = parseInt(height); // alert(dia+height); document.getElementById("Price").innerHTML = '<font size="2" face="Georgia"><font color="#00000">&#160;&#160;&#160;&#160;$' + 5*(dia + (2*height)) + "</font></font>" } else { document.getElementById("Price").innerHTML = '<font size="2" face="Georgia"><font color="#000000">' + "&#160;&#160;&#160;&nbsp--- " + "</font></font>" } } function IsNumeric(sText) { var ValidChars = "0123456789."; var IsNumber=true; var Char; for (i = 0; i < sText.length && IsNumber == true; i++) { Char = sText.charAt(i); if (ValidChars.indexOf(Char) == -1) { IsNumber = false;} } return IsNumber; }
  10. If I reinstall on my SSD, will all the files on my HDD remain the same?
  11. Scanning.... we will see i it does any good. Any idea if resetting will work or what I can do in Windows?
  12. Will this only scan the partition Linux is on?
  13. Alrightyyy. Here's what's up: Got a virus (on Windows 10). I had to figure out how to re-enable Defender after it it disabled it and scanned my PC with both Defender and Malwarebytes. After scanning with Malwarebytes and rebooting, it brings me to the login screen but once I login there's just a gray screen and a little bar that says "Windows" in the bottom left. It doesn't do anything from there. Obviously, I don't want to format anything so I thought of a couple things: 1. If I perform the reset option will I keep my personal files and the malware will be deleted? 2. I have Ubuntu on a partition, can I do anything from there? That's about it, if you have any ideas as to how I can clean things up without losing everything that'd be fantastic. Thanks!
  14. Sorry didn't specify. I want to be able to play to wired speakers that I already have.
×