ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. PhlipElder
    3. Posts
    • Profile
    • Following 0
    • Followers 3
    • Topics 28
    • Posts 913
    • Best 306
    • Controversial 2
    • Groups 0

    Posts made by PhlipElder

    • RE: Configure Mastodon to Use Zoho ZeptoMail for SMTP Email

      @scottalanmiller said in Configure Mastodon to Use Zoho ZeptoMail for SMTP Email:

      @PhlipElder said in Configure Mastodon to Use Zoho ZeptoMail for SMTP Email:

      We have an internal IIS or Exchange based SMTP server that we set up for this. It's just too painful otherwise to figure out.

      We never do that because it's too temperamental. If you get blacklisted or anything, all it takes is your datacenter getting listed by some random group and suddenly O365 blocks you. We do this with Postfix which is faster, easier and more stable than Exchange (in places where we deal with Exchange we typically put Postfix in front of it for safety) but only to relay to ZeptoMail or SendGrid or Mailgun because that's how you make transactional Exchange or Postfix the most reliable.

      All of our mail servers are properly set up with a SmartHost, SPF, and DMARC. We don't have any reputation issues. That's a 2000s kind of problem.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Configure Mastodon to Use Zoho ZeptoMail for SMTP Email

      @JaredBusch said in Configure Mastodon to Use Zoho ZeptoMail for SMTP Email:

      @PhlipElder said in Configure Mastodon to Use Zoho ZeptoMail for SMTP Email:

      internal IIS or Exchange based SMTP server

      I have had these things. They never seem stable to me.

      @PhlipElder said in Configure Mastodon to Use Zoho ZeptoMail for SMTP Email:

      It's also temperamental. It will just stop working.

      I use Postfix, typically on Fedora, I don't have problems then.
      I setup it up on Vultr and restrict the IP that can connect to the company offices.

      Sorry, poorly written English.

      Mastodon is temperamental with SMTP.

      We have IIS SMTP and Exchange set up across the board (our clients are cloud averse) with Exchange being fully stable once in.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Configure Mastodon to Use Zoho ZeptoMail for SMTP Email

      @scottalanmiller We have an internal IIS or Exchange based SMTP server that we set up for this. It's just too painful otherwise to figure out.

      It's also temperamental. It will just stop working.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Installing Mastodon 4.1.2 on Debian 11

      @scottalanmiller said in Installing Mastodon 4.1.2 on Debian 11:

      Mostly this is taken from Mastodon's documentation but some of it is wrong. I tried their Docker configs, but couldn't find any that worked and it isn't clear if they have an official Docker image or just third party ones. They don't actually list Docker on their official site. So this is a traditional install.

      As root...

      apt update && apt install -y curl wget gnupg apt-transport-https lsb-release ca-certificates
      curl -sL https://deb.nodesource.com/setup_16.x | bash -
      curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg >/dev/null
      echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list
      wget -O /usr/share/keyrings/postgresql.asc https://www.postgresql.org/media/keys/ACCC4CF8.asc
      echo "deb [signed-by=/usr/share/keyrings/postgresql.asc] http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/postgresql.list
      apt update && apt install -y imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file git-core \
        g++ libprotobuf-dev protobuf-compiler pkg-config nodejs gcc autoconf \
        bison build-essential libssl-dev libyaml-dev libreadline6-dev \
        zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev \
        nginx redis-server redis-tools postgresql postgresql-contrib \
        certbot python3-certbot-nginx libidn11-dev libicu-dev libjemalloc-dev nodejs
      corepack enable && yarn set version classic
      adduser --disabled-login --gecos "" mastodon
      sudo -u postgres psql -c 'CREATE USER mastodon CREATEDB;'
      ufw allow http && ufw allow https
      

      As Mastodon

      su - mastodon
      git clone https://github.com/rbenv/rbenv.git ~/.rbenv && cd ~/.rbenv && src/configure && make -C src
      echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc && echo 'eval "$(rbenv init -)"' >> ~/.bashrc
      exec bash
      git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
      RUBY_CONFIGURE_OPTS=--with-jemalloc rbenv install 3.0.6
      rbenv global 3.0.6
      gem install bundler --no-document
      cd ~
      git clone https://github.com/mastodon/mastodon.git live && cd live
      git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)
      bundle config deployment 'true'
      bundle config without 'development test'
      bundle install -j$(getconf _NPROCESSORS_ONLN)
      yarn install --pure-lockfile
      RAILS_ENV=production bundle exec rake mastodon:setup
      npx update-browserslist-db@latest
      exit
      

      As root again...

      cp /home/mastodon/live/dist/nginx.conf /etc/nginx/sites-available/mastodon
      certbot --nginx -d  yourdomain.com
      ln -s /etc/nginx/sites-available/mastodon /etc/nginx/sites-enabled/mastodon
      vi /etc/nginx/sites-available/mastodon
      rm /etc/nginx/sites-enabled/default
      systemctl restart nginx
      cp /home/mastodon/live/dist/mastodon-*.service /etc/systemd/system/
      systemctl daemon-reload
      systemctl enable --now mastodon-web mastodon-sidekiq mastodon-streaming
      

      We install on Ubuntu and yeah, their documentation really sucks. There's lots of little tweaks that need to be done outside of what they have.

      I've not had the time to compile them into a How To as of yet as each successive install has needed to be tweaked so keeping a public facing How To is out of the question.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Remote Access to Ubuntu 23.04 Lunar Lobster with KVM Child Process Has Exited | MeshCentral Error

      Side question: When does 23.04 get moved into LTS mode?

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Random Thread - Anything Goes

      @nadnerB said in Random Thread - Anything Goes:

      91FA5627-3A85-49C9-AEB0-51FD44153F99.jpeg

      WD = Water Displacement
      It was designed to displace water on the inside of distributors as the points and rotor would short out causing no starts or rough idle and/or running.

      It apparently does work to remove the clouding on headlight lenses that have lost their UV protective coating. We've not tried it though.

      posted in Water Closet
      PhlipElderP
      PhlipElder
    • RE: What are you using to open HEIC files?

      @ITivan80 said in What are you using to open HEIC files?:

      Maybe you want to try the following software:

      https://www.freeconvert.com/heic-to-jpg

      I have done this many time and it has worked.

      We have an Adobe subscription. I hadn't even thought of running a batch on the .HEIC files to convert them. It's something to look into thanks!

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: What are you using to open HEIC files?

      @WrCombs said in What are you using to open HEIC files?:

      Subject is the question, what are you using if anything to open HEIC files (video files) on Windows 11 ? I get videos from customers showing me problems and sometimes they come through like this, Usually can't open them.

      Was using the freebie OEM extensions from the Microsoft Store but those are now gone.

      I'm not going to pay $1.40 for something that should be free.

      So, flipped the iPhone to Compatibility Mode (JPG).

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @PhlipElder said in Staying in Ethics and Legal with ChatGPT usage?:

      That creativity comes from that person. Thus, they own what they have done.

      Just to be clear, the language and the law agree and agree that the use of tools to do this changes nothing.

      So we are totally in agreement on these statements. And these statements were the basis of my logic that I laid out.

      Scott,

      I don't understand the need to make things so complicated.

      My point is not being registered. So, let's leave it lie.

      Agree to disagree.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      I wonder if maybe, and I'm just wondering, if maybe you have a goal like "Learn to write a paper well." And then add "manually", I get that. So let's assume that that is the goal.

      Then this would clearly make ChatGPT a valuable research tool, even a sample generating tool, but using it to avoid "manually writing the paper" would logically violate the point.

      For me, a key goal would be to "avoid anyone needing to learn to write papers." Because to me, that is a skill that exists only to placate incompetent professors to fill time to avoid learning more meaningful material. Being able to write well, something I take great pride in being good at, is essentially worthless. It has very little, if any, academic benefit and basically no function in the workplace. It's an entire human activity that exists only to waste time in the school process.

      Being able to research and produce good information on a topic is super important. And if ChatGPT does that better than a human, then learning ChatGPT is the appropriate means to that end. But laying out that information, while potentially valuable forty years ago, isn't valuable today. So the last thing I would want to do is waste students' time on it instead of having them learning things that they can use in the future.

      I find the time spent learning how to write, learning how to cite, how to format essays to be directly counter to educational goals. Wasting time, while expending effort, is highly detrimental because your brain works very hard doing things it is bad at (double checking citations is labor intensive and a wholly worthless activity - it's just about coping notes correctly) making it exhausted and not leaving time or energy for learning valuable things.

      Scott,

      That's a whole lot of words. Again, we seem to be at the point where I've made simple points and backed them up and end up with a dissertation as to why my conclusions are wrong, usually based on some sort of feelings type thing.

      I will repeat myself this one last time: The human person produces something from their mind and heart. Some call it art, some call it poetry, some call it literature, and so much more. A dissertation or a thesis would be another set of examples or perhaps an essay on a Dostoyevsky novel.

      That creativity comes from that person. Thus, they own what they have done.

      There is no way to reconcile what comes from within a person via their own thought processes and creativity and what comes from a machine as far as ownership goes.

      They are not the same and never will be.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @PhlipElder said in Staying in Ethics and Legal with ChatGPT usage?:

      There's always the person that comes from the "School of Good Enough" and it's those folks that will try and coast through using any "tool" they can without investing the time and effort needed to actually know something.

      Right. And that's how I feel people avoiding AI in writing are approaching it. They think that it is "good enough" to grade or evaluate on the unimportant, automatable portions of writing that we don't need humans for... because that part is easier to test. Spelling, sentence structure, dates, names, citations... all of that requires effort, but not thought. No creativity, no value. To care about any of it is about making things "good enough."

      If I'm evaluating someone's ability to learn a subject, I want to know if they can discuss it, live. How quickly they react. How much they can deal with the unknown (counter ideas thrown at them in real time), etc. Writing facts or even producing opinions with lots of free time is easy. Defending a position in real time requires you to actually know things, not have looked them up in the past. Very different things.

      This is why when interviewing people we do conversations. Anyone can answer questions potentially, even people with no idea what they are answering, but carrying on a meandering, deep conversation where ideas or bantered about and applying cross domain knowledge in real time is required tests something very different.

      Scott, I don't feel I think. That's another disconnect that seems to happen when we have these kinds of discussions.

      Logic whether Aristotelian, Boolean, or Modern is the order of the day not feelings. And, I'm not that good at it. I need to get schooled by our eldest on a regular basis on which fallacies are at work when I see something that doesn't seem to line up but can't grasp it.

      Suffice it to say, I believe that I've made my premise set and conclusions very clear in a fairly logical structure.

      No feelings.

      Just thoughts and a conclusion.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @PhlipElder said in Staying in Ethics and Legal with ChatGPT usage?:

      In those examples the original content comes from the mind of the one hitting the keys.

      To some degree, but not entirely. And the same is true of ChatGPT. You still need a competent operator to make it produce useful output. The average person can't operate it to get a good PhD thesis, for example. So it still comes from the mind of the operator of the tool.

      I've come to realize that will never again trust anything from anyone without proof that they know what they have presented.

      That's going to be the differentiator in my mind.

      There's always the person that comes from the "School of Good Enough" and it's those folks that will try and coast through using any "tool" they can without investing the time and effort needed to actually know something.

      This conversation puts an entire segment of conferences, conventions, and so much more into question. I'll never be able to look at a person as being knowledgeable without having a conversation with them to determine whether they are a ChatGPT Clone or the real deal.

      That's a really sad place to be in Scott.

      As I mentioned above, ownership means, "I did that". It came from me not some machine. There is an inherent sense of accomplishment there.

      There is no accomplishment having a machine do it for us. None.

      And this is the point that doesn't seem to be registering here. Lots of deflections and explanations.

      KISS

      I do it = mine.
      I write it out = mine.
      I use a hammer, nails, a string, a tape measure, and a hose to build a house and I did it.

      To have someone that has gone through life having it done for them by the ChatGPTs of this world is beyond sad with that person missing one of the most important aspects of being human: I created that.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @PhlipElder said in Staying in Ethics and Legal with ChatGPT usage?:

      So, no ownership?

      Correct, in the same way that a typewriter, calculator, spell checker or Grammar assistant do not own the work that they help you to create. It still requires a human to operate those tools, and this one. No different.

      In those examples the original content comes from the mind of the one hitting the keys.

      Original, as in created, as in inspired by and written down, as in it came from the person themselves not some machine.

      Seriously Scott?

      What's the saying? "Possession is 9/10ths of the law." ?

      Having a machine spit out content then presenting it as something I created is a lie.

      A shovel is a tool. A screwdriver is a tool. A computer is a tool.

      Content is the creator's own.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @Obsolesce said in Staying in Ethics and Legal with ChatGPT usage?:

      If your English professor wants you to write an essay, and you didn't write it, then I see a problem.

      Problem, yes. But not plagiarism. And not quite cheating, either. It's a weird grey area. Because it's a universal tool.

      So, no ownership? It is cheating plain and simple. No different than looking over another's shoulder to pick up on what they are doing to write a test.

      Have we really gone that far that "grey" justifies virtually any kind of behaviour? No culpability? No ownership? No responsibility for one's actions?

      Wow Scott. That's so sad and a total antithesis to what we've taught our kids in our home school.

      That's like having a bot lift weights for me then going home and telling my wife that I did the required exercise for the day.

      No way. That's just bunk.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      Every generation spends time learning new tools. Every old generation feels like this is lazy. But just as we use printers instead of type writers. And our grandparents used typewriters instead of pen and paper. And their great great great grandparents used pens instead of chisels and rocks... it's not that we are increasingly lazy. It is that we are able to reduce the amount of wasted effort so that we can spend more time on the parts that are important.

      Today we can write more intelligent discourse and communicate about it in minutes than stone age man could record in a month and share with no one. The use of tools to eliminate or reduce the unnecessary allows time to focus on real learning, growth, and productivity.

      Just remembered another example: Cole's Notes.

      Papers written based on a reading of Cole's Notes as opposed to actually reading the book, absorbing it, understanding it, and then being able to see the author's intent would be very different.

      I want real the real person and their real experience.

      https://open.spotify.com/track/73CKjW3vsUXRpy3NnX4H7F?si=ac956108dbb54fd4
      ^^^
      Fake Plastic Trees

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      Every generation spends time learning new tools. Every old generation feels like this is lazy. But just as we use printers instead of type writers. And our grandparents used typewriters instead of pen and paper. And their great great great grandparents used pens instead of chisels and rocks... it's not that we are increasingly lazy. It is that we are able to reduce the amount of wasted effort so that we can spend more time on the parts that are important.

      Today we can write more intelligent discourse and communicate about it in minutes than stone age man could record in a month and share with no one. The use of tools to eliminate or reduce the unnecessary allows time to focus on real learning, growth, and productivity.

      The closest thing that I can think of as far as my attitude towards ChatGPT is plagiarism.

      I do not see it as a tool when someone takes a few moments of work from ChatGPT and presents it as their own.

      That is not honourable at all.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @PhlipElder said in Staying in Ethics and Legal with ChatGPT usage?:

      We home school our kids.

      Us too.

      It's the best decision we ever made. A lot of compromises along the way to make it work but we have.

      One has graduated while the other two are working their way through.

      It's a great treat to spend the amount of time we have with our kids.

      They are the better for it and so are we.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      Or ask an employer...

      Employee 1 spent ten minutes and ChatGPT and got better results.

      EMployee 2 spent a day and did it manually and got worse results.

      Which is the better employee that does a better job and is more considerate of their employer? Which has more value?

      Employers would say Employee 1 worked "smarter, not harder" and has more value as an employee. Employee 2 was the lazier, less valuable.

      We home school our kids.

      Our eldest son is currently getting into trig and calculus. He's extremely resistant to doing the proofs because he knows the answer.

      I hand him a string, hose, and tape measure and ask him to build me a shed. He knows now what that means, but it's still a lesson that needs to be learned.

      If I have no clue WHY something works because I didn't build it, put it together, thrash the snot out of it, then I won't know WHY or WHERE to look if something is broken.

      That's borked. Totally borked to think that one can get through life coasting on another's work, or fake work in this case IMO, and not hit the wall at some point.

      EDIT: I find the very idea that one would think they could get through life in that way insulting.
      EDIT2: And beneath the dignity of work and the value of that work.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @PhlipElder said in Staying in Ethics and Legal with ChatGPT usage?:

      Being able to stand back, look at something, and say, "I did that!" is a pretty amazing experience. So, did none of the folks bastardizing their writing ever have that experience?

      Yes, but college isn't work. It's busy work. The entire point of university isn't education or work, but to buy a degree. ChatGPT is the logical path to that. If the students (or their future employers) valued education, they'd test for that. As long as they prefer a piece of paper over actual learning, there is no dignity in the process.

      I'm of the opinion that University is virtually useless for the bulk of the kids entering there.

      If there is mission and purpose with a goal in mind for the kid to teach and use a Masters or PhD then go for it.

      Otherwise, go to tech college or get a trade.

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • RE: Staying in Ethics and Legal with ChatGPT usage?

      @scottalanmiller said in Staying in Ethics and Legal with ChatGPT usage?:

      @RojoLoco said in Staying in Ethics and Legal with ChatGPT usage?:

      Having read many online articles/posts/whatever that were clearly written by some AI, all I can say is that the content it regurgitates is garbage. So the time you will spend editing the output will probably get you even with the effort required to have just written it yourself.

      ChatGPT has been pumping out university papers better than average students. Low bar, but it's beating human writers now.

      The disconnect between the dignity of work and just doing it to make a quick buck is yuge and really sad.

      Being able to stand back, look at something, and say, "I did that!" is a pretty amazing experience. So, did none of the folks bastardizing their writing ever have that experience?

      Kind of like never having an anchovy pizza thus not knowing what it would taste or smell like or even go so far as not knowing it even exists? I don't know a better way to explain this.

      Where is the honour?

      posted in IT Discussion
      PhlipElderP
      PhlipElder
    • 1
    • 2
    • 3
    • 4
    • 5
    • 45
    • 46
    • 2 / 46