Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by KomalBhatt You can try directly contacting the police department they claim to represent. Also, … Re: What's your favorite productivity hack outside of coding? Community Center by jacobss One of my favorite productivity hacks outside of coding is the Pomodoro Technique. Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim Odd that something so basic and obvious needs to be named. Of course, "Pomodoro Technique" is a lot shorter than "go hide in the server room so my boss won't keep interrupting me so I can get some work done" technique. At least that's what I used to call it. Re: What's your favorite productivity hack outside of coding? Community Center by Dani I don’t think there’s a better answer than that. Productivity hack when not coding are none other than breaks from coding. It’s so simple :) Re: What's your favorite productivity hack outside of coding? Community Center by Dani So basically my Palo Alto technique :) Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim >So basically my Palo Alto technique :) A lot easier and more pleasant in mid-winter in Palo Alto than here in Winnipeg. How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 …'object_netbox_2024-03-16.psql.gz' container = 'netbox-backups' try: resp_headers = swift_conn.head_object(container, obj1) print("The …'object_netbox_media_2024-03-16.tar.bz2' container = 'netbox-backups' try: resp_headers = swift_conn.head_object(container, obj2) print("The object… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … a place to install the image. Next attempt was to try resetting to factory. I've done this before and while… Re: Finished learning basics of html and css. What next? Community Center Geeks' Lounge by Dani Or you could try the React framework instead of Angular. I've heard better things about it. Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … imaging USB and do a complete drive image before I try anything else. RE BIOS, it's been years since I… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … to see if it works. The only way is to try it out by wiping the exiting system. So either they… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … returning it. It also verifies that they didn't even try reset-to-factory or they would have noticed a problem… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim >I consider them all bloatware Something I may try on this laptop (old ASUS K53E) once I get my … Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … missing. I'll mention that the tech said I should try downloading the backup file from the server and restoring it… 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 … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … to send here $mail = new PHPMailer(TRUE); /* Open the try/catch block. */ try { /* Set the mail sender. */ $mail->CharSet = "UTF… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … from the FTP. I found a similar situation you might try [mail-not-sending-with-phpmailer-over-ssl-using-smtp](https…-ssl-using-smtp) From looking around a bit you can try these variations until you find one that works: $mail->… Re: Read file properties of video files in C++ Programming Software Development by Thomasio … open source, meaning one could look into the code and try to figure out the relevant commands but we all know… Re: Read file properties of video files in C++ Programming Software Development by rproffitt … to go down so I suggest you use MediaInfo or try one of the three functions of https://github.com/stax76… Re: Read file properties of video files in C++ Programming Software Development by Salem If you want to know what windows is up to when you do something, then try using https://learn.microsoft.com/en-us/sysinternals/downloads/procmon Re: Read file properties of video files in C++ Programming Software Development by Thomasio Thanks @toneewa that looks like what I want, at least a basis from where I can try to work it out for my needs. Re: Improve HAVING BY performance Programming Databases by toneewa …::Statement* stmt; int ct = 0; int main(){ while(ct!=5){ try { driver = sql::mysql::get_mysql_driver_instance(); con = driver->connect("tcp… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa … 50. The timer delay can also impact the collision detection. Try this and see if you still get freezing. Ball.java… Re: Improve HAVING BY performance Programming Databases by Biiim …` (with an index on create_time) You've inspired me to try and setup a benchmark on my nodejs/react setup to… Re: Improve HAVING BY performance Programming Databases by toneewa …. It did speed up the results. I'll have to try another method of importing to see if I can improve… Re: DaniWeb Auto Answer A.I. feature Community Center Meta DaniWeb by toneewa I have yet to try it or find it's limitations. Trying to free up some space. Those were the minimum requirements, plus 16GB of RAM and ~100GB free space. I also don't know how large a dataset for DaniWeb would be. Will know more later. Re: How to query database using variable and get all results not just one row Programming Web Development by Biiim … `WHERE variable_name = :variable_name` matches 1 row in your table maybe try a `var_dump(str_replace(':variable_name',"'some_value'",$sql));var_dump($records… Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem First, let's prepare two tar files using different compression schemes for demo purposes. $ cat foo_1.txt This is file 1 $ cat foo_2.txt This is file 2 This is file two This is file too # Three tar files, two compressed and one uncompressed for reference $ tar -j -c -f foo.tar.bz2 foo_1.txt foo_2.txt… Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Hanginium65 Good day, Salem. My apologies for taking so long to reply to your suggestion. I refactored my code to read the contents of the tar.bz2 file and then pass them as a file-like object to the 'put_object' and also to change the content type for the file transfer to "application/octet-stream". The first was sent through to object storage … Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem I don't understand why you need to extract all the files from the compressed `tar.bz2` just to upload to a backup. Also, line 69 is now meaningless having just posted only a snippet of the code. Before the error, what was the last `logger.info` message?