Look around you, everybody is making fun of Linux, even the author of this article, my comment about Linux users being dilusional is absolutely true and you've proved it by pulling that "90% of Windows users hate it" out of your ass, if you can't handle jokes and actual facts maybe stay off the internet and go recompile your kernel or something.
ChatGPT memory upgrade extends to Free users by Pradeep Viswanathan
Back in April, OpenAI announced a major upgrade to ChatGPT’s memory feature. The improved memory allowed ChatGPT to reference a user’s past chats to provide more personalized, relevant, and useful responses. Until today, this enhanced memory was available only to ChatGPT Plus and Pro users.
Today, OpenAI announced that this memory upgrade is now rolling out to all logged-in ChatGPT Free users. This is big news, as it will impact the ChatGPT experience for hundreds of millions of users. For example, if a user previously mentioned liking Indian food, ChatGPT may remember that and suggest Indian dishes the next time the user asks, “What should I have for lunch?”
However, OpenAI is not rolling out the same full-featured memory offered to paid users. Instead, Free users will receive a lightweight version that provides short-term continuity across conversations. ChatGPT Plus and Pro users will continue to benefit from longer-term memory and a deeper understanding of their preferences.
To enable this memory feature, ChatGPT Free users in the EEA (EU + UK), Switzerland, Norway, Iceland, or Liechtenstein can go to Settings > Personalization > Memory > Reference chat history and turn it on. OpenAI will also present a prompt to enable this setting. All ChatGPT Free users outside the above regions will have memory enabled by default.
Depending on their preferences, users can manage memory using these two settings: Reference saved memories: Details you’ve explicitly asked ChatGPT to remember, such as your name, favorite color, or dietary preferences.
Reference chat history: ChatGPT can use information from your previous chats to make future conversations more helpful.
While the capabilities differ between the free and paid tiers, this latest improvement to ChatGPT will deliver responses that feel more relevant and personalized for millions of users.
Question
mikeaag
Hey all,
Wondering if someone can help me.
I need to setup a cron job that backs up a mysql database, but im not too familiar with cron jobs.
The code i have at the moment is:
and the php file is:
<?php $host = "localhost"; $username = "root"; $password = ""; $database = "database"; mysql_connect($host, $username, $password); mysql_select_db($database); $query = "SELECT * INTO OUTFILE 'path/to/backup/file.sql' FROM TABLENAME"; $result = mysql_query($query); mysql_close(); ?>
Im pretty sure the PHP code will work fine, its more the Cron job im worried about.
I need it to run every week, at midnight on sunday, and i want it to output its results to a log file as well.
Can anyone tell me if this will work before i test it on the server, as its not my server and i dont want to break it :D
Thanks in advance
Link to comment
https://www.neowin.net/forum/topic/882910-mysql-cron-job-backup-mysql-database-with-cron-job/Share on other sites
3 answers to this question
Recommended Posts