December 14, 2022
On Tuesday, 13 December 2022 at 23:34:45 UTC, Salih Dincer wrote:
>
> We have nothing to do with unsafe stuff! Why do we waste time with unsafe things; To learn or to teach?
>
> SDB@79

@trusted class unsafeVector ...

now it's @safe ;-)
December 19, 2022
On Saturday, 10 December 2022 at 15:59:07 UTC, Ali Çehreli wrote:
>
> There isn't a single point in favor of linked lists.

Yes there is, there are still special cases where linked lists can be a better alternative. Especially a version with intrusive members (with next/prev pointers as members in your object)

The intrusive linked list doesn't need any extra allocation apart from the object itself which means less fragmentation and small container allocations.

The double linked list has O(1) insert and delete, arrays has not.

The single linked list offer completely lockless variants, which is also completely unbounded.

The intrusive linked list has better performance with everything, except random access.

You can move/splice entire lists without copying.

The linked list performs equally well regardless of number of objects or object size. The performance of arrays depend on this.



As CPUs has progressed the array has become more favorable than the linked list type that is being offered by most standard libraries (the one that must allocate container objects, not intrusive). For most programming practices the array is usually the best. However, there are occasions where the linked list can be worth to be considered.



December 19, 2022
Why did my replies here to someone else get deleted?


December 19, 2022
On Monday, 19 December 2022 at 21:41:45 UTC, thebluepandabear wrote:
> Why did my replies here to someone else get deleted?

Myself and this other person's reply to this thread randomly got removed for no reason, I would appreciate an explanation 😕
December 19, 2022
On 12/19/22 13:45, thebluepandabear wrote:
> On Monday, 19 December 2022 at 21:41:45 UTC, thebluepandabear wrote:
>> Why did my replies here to someone else get deleted?
>
> Myself and this other person's reply to this thread randomly got removed
> for no reason, I would appreciate an explanation 😕

Are you sure it was this thread? What were in those posts? Perhaps they were posted on another thread?

I follow these newsgroups with ThunderBird, which naturally keeps local copies of the posts. I've just gone through all posts in this thread and I see no difference between ThunderBird's cache and the forum interface's cache.

Note that ThunderBird does not delete any post even if a moderator removes a posting from the newsgroup. For example, when a spam gets posted, my ThunderBird will show the post even after it's been deleted from the newsgroup server.

Ali

December 19, 2022
On Monday, 19 December 2022 at 22:07:15 UTC, Ali Çehreli wrote:
> On 12/19/22 13:45, thebluepandabear wrote:
> > On Monday, 19 December 2022 at 21:41:45 UTC, thebluepandabear
> wrote:
> >> Why did my replies here to someone else get deleted?
> >
> > Myself and this other person's reply to this thread randomly
> got removed
> > for no reason, I would appreciate an explanation 😕
>
> Are you sure it was this thread? What were in those posts? Perhaps they were posted on another thread?
>
> I follow these newsgroups with ThunderBird, which naturally keeps local copies of the posts. I've just gone through all posts in this thread and I see no difference between ThunderBird's cache and the forum interface's cache.
>
> Note that ThunderBird does not delete any post even if a moderator removes a posting from the newsgroup. For example, when a spam gets posted, my ThunderBird will show the post even after it's been deleted from the newsgroup server.
>
> Ali

Yeah I am sure it was on this thread. One of the posts was at https://forum.dlang.org/post/kzvnajixjdnlcupslwjb@forum.dlang.org, it now shows 'Not Found'. I just replied to this person who was asking whether or not I was talking about C's `union` type (I was not), and his post and my reply seems to have magically disappeared.
December 19, 2022
On 12/19/22 14:14, thebluepandabear wrote:

> Yeah I am sure it was on this thread. One of the posts was at
> https://forum.dlang.org/post/kzvnajixjdnlcupslwjb@forum.dlang.org, it
> now shows 'Not Found'.

Then I don't know. (?)

However, I realize my ThunderBird "evidence" is useless because if the disapparance happened before my ThunderBird connected since its last time, it wouldn't have a copy of the posts.

(My ThunderBird does not connect automatically especially when the laptop lid is closed. :) )

Ali

December 19, 2022
No worries, hopefully a mod will explain why. I don't like when posts get removed for no reason :|
December 20, 2022
On Monday, 19 December 2022 at 22:22:11 UTC, thebluepandabear wrote:
>
> No worries, hopefully a mod will explain why. I don't like when posts get removed for no reason :|

AI surround us in forum. People want to video chat now. In the time we live in, you can't be sure what to trust!

SDB@79
December 20, 2022
On Monday, 19 December 2022 at 22:22:11 UTC, thebluepandabear wrote:
>
> No worries, hopefully a mod will explain why. I don't like when posts get removed for no reason :|

I received a report of a possible troll in the forums. Looking at the posts collectively, I agreed, so deleted all of them. Whenever we delete a post, we delete subsequent posts that quote them as well.

Please take any further discussion on moderation policies to a new thread in the General forum and let's take this thread back on topic. Thanks!
1 2 3
Next ›   Last »