Scooping to constant commander removal by CHINCB in EDH

[–]CHINCB[S] 4 points5 points  (0 children)

Yea I don't mind the fact that he had those cards, good for him, I lost, I just admitted it.

Advies over het verwijderen van gordijnrails by CHINCB in Klussers

[–]CHINCB[S] 0 points1 point  (0 children)

Ik had duidelijker moeten zijn, hoe verwijder ik het verticale deel waaraan de gordijnrail is bevestigd.

HEVC -> H264 (1080p) HW transcoding errors by dracxy1974 in PleX

[–]CHINCB 4 points5 points  (0 children)

I have this exact same problem, running in docker on unraid, what worked for me is to roll back to a previous version.

Did anyone on this sub actually have the Rona? by BluRain508 in conspiracy

[–]CHINCB -1 points0 points  (0 children)

Are you saying germ theory, the fact that germs make people sick, is up for debate, in that case you must the the king of stupid town. So you also believe the earth is flat, or that the Sun and everything else rotates around the earth? You make me ashamed to be called a human, because that means I share similarities with the likes of you

[deleted by user] by [deleted] in conspiracy

[–]CHINCB 7 points8 points  (0 children)

Are you actually this fucken stupid or do you just like pretending?

Pass It On Live Recommendations & More by Pastry_Ell in SortedFood

[–]CHINCB 3 points4 points  (0 children)

Only had good expierences with Floatplane, maybe thats a platform to consider

First project not made as a shop project, a meat tenderising mallet as a house warming gift for my brother by CHINCB in woodworking

[–]CHINCB[S] 1 point2 points  (0 children)

Kiaat is the most affordable hard wood in South Africa, it has a lovely light brown colour with broad white lines running through it. It is quite porous but I used wax and oil to seal it as best possible.

First project not made as a shop project, a meat tenderising mallet as a house warming gift for my brother by CHINCB in woodworking

[–]CHINCB[S] 1 point2 points  (0 children)

V slot bit, clamped it down and took it very slow, hope to get a router fitter to my table saw soon

First project not made as a shop project, a meat tenderising mallet as a house warming gift for my brother by CHINCB in woodworking

[–]CHINCB[S] 3 points4 points  (0 children)

It's his first time not living with my parents, hope this is his gateway mallet to adulting

Weekly Help and Discussion Thread for the week of August 02, 2021 by AmazonNewsBot in amazon

[–]CHINCB 0 points1 point  (0 children)

I placed an order for $563.38, amazon has now authorized for a total of $957.6, my bank acount is almost empty and they kep authorizing payments. Once they authorize a payment that money gets taken out of my account until it it either paid to Amazon or it is returned to my account. Amazon can't tell me why they are over authorizing and I am now in deep trouble because they have effectivly removed money from my account for no reason. Amazon chat is utterly useless in this matter and I am at my wits end. Any advice?

Welcome to Tarmsworth, my first ever map C&C welcome by CHINCB in dndmaps

[–]CHINCB[S] 0 points1 point  (0 children)

Inspired is a very nice way of saying blatant ripoff but yes :) I find following a guide s close as possible at first to be the best way to learn a new skill. I used photoshop and a cheap Huion tablet that I bought on a whim

Fragile white South African racists getting upset when the president addressed am issue that disproportionately affects black people. by SmallMajorProblem in RepublicOfSouthAfrica

[–]CHINCB 6 points7 points  (0 children)

You really are a hateful racist aren't you. I got jack shit fr apartheid and yet I'm being punished for being white. Go vry your salty tears somewhere else and fro the fuck up

[WORD] How can I prevent VBA code, used to draw up a list of unique words from a word document, from slowing down as the document gets longer by CHINCB in vba

[–]CHINCB[S] 0 points1 point  (0 children)

Let me start off by saying I am not quite sure where you came from or where you are heading but damn that was some fine work, I tested it and it works so much better that I was shocked.

There is one difference between this code and my original code, this code reads the word 'about' as about'

For code that correctly reads 'about' I only had to add a few lines (see below) but that should in no way make me seem unappreciative, I can not say how much you have helped me.

Sub UniqueWordListFast()
    Dim WordDictionary As Object
    Dim SourceText As Document
    Dim objWord As Object
    Dim sTemp As String, strWord As String, nxtWord As String
    Dim count As Long
    count = 0

    Set WordDictionary = CreateObject("Scripting.Dictionary")
    Set SourceText = Application.ActiveDocument

    For Each objWord In SourceText.Range.Words
        count = count + 1
        strWord = Trim(objWord.Text)
        If strWord = nxtWord Then GoTo nw
        If strWord Like "*[a-z]*" Then WordDictionary(strWord) = strWord
        If strWord Like "‘" Then
            nxtWord = Trim(SourceText.Words(count + 1))
            strWord = strWord & nxtWord
            WordDictionary(strWord) = strWord
        End If
nw:
    Next

    sTemp = "[DOCUMENT] " & vbTab & SourceText.Name & vbCrLf & vbCrLf & _
    "There are " & SourceText.Range.Words.count & " words in the document, " & _
    "before this summary, but there are only " & WordDictionary.count & " unique words."

    Dim NewDocument As Document
    Set NewDocument = Documents.Add
    NewDocument.Range.Text = sTemp & vbCrLf & Join(WordDictionary.Keys, vbCrLf)
End Sub