How can AI benefit you?


Status
Not open for further replies.
@hdmi Thanks, but OMG what humongous infrastructure!

cdp_infrastructure.png

I got the above from


and realize that it is part of a bigger system but the article below suggests that scaling down is not good possible either


Well, at least I understand now why File History does not really work :eek1:
 

My Computer

System One

  • OS
    Windows 10 Pro
@hdmi Thanks, but OMG what humongous infrastructure!

View attachment 87555

I got the above from


and realize that it is part of a bigger system but the article below suggests that scaling down is not good possible either


Well, at least I understand now why File History does not really work :eek1:
Yeah, near-CDP (and especially True CDP) is almost always overkill if you're not an SME (small or medium-sized enterprise) or MSP (managed service provider). That's why I personally don't use any of all that for anything besides work related stuff, but there's things that you can do to make your own alternative backup solution that borrows some of the main principles behind CDP.

Running FastCopy in diff mode from within your own scripts that you wrote can be a lot more powerful than many think. For example, you could decide to share some of your local folders to a separate computer and monitor the changes individually in each folder to keep track of how much data is going to be transferred over the network by each individual backup task. So you could manually choose to prioritize/delay each backup task, individually, based on these monitoring reports. Doing this would put you more in control of the RPOs, of how much storage space will be used up by these numerous differential backup copies, and of how much network bandwidth will be used when. Just let FastCopy run from within scripts so it will be run on the remote computer such a way that it can copy the data over from the network share, to destination folders that will be newly created on the remote computer each time when a new backup task is run, and that are inaccessible by the local computer. By doing this, the backup data stored on the remote computer can be protected against local malware. (For it to be worth, the remote will need to be well-isolated from the local computer of course.)
 

My Computers

System One System Two

  • OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
  • Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Mouse
    Logitech G402
    Keyboard
    Logitech K800
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
@hdmi What does it take to implement the following:
  • a cdp-like system to replicate/recover the library folders of a single computer with an rpo of 1 hour
  • on-demand replication (right after an important file has been created/updated)
  • use robocopy as the workhorse and use its logs as the reporting tools
I'm sure many others will be interested too.
 

My Computer

System One

  • OS
    Windows 10 Pro
@hdmi What does it take to implement the following:
  • a cdp-like system to replicate/recover the library folders of a single computer with an rpo of 1 hour
  • on-demand replication (right after an important file has been created/updated)
  • use robocopy as the workhorse and use its logs as the reporting tools
I'm sure many others will be interested too.
File History on Windows 11 can be used to create incremental snaphots of the library folders hourly, but unlike Windows 10 if you copy other folders into the covered folders that File History backs up, they won't be backed up too. How to use File History in Windows 10 and 11
Another caveat is if a file never gets updated/modified after you turn File History on, then if this file gets deleted, you won't be able to get it back (and AFAIK this has always been the case with File History, ever since it was introduced by Microsoft with the release of Windows 8). To avoid the consequence of that, you'd have to create a separate backup to cover these files. Some would call that annoying. But then, by itself, File History is not a real backup solution, anyway in the first place. It just saves copies of files, not backup copies of files. It also means that malware can destroy the copies, as the malware still also has access to any storage location that File History has access to. (It's not wholly dissimilar to placing all your backup media right above the computer that you had backed up, and finding out later that the media have melted as a result of the computer catching on fire.)

Even so, you can choose to let File History save the copies on the local computer, i.e. into a local target folder that is shared over a network, and let the remote computer create a backup copy of that shared folder each time after File History has created another new snapshot in there. That is, let the remote computer listen for the local computer's snapshot creation completed successful event so the remote computer will create a new backup automatically each time, i.e. in another (new) folder that is located on the remote computer (and that isn't shared with the local computer of course). It would require at least a little bit of scripting knowledge to be able to pull this off, but should still be doable within Powershell, for example.

On-demand replication should be even easier to achieve, as you only need to trigger your backup script manually to make it start to run on the remote computer.

