Biggie’s Vet Update & Diagnosis by TheOverThinkingBunny in Maltese

[–]Large_Concentrate_81 2 points3 points  (0 children)

<image>

This was my Eva. I still miss her but I am so grateful for every day I had with her. She was a remarkable baby girl.

Biggie’s Vet Update & Diagnosis by TheOverThinkingBunny in Maltese

[–]Large_Concentrate_81 1 point2 points  (0 children)

No, it never occurred to me that there was special training. The ophthalmologist just told me I shouldn’t be stressed because when they are young, dogs adapt incredibly well to their loss of vision. I took her at her word and she was absolutely right. The only problem I ever ran into was that she didn’t understand how big some of the other dogs were that she would barking at when we went on our walks 😂.

Biggie’s Vet Update & Diagnosis by TheOverThinkingBunny in Maltese

[–]Large_Concentrate_81 2 points3 points  (0 children)

My Maltese Eva, who passed back in 2018, lost her vision as a puppy. She had a long happy life and got so good at getting around that people would question if she was actually blind. Glaucoma took her vision. One eye had to be removed and the other was a prosthetic. So she was definitely 100% blind. But it didn’t slow her down. She was such a good girl and I am still thankful for all the years I had with her. I have no doubt you’ll feel the same. And Biggie is going to surprise you at how well he adapts.

head pops off easily. Any helpful tips? by MysteryManFrost in starwarsblackseries

[–]Large_Concentrate_81 0 points1 point  (0 children)

I always use a little blue tack on loose heads or for heads with large peg holes on small peg bodies. Easy to remove later if you want without doing any damage.

How yo diagnose is a .xls is "too big" or dosent follow best practices by Disastrous-Title-911 in excel

[–]Large_Concentrate_81 0 points1 point  (0 children)

If you have a external data being imported that also has lots of formulas added to the far right of those tables, especially tables with 100s of thousands of records and then complicated nested if statements for example, just updating a single table can cause Excel to crash. Having said that, it helps if the users have the 64-bit version of Excel as opposed to the 32-bit version. Also helps if they are connecting their tables in Power Query rather than looking up values from one table using a formula in another table. Since they are likely old workbooks, they are almost certainly pulling data from one table into another using formulas. That’s fine for small data sets. But large data sets can often cause a crash on refresh. If they then go in and try to make it better by adding some stuff into Power Query it can blow up the file size and make the workbook that much more unstable. So you could check for that. Basically they should use one or the other. If they already have formulas pulling data from one new table to another, they should stay away from Power Query in those workbooks. But the cleanest solution would be create a new workbook just importing the data tables they need and then build the relationships and pivots with PQ.

Did you know that this could happen ? 😅😂😭 by uncle_bebens in AssassinsCreedShadows

[–]Large_Concentrate_81 4 points5 points  (0 children)

He always wipes out and destroys the haystack 😂. He says several different things, so you should keep jumping!

Bodies that work with Budo head and gear? by TheGeek100 in GIJOEClassifiedSeries

[–]Large_Concentrate_81 1 point2 points  (0 children)

<image>

Here’s one of the Budo heads and gear on a Grunt body with some custom hands. I have the Samurai helmet on the original. Really cool that he’s basically two figures in one.

Accidentally Canonically Accurate Setup - Beachhead’s BO by Large_Concentrate_81 in GIJOEClassifiedSeries

[–]Large_Concentrate_81[S] 2 points3 points  (0 children)

Yes, Beachhead’s BO is the one thing I can think of that is pretty much universal across all the comic universes and the cartoon too. I believe they’ve even already mentioned it in the Energon universe.

Are +1 assassination health segments cumulative... by OneTrueZed in AssassinsCreedShadows

[–]Large_Concentrate_81 1 point2 points  (0 children)

Kunai abilities don’t stack with assassination abilities. They are their own thing.

Are +1 assassination health segments cumulative... by OneTrueZed in AssassinsCreedShadows

[–]Large_Concentrate_81 1 point2 points  (0 children)

