The Lounge 0001 [From the Beginning]

neat for discourse overall or your BBCode topic?

1 Like

Discourse overall. How to use it and all of the little things that are nice have but hard to notice. Like being able to leave pms

1 Like

yeah that would be neat. I like to think I know a fair bit about how discourse after poking around but Iā€™m sure thereā€™s stuff I donā€™t know yet, like never knew you could remove yourself from a pm until now XD.

1 Like

Will mostly be a post that points out things to users they might not know about/find like being able to mute categories, leave pms, join groups, block users, etc

1 Like

yep can see that being really useful, discourse does has a nice tutorial when you join but it never goes into anything outside of topics like groups, blocking users, etc so would be a good little addition to that. :thinking: I wonder if itā€™ll be possible to edit the end of tutorial to link to your thread.

1 Like

i dont think so

thats a shame would be kinda neat to craft parts of the tutorials to fit the forum better :frowning:

1 Like

Hmm
I wonder

Haha. @Dje4321 and you go look at the tutorial thread now lol
Should work.

what tutorial thread?

1 Like

The one wayyyyy at the bottom for us thats right at the top for new users lol. The automated one

Also whoa

5 Likes

oh the FAQ, ofc you can edit that, was more talking about the automated pm tutorial. Still could be a good place to add it.

Oh lol. Never got a PM tutorial on L1 or anything like that here because admin has the threads but ok lol

Tutorial wasnā€™t on L1 becasue it was a fairly new feature added with discobot, you should still have the greetings pm on here even if your still an admin though

reached out to the vuetify discord and a dev talked to me about my issue. He helped me solve it in a much cleaner and elegant way

1 Like

went from this:

time_proper () {
      const now = new Date()
      const year = getYear(now)
      const month = getMonth(now)
      const day = getDate(now)
      if (this.editedItem.timeIn !== null) {
        this.editedItem.timeIn = format(new Date(year+'-'+month+'-'+day+'T'+this.editedItem.timeIn+':00'))
      }
      if (this.editedItem.timeOut !== null) {
        this.editedItem.timeOut = format(new Date(year+'-'+month+'-'+day+'T'+this.editedItem.timeOut+':00'))
      }
    },

to this

time_proper () {
      const now = new Date().toISOString().substr(0, 10)

      if (this.editedItem.timeIn !== null) {
        this.editedItem.timeIn = now + 'T' + this.editedItem.timeIn + ':00'
      }
      if (this.editedItem.timeOut !== null) {
        this.editedItem.timeOut = now + 'T' + this.editedItem.timeOut + ':00'
      }
    }

Yeah Iā€™m gonna donate on their patreon now.

edit: I have done so. I lvoe it when devs are down to earth. god bless the OSS community.

3 Likes

Today Iā€™m going to
-build my 2400G system and tear down my 1800X one
-possibly fix my keyboard I partially built
-probably test out my Apple II keyboard
-possibly build a case
And then maybe? Stream. But will see how long the above take.

are you actually gonna do those things?

Now that we have some open-source CPU architectures and arches whose patents have expired, I really wish there were a contained machine that would let you fab your own chips. Just put a silicon wafer in a hermetically sealed cartridge, load it into the machine, make sure youā€™ve got enough etching acid and copper to lay the traces and it fabs it out for you.

But alas, not to be, becauseā€¦ oversimplification. And patents.

even though theyā€™ve had this technology since the 70sā€¦
2 Likes