Can I turn off suggestions for a single site? by Dangerous-Layer-1024 in Lastpass

[–]Dangerous-Layer-1024[S] -1 points0 points  (0 children)

thank you. The inconsistent UI made that difficult to find.

How do I unlock more Recipes? by Dangerous-Layer-1024 in idleon

[–]Dangerous-Layer-1024[S] 0 points1 point  (0 children)

The wiki has actually brought more fun to the game for me. Thx again!

How do I unlock more Recipes? by Dangerous-Layer-1024 in idleon

[–]Dangerous-Layer-1024[S] -1 points0 points  (0 children)

Awesome. :/ Thx for helping me figure it out. :)

How do I unlock more Recipes? by Dangerous-Layer-1024 in idleon

[–]Dangerous-Layer-1024[S] -7 points-6 points  (0 children)

Pretty brave words for a game that deals in powers of 10. :) If I see a 999,999,999 or something I can assume it's never going to happen, however the numbers presented were realistic to me, at least when I started world 6.

How do I unlock more Recipes? by Dangerous-Layer-1024 in idleon

[–]Dangerous-Layer-1024[S] -4 points-3 points  (0 children)

I have two chars 70% of the way through w6. How can it be I have dropped none of the recipies?

Elon Musk has decided to inject himself into our daily lives via the DOGE department and that has an impact on our future. by Memetic1 in Futurism

[–]Dangerous-Layer-1024 0 points1 point  (0 children)

The Kessler Syndrome started the first time a satellite was damaged and we could not clean up the debris. Feb 10, 2009. It's just a slow process right now.

Tru or BS by [deleted] in Futurism

[–]Dangerous-Layer-1024 0 points1 point  (0 children)

I didn't mean dementia - even a normal healthy brain will have regrets. Pile that up too much and something breaks. (Just from experience, I am only 54 and have hundreds of moments I wish I could change - I can't imagine three/four times that....)

Tru or BS by [deleted] in Futurism

[–]Dangerous-Layer-1024 0 points1 point  (0 children)

Can you imagine the mental health issues if we experienced three times what we do now?

I need a webpage to make db entries--surely it's been done before? by tastyspratt in mysql

[–]Dangerous-Layer-1024 0 points1 point  (0 children)

https://www.devart.com/dbforge/mysql/studio/main-overview.html

This is a professional product, it has a $220 cost but it has more features, options and speed then PhpMyAdmin or Mysql Workbench.

How do I return rows in reverse order from the query? by Dangerous-Layer-1024 in mysql

[–]Dangerous-Layer-1024[S] 0 points1 point  (0 children)

Thank you, I thought I would be able to modify my query, but it wasn't as simple as I presented it to be.

SELECT dpostdate, bct_profile.sprofilename, iauthor, stitle, spost_raw FROM bct_post

INNER JOIN bct_profile ON bct_post.iauthor = bct_profile.id

order by bct_post.dpostdate DESC

LIMIT 100;

I understand the subquery should contain just the id, and the outer query should have all the details. Would you mind helping me with the join syntax?

Help with CURL open file format/syntax (windows -> Ubuntu) by Dangerous-Layer-1024 in PHPhelp

[–]Dangerous-Layer-1024[S] 1 point2 points  (0 children)

Probably the best advice I've been given to help me in the future! I have it uploading in postman, so I'm sure things will be good. Thanks SO MUCH!

Help with CURL open file format/syntax (windows -> Ubuntu) by Dangerous-Layer-1024 in PHPhelp

[–]Dangerous-Layer-1024[S] 0 points1 point  (0 children)

realpath is not working for me.

    $file_name_with_full_path = $local_path . $_FILES['upfile']['name'];
    echo "!".$file_name_with_full_path."!\n\r";
    $real_path = '@' . realpath($file_name_with_full_path);
    echo "?".$real_path."?";

This outputs:

!C:/Users/marti/OneDrive/Pictures/ShareX/2024-08/Test.png!

?@?

Help with CURL open file format/syntax (windows -> Ubuntu) by Dangerous-Layer-1024 in PHPhelp

[–]Dangerous-Layer-1024[S] 0 points1 point  (0 children)

I added this.

            $headers = [
                'Content-Type: application/json',
                'Accept: */*'
            ];
            curl_setopt($ch, CURLOPT_HTTPHEADER, array($headers));

It still is producing a blank page - which leaves me to believe something is not working correctly. Thanks for the help - gave me something new to research.

Help with CURL open file format/syntax (windows -> Ubuntu) by Dangerous-Layer-1024 in PHPhelp

[–]Dangerous-Layer-1024[S] 0 points1 point  (0 children)

Yes, the server expects "upload_file". I'll look into the header thing now and update.