neat for discourse overall or your BBCode topic?
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
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.
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
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. I wonder if itāll be possible to edit the end of tutorial to link to your thread.
i dont think so
thats a shame would be kinda neat to craft parts of the tutorials to fit the forum better
Hmm
I wonder
what tutorial thread?
The one wayyyyy at the bottom for us thats right at the top for new users lol. The automated one
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
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.
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.