• 7 Posts
  • 33 Comments
Joined 2 years ago
cake
Cake day: October 16th, 2023

help-circle
  • College professor here. The way I see it, AI is inevitable and it’s here to stay. Fighting against AI would be like trying to fight against pocket calculators in the 70s. It’s coming whether we like it or not, in class and in the real world; so we need to focus on adjusting the curriculums to work with it, rather than against it.

    Right now, a lot of course curriculums are predominantly regurgitation based learning: I’ll tell you X, you tell me X but in 3 months. But AI trivializes that way of thinking. If I want to, I can get ChatGPT to generate an entire essay on the impact of ink drying speeds to the colour of grass. Whatever I want, it takes it 10s to write. However, LLMs still struggle with critical thinking, nuances, and originality; which I think is the more important aspect of education.











  • CocaineShrimp@lemm.eetoLinux@lemmy.mlSSH managers on Linux?
    link
    fedilink
    English
    arrow-up
    42
    ·
    18 days ago

    Not a GUI, but I keep my ~/.ssh/config clean by splitting my configs into folders, and including them in the main ~/.ssh/config.

    I have the folder, ~/.ssh/config.d/, and here’s what it looks like:

    ~/.ssh/config.d
    .
    ├── work
    │   ├── dev.config
    │   ├── staging.config
    │   └── prod.config
    └── server
        ├── development.config
        ├── containers.config
        ├── home.config
        ├── pis.config
        └── server.config
    

    Then my ~/.ssh/config looks like this:

    Include config.d/work/*
    Include config.d/server/*
    Include config.d/other/*
    

















OSZAR »