As for ROBOCOPY and using its logs to find out where exactly it was that things went wrong. Good luck with that. 😏
 

My Computers

System One System Two

  • OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
  • Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Mouse
    Logitech G402
    Keyboard
    Logitech K800
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
@hdmi You suggested in post #162 to use cdp techniques for backups, because true cdp or near cdp can't be (meaningfully) scaled down to backing up a single computer.

So, in the next post #163, I suggested a backup app that uses cdp techniques, the backup app having ALL three features below:
  1. replicate/recover the library folders of a single computer with an rpo of 1 hour
  2. on-demand replication (right after an important file has been created/updated)
  3. use robocopy as the workhorse and use its logs as the reporting tools
Since you are familiar with cdp, I wondered/wonder if you could come up with a block diagram/flowchart/description of the above app that uses cdp techniques.

I already know about FH's many, many shortcomings, I can even add one to the list that I find particularly hideous: FH does NOT notify you if it fails making updates, you can only discover the gaps in the logs :eek1:

I like RoboCopy's logs a lot, but if you don't then just substitute FastCopy for RoboCopy as the underpinning copy workhorse.

A block diagram/flowchart/description would pull together the various suggestions on using cdp techniques in a single (or some) backup app, making the discussion more concrete(y)
 

My Computer

System One

  • OS
    Windows 10 Pro