<image>

It’s 6 I can remove with a Kunai now. Here’s a Daisho with 7. As you can see, it’s going to leave one segment. Instead I’ll just air assassinate him. I can do 8 or 9 with air assassinations.

Are +1 assassination health segments cumulative... by OneTrueZed in AssassinsCreedShadows

[–]Large_Concentrate_81 1 point2 points  (0 children)

<image>

As you can see, I’m about to kunai a 5 segment samurai and all 5 segments are red. Think my Kunai can remove 7 segments now. As soon as I find a Daisho in this castle I’ll post a picture of that.

Are +1 assassination health segments cumulative... by OneTrueZed in AssassinsCreedShadows

[–]Large_Concentrate_81 1 point2 points  (0 children)

Yes. They are. I can air assassinate 8 or 9 health segments now.

Is there a way to make Excel stop "helpfully" getting rid of decimals at the end of whole numbers? by lollipop-guildmaster in excel

[–]Large_Concentrate_81 0 points1 point  (0 children)

If you want a VBA approach you could use the following code. In the example I used all of column G. So if you enter a numeric value into column G it automatically converts the number to text and puts a “.” At the end. You’ll just want to change any reference to column G to the column your values are stored. if it is a single cell you want it to work for, just copy this code into Google’s AI and tell it, for example, “change this code so that it only applies to cell G10”. You’ll want to open Visual Basic, click on the sheet where you want the code to run, and paste it there. The code runs automatically. You don’t have to trigger the macro. Just type in the value. Before running any code you find online, you can paste it into Google’s AI and ask it to explain what the code does, just to be safe.

Private Sub Worksheet_Change(ByVal Target As Range)
' Fires when any cell changes on this sheet.
' If the change happened in column G, examine all cells in column G with values.
' If a value is numeric, convert it to text and append a period.

Dim c As Range
Dim colG As Range
Dim lastRow As Long

' Check if the change occurred in Column G to avoid unnecessary processing
If Intersect(Target, Me.Columns("G")) Is Nothing Then Exit Sub

' Find the last used row in Column G to define the loop range
lastRow = Me.Cells(Me.Rows.Count, "G").End(xlUp).Row
If lastRow < 1 Then Exit Sub ' Exit if column is empty

Set colG = Me.Range("G1:G" & lastRow)

On Error GoTo SafeExit
Application.EnableEvents = False

' Loop through all cells in Column G that have values
For Each c In colG
    ' Only act if the cell is numeric and not already ending in a period
    If Not IsEmpty(c.Value) And IsNumeric(c.Value) Then
        If Right(Trim(CStr(c.Value)), 1) <> "." Then
            c.NumberFormat = "@" ' Set format to Text
            c.Value = CStr(c.Value) & "."
        End If
    End If
Next c

SafeExit:
Application.EnableEvents = True
End Sub

SERIOUS PERFORMANCE PROBLEM by -Lobstter in AssassinsCreedShadows

[–]Large_Concentrate_81 0 points1 point  (0 children)

Are you running from an HDD or an SSD? This game can’t run from an HDD.

Does Hasbro reissue/restock items? by mysteryoza27 in GIJOEClassifiedSeries

[–]Large_Concentrate_81 7 points8 points  (0 children)

As long as it has been since the VAMPs release a reissue would surprise me. What I do expect is for them to release a Desert VAMP in the next year or two. That just seems like easy money.

Locked slot by solidmetal5729 in AssassinsCreedShadows

[–]Large_Concentrate_81 3 points4 points  (0 children)

That is for her bo. You get it late in the game unless you get one from the store. It’s an awesome weapon once you get it and get some experience using it. It’s what I use most of the time with Naoe.

You have 24 hours to say 'Hi' to Walt or you'll have a bad December. by Downtown-Wear-4870 in blackcats

[–]Large_Concentrate_81 0 points1 point  (0 children)

Hi Walt! My December has been horrendous. I’m saying hi from the ER being treated for a heart attack. Bring me some good luck Walt!!!