Search results

  1. Goldy

    HP Proliant server too loud!

    I have a second hand ML350p Gen 8 HP Proliant server which is too loud for my small office, even when all 4 fans are idling. It's replacing a small HP Microserver, which is near silent. Is it possible to replace the fans for quieter alternatives? Or does someone have experience with...
  2. Goldy

    Sending rich HTML emails with Python

    Whats the best way of sending HTML emails from Python 2.7? I have a script that uses smptlib library to send plain text emails from a gmail account. But I want to send the content as HTML with images. Is there a third party API service or another Python library anyone can recommend?
  3. Goldy

    jQuery Validator Issue

    Thanks Phil! This worked :) return /^\[0-9a-z]{5}$/i.test(value); }, "Incorrect Code");
  4. Goldy

    jQuery Validator Issue

    Hi all, I have this bit of code that checks if the user has entered a 5 digit number in a box. jQuery.validator.addMethod("IDValidation", function (value, element) { return /^\d{5}$/.test(value); }, "Incorrect Code"); I want to change it so that it only checks the user...
  5. Goldy

    Parallel Processing advice

    Hi, I have a python application that uses threading to connect with a range of TCP endpoints in parallel. The application imports a list of say 100 IP addresses, splits the list into chunks of 10, then starts threads for each chunk of 10 to poll the sockets sequentially. Thereby doings its job...
  6. Goldy

    Gigaworks T40 stopped working

    I used a multimeter to check the PSU had a voltage and its does. Which must mean the speakers are dead :( Thanks for the suggestions davidmt. Although I'm going to upgrade to a all round Hi-Fi with bluetooth instead.
  7. Goldy

    Gigaworks T40 stopped working

    Thanks Marsman. Yes I have tried the audio from my phone and the PC to make sure it wasn't the source. I don't want to buy a replacement power supply and find out its actually the speakers that are not working. May end up just buying new set of speakers. These are 10 years old now.
  8. Goldy

    Gigaworks T40 stopped working

    I have an old set of Gigaworks T40 that have served me well for many years. I recently moved them to a new house and they have stopped working entirely. I have a feeling the power adapter may have gone kaput. The speakers turn on but don't produce any sounds only the occasional electrical...
  9. Goldy

    New Laptop stuck on Windows 10 setup

    It was from Dell Outlet so probably not. Either way it left a bad taste in my mouth. Im looking at the Microsoft laptops instead.
  10. Goldy

    How to create diagrams

    Thanks guys. I found Draw.io which is exactly what i was after. :)
  11. Goldy

    New Laptop stuck on Windows 10 setup

    I sent it back and was refunded in full. Shame really as it was a dam nice bit of kit.
  12. Goldy

    How to create diagrams

    What is the best way to create network topologys and diagrams like this? Preferably freeware or a Microsoft Add In would be nice.
  13. Goldy

    New Laptop stuck on Windows 10 setup

    I could reinstall Windows 10 from the bootable USB but then I would lose all that Dell bloatware I was promised? It's got some fancy'killer' WiFi + Blueteeth card, surely that will need proprietary software to keep it in check.
  14. Goldy

    New Laptop stuck on Windows 10 setup

    I tried Dell technical support chat. This is where things get a bit weird. The first number was not recognised, and the second one dials a disabled stairlift company. Am i being trolled by Dell? Session Started with Agent (MYRA_SANGIL) Goldy: " Dell XPS 13 arrived today. Started on the...
  15. Goldy

    New Laptop stuck on Windows 10 setup

    I got a new Dell XPS 9360 laptop which arrived today. I was going through the initial setup where you connect to WiFi and tell Microsoft not to steal all your private data. Before it can finish I get the blue screen error and it restarts. Now its stuck on the 'Getting Started' message where...
  16. Goldy

    WWGDD - Crazy neighbour

    Your neighbour has demonstrated very good cursive handwriting. I can't recall the last time I received a hand written letter more than a sentence long. Kudos .
  17. Goldy

    Bash script to return files modified today (RPi)

    Thanks all! Got everything i need here.
  18. Goldy

    Bash script to return files modified today (RPi)

    Thanks, but how can I use mtime to return files modified only today (since midnight).
  19. Goldy

    Bash script to return files modified today (RPi)

    Hi, I have a bash script that returns a list of files in the current directory that were modified today. Here is what I have: #!/bin/bash TODAY=$(date +"%b $d") ls -n | grep -i "$TODAY" This works great when the day is 10-31, but not if the day is between 1 and 9. For single...
  20. Goldy

    Amazon Go

    How does it work for fruit and veg? Im going to guess its all pre-packed for the 'sensor fusion' technology to work.
Back
Top Bottom