@hdmi You suggested in post #162 to use cdp techniques for backups, because true cdp or near cdp can't be (meaningfully) scaled down to backing up a single computer.
Well it can be meaningfully scaled down to backing up a single computer if you're dealing with the kind of exception that makes it still worth. I was referring to alternative, less complex (to those who aren't afraid to tinker with a small-but-effective monitoring script that they wrote themselves), techniques that do not meet the definition of True CDP, nor even meet the definition of near-CDP if you tried to stretch that definition (albeit there's always going to be someone who will insist on stretching it further, lol).
So, in the next post #163, I suggested a backup app that uses cdp techniques, the backup app having ALL three features below:
  1. replicate/recover the library folders of a single computer with an rpo of 1 hour
  2. on-demand replication (right after an important file has been created/updated)
  3. use robocopy as the workhorse and use its logs as the reporting tools
Since you are familiar with cdp, I wondered/wonder if you could come up with a block diagram/flowchart/description of the above app that uses cdp techniques.
I didn't say I was familiar with it, as I don't very often have to futz around with it TBH, but I do know that it very often can become fairly complex. Once you start looking a tad deeper under the hood, it tends to be that.

What I think I am more or less familiar with are the general basic principles, the pros versus the cons, how it compares to other types of strategies also in that regard, etc. so, what I did was I just tried to describe another method/idea the goal of which is to move one reasonable step closer to those specific advantages of near-CDP that could potentially be useful to backing up a single computer. That is, without going as far as to actually deploy near-CDP on that computer.
I already know about FH's many, many shortcomings, I can even add one to the list that I find particularly hideous: FH does NOT notify you if it fails making updates, you can only discover the gaps in the logs :eek1:
One disadvantage of CDP besides the added complexity is the importance of needing to monitor the status info, monitor errors and inconsistencies in the backed up data, monitor the impact on the infrastructure and on performance related factors also including how much backup storage space will be used... among various other factors. But anyway. To get notified of errors that might occur with File History, you could always decide to create a new task in Task Scheduler that will be triggered based on a custom XML query of the event logs.
I like RoboCopy's logs a lot, but if you don't then just substitute FastCopy for RoboCopy as the underpinning copy workhorse.
It isn't a matter of like or dislike. Just tell me what I have to do to get ROBOCOPY to make me a log of exactly what file(s) it failed to copy, and maybe I will consider using it one day.
A block diagram/flowchart/description would pull together the various suggestions on using cdp techniques in a single (or some) backup app, making the discussion more concrete(y)
RealTimeSync can be set up such a way that it will run a custom command based on changes that RealTimeSync will detect while it monitors a certain folder. See:
● RealTimeSync does not require you to start FreeFileSync. It can also be used in other scenarios, like sending an email whenever a certain directory is modified.

So basically, what that means is that RealTimeSync can also be used to, on a remote computer, run your own script that runs FastCopy in diff mode by using FastCopy commandline options, and that keeps periodically evaluating the logs that FastCopy creates, i.e. to extract what info you want from the logs and notify you of errors that it might encounter etc. until FastCopy has finished its current task. No block diagrams/flowcharts are required for any of this.
 

My Computers

System One System Two

  • OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
  • Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Mouse
    Logitech G402
    Keyboard
    Logitech K800
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
AI can help you to understand
what's come out of yer hooter.

75a913d6-2b80-43c6-b68c-4f333064fef3_text.gif
 

My Computers

System One System Two

  • OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
  • Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Mouse
    Logitech G402
    Keyboard
    Logitech K800
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
@hdmi Well, if I put a complex system together, then, after putting together the system performance expectations (like items 1, 2, 3 in post #166) I put together a block diagram/flowchart/description, I wouldn't know how else it can be done.

The reason is that if a does 1, b does 2, c does 3, then a+b+c does NOT do 1+2+3

The log switches in my multi-line RoboCopy script are

first line
/LOG:"<drive letter>:\<text file name.txt" /FP /BYTES /NS /NC /NFL /NDL

subsequent lines
/LOG+:"<drive letter>:\<text file name.txt" /FP /BYTES /NS /NC /NFL /NDL

The formatting switches /FP /BYTES /NS /NC /NFL /NDL are sufficient for what I want to monitor in the combined log, but they allow for a great deal of flexibility.
 

My Computer

System One

  • OS
    Windows 10 Pro
Back to regular programming, how can Copilot help office workers?

---------------------------:copilot:
Certainly! Microsoft Copilot can be a valuable ally for office workers, streamlining tasks and enhancing productivity. Here are some ways Copilot can assist:
  1. Drafting Emails: Copilot can help you compose emails more efficiently, saving time on repetitive communication.
  2. Summarizing Web Pages: When researching or reading articles, Copilot can provide concise summaries, allowing you to quickly grasp essential information.
  3. Creating PowerPoint Decks: Copilot can assist in generating slide content, making your presentations more engaging and informative.
  4. Automating Excel Tasks: Whether it’s data analysis, modeling, or cleaning, Copilot can handle repetitive Excel operations, freeing you up for more strategic work1.
  5. Meeting Organization: Copilot can help organize meetings by setting agendas, formulating action points, and creating summaries for absent team members2.
  6. Content Creation: Copilot can generate content for various purposes, such as writing reports, creating documentation, or drafting proposals.
  7. Local Machine Commands (Windows 11): Copilot integrates with Windows 11, allowing you to issue commands like “Open Notepad,” “Turn on dark mode,” or “Take a screenshot” directly from your desktop1.
  8. Edge Browser Integration: When working in the Edge browser, Copilot is accessible via a button on the top right. It can summarize web pages, organize tabs, and even create content based on your browsing context1.
Remember, Copilot is your AI companion, ready to tackle mundane tasks and provide valuable insights, ultimately reducing workload and improving well-being3. 🤖✨
 

My Computer

System One

  • OS
    Windows 10 Pro
@hdmi Well, if I put a complex system together, then, after putting together the system performance expectations (like items 1, 2, 3 in post #166) I put together a block diagram/flowchart/description, I wouldn't know how else it can be done.

The reason is that if a does 1, b does 2, c does 3, then a+b+c does NOT do 1+2+3

The log switches in my multi-line RoboCopy script are

first line
/LOG:"<drive letter>:\<text file name.txt" /FP /BYTES /NS /NC /NFL /NDL

subsequent lines
/LOG+:"<drive letter>:\<text file name.txt" /FP /BYTES /NS /NC /NFL /NDL

The formatting switches /FP /BYTES /NS /NC /NFL /NDL are sufficient for what I want to monitor in the combined log, but they allow for a great deal of flexibility.
https://fastcopy.jp/help/fastcopy_eng.htm

You can specify multiple source items (files/folders) in just a single command. Here is an example (with file verification set to enabled),
Code:
C:\tools\FastCopy\FastCopy.exe /logfile=C:\tools\FastCopy\ErrorLog.log /filelog=C:\tools\FastCopy\FileLog.log /cmd=diff /force_start /verify=TRUE /balloon=FALSE /no_ui <file1> <file2> <...> /to="<DestDir>"
Alternatively, specify a filelist. E.g.:
Code:
C:\tools\FastCopy\FastCopy.exe /logfile=C:\tools\FastCopy\ErrorLog.log /filelog=C:\tools\FastCopy\FileLog.log /cmd=diff /force_start /verify=TRUE /balloon=FALSE /no_ui /srcfile=C:\tools\FastCopy\filelists\files.txt /to="<DestDir>"
Always be sure to pay special attention to this: https://fastcopy.jp/help/fastcopy_eng.htm#backslash_behavior

Further, some settings are stored in a file FastCopy2.ini (so these can be edited manually in there), like:
Option | Main Settings | Verify options |
Hash mode [0 = MD5, 1 = SHA-1, 2 = SHA-256, 3 = SHA-512, 5 = xxHash, 6 = xxHash3(128bit)] – example:
hash_mode3="0"
If not verifying, record the src hash value in the file log [0 = Disabled, 1 = Enabled] – example:
hashAdd="0"

If there's multiple logfiles and you want them to be combined, you could always decide to add a few simple Windows commands to concatenate these logfiles in a separate new textfile.

Again, being unable to see in the logs exactly what file(s) have failed to copy is part why I never use ROBOCOPY. (File History doesn't have that limitation, lol...) Having no verification also kind of defeats the whole purpose of using ROBOCOPY to create backup copies anyway to begin with.
 

My Computers

System One System Two

  • OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
  • Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Mouse
    Logitech G402
    Keyboard
    Logitech K800
    Internet Speed
    20Mbit/s up, 250Mbit/s down
    Browser
    FF
@hdmi Oh yes, you can very well see failures to copy in the RoboCopy log and much, much more, e.g. leaving the Outlook app open will lock its data file, and you can see which data files fail to copy (if you have multiple data files) you can see how many bytes have failed to copy (although that is not in my log switches) you can see the time stamps, and if you specify multiple retries, you will see the time stamps of each, etc. etc.

More importantly though, neither you nor I have the background to do a top down design of the deceptively simple system 123 of post #166. Dabbling with wheels and axles don't lead to the wagon. Let's park the issue for now.
 

My Computer

System One

  • OS
    Windows 10 Pro
How can Copilot help teachers?

--------------------:copilot:
Microsoft Copilot is an AI tool designed to assist educators in the classroom. Here are five ways it can be helpful:
  1. Personalized Learning: Copilot supports personalized learning by helping you create content, tailored feedback, and guidance for students based on their individual needs and learning styles. It can adapt to diverse student requirements and enhance their learning experiences1.
  2. Brainstorming: Use Copilot to brainstorm new ideas for activities, lesson plans, supporting materials, and assignments. It can generate creative prompts and suggestions to inspire your teaching approach1.
  3. Lesson Planning: Copilot assists in planning lessons by suggesting or drafting activities, resources, and assessments aligned with learning objectives. It can even help you start a rubric for your lessons1.
  4. Feedback Generation: Copilot can draft initial feedback and ideas for students on their work. You can then edit and personalize this feedback to suit individual student needs1.
  5. Quick Answers: When you have questions, Copilot provides quick answers without requiring you to read through multiple search results. It also includes links to content sources, allowing you to assess the credibility of information or explore further1.
 

My Computer

System One

  • OS
    Windows 10 Pro
How can Copilot help teachers?

--------------------:copilot:
Microsoft Copilot is an AI tool designed to assist educators in the classroom. Here are five ways it can be helpful:
  1. Personalized Learning: Copilot supports personalized learning by helping you create content, tailored feedback, and guidance for students based on their individual needs and learning styles. It can adapt to diverse student requirements and enhance their learning experiences1.
  2. Brainstorming: Use Copilot to brainstorm new ideas for activities, lesson plans, supporting materials, and assignments. It can generate creative prompts and suggestions to inspire your teaching approach1.
  3. Lesson Planning: Copilot assists in planning lessons by suggesting or drafting activities, resources, and assessments aligned with learning objectives. It can even help you start a rubric for your lessons1.
  4. Feedback Generation: Copilot can draft initial feedback and ideas for students on their work. You can then edit and personalize this feedback to suit individual student needs1.
  5. Quick Answers: When you have questions, Copilot provides quick answers without requiring you to read through multiple search results. It also includes links to content sources, allowing you to assess the credibility of information or explore further1.

I use Gemini (formerly Bard) to do much of what Copilot indicates it can do for teachers. It cuts down on the time spent having to brainstorm and plan for individual classes as well as an entire semester's worth of work. It does a great job designing discussion questions and rubrics.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 RP channel
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home built
    CPU
    Ryzen 9 5900X
    Motherboard
    MSI MPG X570S Edge Max WiFi
    Memory
    Corsair Vengeance RGB PRO 64GB (2x32GB) DDR4 3600 (PC4-28800) C18
    Graphics Card(s)
    ASUS GeForce RTX 4070 Super OC 12GB DDR6 / ZOTAC RTX 3060 Twin Edge OC 12GB GDDR6
    Sound Card
    Proprietary on MB / FiiO K5Pro DAC
    Monitor(s) Displays
    ViewSonic XG2530 25"/Benq XL2411P 24"/ ASUS VA24DQSB) 23.8"
    Screen Resolution
    1920x1080 240Hz/144Hz/60Hz (based on monitor setup above)
    Hard Drives
    SK hynix Gold P31 1TB PCIe NVMe Gen3 M.2 2280 Internal SSD
    ADATA XPG SX8200 Pro 1TB
    Samsung SSD 860 EVO 1TB 2.5 Inch SATA III Internal SSD
    PSU
    Corsair RM1000e
    Case
    Phanteks Enthoo Pro Full Tower Chassis with Window
    Cooling
    Corsair iCUE H60i RGB PRO XT Liquid CPU Cooler
    Keyboard
    Corsair K70
    Mouse
    Logitech MX Master 3
    Internet Speed
    ~950Mb/s download / ~700Mb/s upload
    Browser
    Edge (Chromium)
    Antivirus
    Norton 360
  • Operating System
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Built
    CPU
    Ryzen 7 3700X
    Motherboard
    MSI B550 Gaming GEN3 Gaming Motherboard
    Memory
    32MB DDR4
    Graphics card(s)
    I forget, but it's old. I can't see the need to upgrade it.
    Sound Card
    Propietary
    Monitor(s) Displays
    ACER LED 24"
    Screen Resolution
    1920X1080
    Hard Drives
    1TB Samsung SSD 3.5"
    Case
    Corsair
    Cooling
    Stock
    Mouse
    Logitech
    Keyboard
    Logitech
    Internet Speed
    ~750Mb/s download / ~750Mb/s upload
    Browser
    Edge
    Antivirus
    Defender and Malware Bytes
I use Gemini (formerly Bard) to do much of what Copilot indicates it can do for teachers. It cuts down on the time spent having to brainstorm and plan for individual classes as well as an entire semester's worth of work. It does a great job designing discussion questions and rubrics.
Also, Khanmigo is a great AI tool for educators: https://www.khanmigo.ai/. It costs $4.00 a month, but that's nothing compared to the time it will save a teacher.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 24H2 RP channel
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home built
    CPU
    Ryzen 9 5900X
    Motherboard
    MSI MPG X570S Edge Max WiFi
    Memory
    Corsair Vengeance RGB PRO 64GB (2x32GB) DDR4 3600 (PC4-28800) C18
    Graphics Card(s)
    ASUS GeForce RTX 4070 Super OC 12GB DDR6 / ZOTAC RTX 3060 Twin Edge OC 12GB GDDR6
    Sound Card
    Proprietary on MB / FiiO K5Pro DAC
    Monitor(s) Displays
    ViewSonic XG2530 25"/Benq XL2411P 24"/ ASUS VA24DQSB) 23.8"
    Screen Resolution
    1920x1080 240Hz/144Hz/60Hz (based on monitor setup above)
    Hard Drives
    SK hynix Gold P31 1TB PCIe NVMe Gen3 M.2 2280 Internal SSD
    ADATA XPG SX8200 Pro 1TB
    Samsung SSD 860 EVO 1TB 2.5 Inch SATA III Internal SSD
    PSU
    Corsair RM1000e
    Case
    Phanteks Enthoo Pro Full Tower Chassis with Window
    Cooling
    Corsair iCUE H60i RGB PRO XT Liquid CPU Cooler
    Keyboard
    Corsair K70
    Mouse
    Logitech MX Master 3
    Internet Speed
    ~950Mb/s download / ~700Mb/s upload
    Browser
    Edge (Chromium)
    Antivirus
    Norton 360
  • Operating System
    Windows 11 Pro
    Computer type
    PC/Desktop
    Manufacturer/Model
    Home Built
    CPU
    Ryzen 7 3700X
    Motherboard
    MSI B550 Gaming GEN3 Gaming Motherboard
    Memory
    32MB DDR4
    Graphics card(s)
    I forget, but it's old. I can't see the need to upgrade it.
    Sound Card
    Propietary
    Monitor(s) Displays
    ACER LED 24"
    Screen Resolution
    1920X1080
    Hard Drives
    1TB Samsung SSD 3.5"
    Case
    Corsair
    Cooling
    Stock
    Mouse
    Logitech
    Keyboard
    Logitech
    Internet Speed
    ~750Mb/s download / ~750Mb/s upload
    Browser
    Edge
    Antivirus
    Defender and Malware Bytes
Back to regular programming, how can Copilot help office workers?

---------------------------:copilot:
Certainly! Microsoft Copilot can be a valuable ally for office workers, streamlining tasks and enhancing productivity. Here are some ways Copilot can assist:
  1. Drafting Emails: Copilot can help you compose emails more efficiently, saving time on repetitive communication.
  2. Summarizing Web Pages: When researching or reading articles, Copilot can provide concise summaries, allowing you to quickly grasp essential information.
  3. Creating PowerPoint Decks: Copilot can assist in generating slide content, making your presentations more engaging and informative.
  4. Automating Excel Tasks: Whether it’s data analysis, modeling, or cleaning, Copilot can handle repetitive Excel operations, freeing you up for more strategic work1.
  5. Meeting Organization: Copilot can help organize meetings by setting agendas, formulating action points, and creating summaries for absent team members2.
  6. Content Creation: Copilot can generate content for various purposes, such as writing reports, creating documentation, or drafting proposals.
  7. Local Machine Commands (Windows 11): Copilot integrates with Windows 11, allowing you to issue commands like “Open Notepad,” “Turn on dark mode,” or “Take a screenshot” directly from your desktop1.
  8. Edge Browser Integration: When working in the Edge browser, Copilot is accessible via a button on the top right. It can summarize web pages, organize tabs, and even create content based on your browsing context1.
Remember, Copilot is your AI companion, ready to tackle mundane tasks and provide valuable insights, ultimately reducing workload and improving well-being3. 🤖✨
If anybody is taken in by this garbage, I despair.

1. No chance - my emails are very technical.
2. Never need that
3. No chance - my slides are very technical.
4. Even more no chance - my excel spreadsheets are very technical. It would take me longer to tell Aritificial Idiot what I want than do it my self.
5. This is a joke - right - who needs AI to do this!
6. Content Creation - nonsense - all our reports are bespoke.
7. So I type long commands to do what I can do with shortcuts lol.
8. Switched the annoying prat off!

In summary, I have a brain - I do not need AND will never need Co-Pilot.
 

My Computer

System One

  • OS
    Windows 11 Pro + Win11 Canary VM.
    Computer type
    Laptop
    Manufacturer/Model
    ASUS Zenbook 14
    CPU
    I9 13th gen i9-13900H 2.60 GHZ
    Motherboard
    Yep, Laptop has one.
    Memory
    16 GB soldered
    Graphics Card(s)
    Integrated Intel Iris XE
    Sound Card
    Realtek built in
    Monitor(s) Displays
    laptop OLED screen
    Screen Resolution
    2880x1800 touchscreen
    Hard Drives
    1 TB NVME SSD (only weakness is only one slot)
    PSU
    Internal + 65W thunderbolt USB4 charger
    Case
    Yep, got one
    Cooling
    Stella Artois (UK pint cans - 568 ml) - extra cost.
    Keyboard
    Built in UK keybd
    Mouse
    Bluetooth , wireless dongled, wired
    Internet Speed
    900 mbs (ethernet), wifi 6 typical 350-450 mb/s both up and down
    Browser
    Edge
    Antivirus
    Defender
    Other Info
    TPM 2.0, 2xUSB4 thunderbolt, 1xUsb3 (usb a), 1xUsb-c, hdmi out, 3.5 mm audio out/in combo, ASUS backlit trackpad (inc. switchable number pad)

    Macrium Reflect Home V8
    Office 365 Family (6 users each 1TB onedrive space)
    Hyper-V (a vm runs almost as fast as my older laptop)
Can AI help people with a brain?

----------------------:copilot:
Absolutely, AI can be a powerful tool for individuals who prefer to think for themselves. Here’s how:
  1. Information Access: AI can help users access and analyze vast amounts of information quickly, aiding in informed decision-making.
  2. Personalized Learning: AI can adapt learning materials to a user’s pace and level of understanding, fostering independent learning.
  3. Productivity Tools: AI-powered tools can automate routine tasks, freeing up time for more complex, thought-intensive tasks.
  4. Critical Insights: AI can provide insights and predictions based on data analysis, which users can then interpret and apply according to their judgment.
  5. Creative Inspiration: AI can generate ideas, designs, or suggestions that can serve as a starting point for creative endeavors.
In essence, AI doesn’t replace human thought but can enhance it by providing resources, insights, and tools that individuals can use according to their discretion.
 

My Computer

System One

  • OS
    Windows 10 Pro
Can AI help people with a brain?

----------------------:copilot:
Absolutely, AI can be a powerful tool for individuals who prefer to think for themselves. Here’s how:
  1. Information Access: AI can help users access and analyze vast amounts of information quickly, aiding in informed decision-making.
  2. Personalized Learning: AI can adapt learning materials to a user’s pace and level of understanding, fostering independent learning.
  3. Productivity Tools: AI-powered tools can automate routine tasks, freeing up time for more complex, thought-intensive tasks.
  4. Critical Insights: AI can provide insights and predictions based on data analysis, which users can then interpret and apply according to their judgment.
  5. Creative Inspiration: AI can generate ideas, designs, or suggestions that can serve as a starting point for creative endeavors.
In essence, AI doesn’t replace human thought but can enhance it by providing resources, insights, and tools that individuals can use according to their discretion.
IMO - Total codswallop.

All you have done is use some Chat wotsit to reply what it is programmed to say. Do you seriously believe all that nonsense?

This is just marketing hype - end of story.

Even if we consider classic computing tasks e.g. numerical integration of many functions that cannot be solved analytically - sure the computers helps because of the speed of doing repetitive work, but the underlying solution methods come from humans.

All AI does is use fancier solution techniques but it cannot and never will make the mental intuitive leaps necessary to develop the fancier solution techniques UNTIL the AI achieves sentience. Until then, it has no intelligence whatsoever.

So @Haydon, I am sorry but I have to disagree with the above statements. If you want to believe that marketing hype, it is your prerogative, but please accept others do not.

edit: what is truly worrying is the statement "Absolutely, AI can be a powerful tool for individuals who prefer to think for themselves."
This suggests there are individuals who prefer not to think for themselves!

We don't need no AI education
We don't need no AI thought control
No company thoughts in the classroom
AI, leave them kids alone
Hey, AI, leave them kids alone
All in all, it's just another brick in the wall
All in all, you're just another brick in the wall
We don't need no AI education
We don't need no AI thought control
No company thoughts in the classroom
AI, leave them kids alone
Hey, AI, leave us kids alone
All in all, you're just another brick in the wall
All in all, you're just another brick in the wall
 

My Computer

System One

  • OS
    Windows 11 Pro + Win11 Canary VM.
    Computer type
    Laptop
    Manufacturer/Model
    ASUS Zenbook 14
    CPU
    I9 13th gen i9-13900H 2.60 GHZ
    Motherboard
    Yep, Laptop has one.
    Memory
    16 GB soldered
    Graphics Card(s)
    Integrated Intel Iris XE
    Sound Card
    Realtek built in
    Monitor(s) Displays
    laptop OLED screen
    Screen Resolution
    2880x1800 touchscreen
    Hard Drives
    1 TB NVME SSD (only weakness is only one slot)
    PSU
    Internal + 65W thunderbolt USB4 charger
    Case
    Yep, got one
    Cooling
    Stella Artois (UK pint cans - 568 ml) - extra cost.
    Keyboard
    Built in UK keybd
    Mouse
    Bluetooth , wireless dongled, wired
    Internet Speed
    900 mbs (ethernet), wifi 6 typical 350-450 mb/s both up and down
    Browser
    Edge
    Antivirus
    Defender
    Other Info
    TPM 2.0, 2xUSB4 thunderbolt, 1xUsb3 (usb a), 1xUsb-c, hdmi out, 3.5 mm audio out/in combo, ASUS backlit trackpad (inc. switchable number pad)

    Macrium Reflect Home V8
    Office 365 Family (6 users each 1TB onedrive space)
    Hyper-V (a vm runs almost as fast as my older laptop)

My Computer

System One

  • OS
    Windows 11 Pro + Win11 Canary VM.
    Computer type
    Laptop
    Manufacturer/Model
    ASUS Zenbook 14
    CPU
    I9 13th gen i9-13900H 2.60 GHZ
    Motherboard
    Yep, Laptop has one.
    Memory
    16 GB soldered
    Graphics Card(s)
    Integrated Intel Iris XE
    Sound Card
    Realtek built in
    Monitor(s) Displays
    laptop OLED screen
    Screen Resolution
    2880x1800 touchscreen
    Hard Drives
    1 TB NVME SSD (only weakness is only one slot)
    PSU
    Internal + 65W thunderbolt USB4 charger
    Case
    Yep, got one
    Cooling
    Stella Artois (UK pint cans - 568 ml) - extra cost.
    Keyboard
    Built in UK keybd
    Mouse
    Bluetooth , wireless dongled, wired
    Internet Speed
    900 mbs (ethernet), wifi 6 typical 350-450 mb/s both up and down
    Browser
    Edge
    Antivirus
    Defender
    Other Info
    TPM 2.0, 2xUSB4 thunderbolt, 1xUsb3 (usb a), 1xUsb-c, hdmi out, 3.5 mm audio out/in combo, ASUS backlit trackpad (inc. switchable number pad)

    Macrium Reflect Home V8
    Office 365 Family (6 users each 1TB onedrive space)
    Hyper-V (a vm runs almost as fast as my older laptop)
Status
Not open for further replies.
Back
Top Bottom