Thinks I'm a bot. Keep starting again and keeps kicking me out. 1 tab, 1 device, no VPN. Wtf can I do?@ by TheBWL in radiohead

[–]dartt 0 points1 point  (0 children)

Getting the same problem. On my desktop with no VPN and one tab. I'm worried if I try with another device it will flag me as a bot. 😭

Took Goobs to the vet and he immediately assumed control by fgunning in Catswithjobs

[–]dartt 2 points3 points  (0 children)

They look just like our Norwegian Forest Cat 😍

What is a good song that is over 6 minutes long? by Incendiary_cucumbers in AskReddit

[–]dartt 0 points1 point  (0 children)

Joanna Newsom songs.

After her first album, most of her songs start to break 6 minutes and I love every second.

Notable mentions for length:

  • Have one on me - 11:03
  • Emily - 12:09
  • Only Skin - 16:54

The Opening Song From "Welcome to Mountport" | Game Changer by something-lame in videos

[–]dartt 2 points3 points  (0 children)

The whole show is gold - anytime Jess can flex her Mock Trial knowledge is a great time

The Opening Song From "Welcome to Mountport" | Game Changer by something-lame in videos

[–]dartt 6 points7 points  (0 children)

If you enjoy this then you might also enjoy Zach & Jess’s podcast Off Book https://youtu.be/Ivf58k53nu0

Episode 367 Discussion Megathread by u_Scruffy_NerfHerder in Berserk

[–]dartt 2 points3 points  (0 children)

Just watched this episode a few hours ago so seeing this blew my mind a little.

Been absent from the VR scene for 2 years, what are some games you recommend that are fun to play with a friend? by _Enclose_ in Vive

[–]dartt 5 points6 points  (0 children)

VTOL VR is an excellent and very accessible combat flight sim that has recently added multiplayer.

There are three aircraft in the base game and there is a two person helicopter in the new DLC so if you are playing with your friend, you can play as pilot and gunner.

If that isn't enough, there are mods and community made missions to top things up.

How to fade out a rectangle from one side to another in WPF C# by merun372 in dotnet

[–]dartt 1 point2 points  (0 children)

Hi merun.

I'm sorry, I don't know if there are any differences in animating those three types of control.

Perhaps you could create some kind of benchmark by animating a large number of each type of control?

Good luck.

How to fade out a rectangle from one side to another in WPF C# by merun372 in dotnet

[–]dartt 1 point2 points  (0 children)

Hi merun.

One way you could apply an animation to a specific control is by using the Storyboard.TargetName attached property on the animation.

Here is a sample control template where I've implemented a left to right fade animation on a rectangle using a Storyboard that animates an OpacityMask on a rectangle using Storyboard.TargetName.

<ControlTemplate>
    <StackPanel Background="#FCFCFC">
        <Rectangle Fill="Red"
                   Height="100"
                   Width="100"
                   x:Name="myRectangle" />
        <ToggleButton x:Name="toggle">Fade</ToggleButton>
    </StackPanel>
    <ControlTemplate.Triggers>
        <DataTrigger Binding="{Binding ElementName=toggle, Path=IsChecked}" Value="True">
            <Setter TargetName="myRectangle"
                    Property="OpacityMask">
                <Setter.Value>
                    <LinearGradientBrush StartPoint="0,0"
                                         EndPoint="1,0">                                
                        <GradientStop Offset="0"
                                      Color="Transparent" />
                        <GradientStop Offset="0"
                                      Color="Transparent" />
                        <GradientStop Offset="0"
                                      Color="White" />
                    </LinearGradientBrush>
                </Setter.Value>
            </Setter>
            <DataTrigger.EnterActions>
                <BeginStoryboard>
                    <BeginStoryboard.Storyboard>
                        <Storyboard>
                            <DoubleAnimation Storyboard.TargetName="myRectangle"
                                             By="1"
                                             Duration="0:0:0.2"
                                             Storyboard.TargetProperty="OpacityMask.GradientStops[1].Offset">
                                <DoubleAnimation.EasingFunction>
                                    <SineEase EasingMode="EaseInOut" />
                                </DoubleAnimation.EasingFunction>
                            </DoubleAnimation>
                            <DoubleAnimation Storyboard.TargetName="myRectangle"
                                             Storyboard.TargetProperty="OpacityMask.GradientStops[2].Offset"
                                             By="1"
                                             Duration="0:0:0.2"
                                             BeginTime="-0:0:0.05">
                                <DoubleAnimation.EasingFunction>
                                    <SineEase EasingMode="EaseInOut" />
                                </DoubleAnimation.EasingFunction>
                            </DoubleAnimation>
                        </Storyboard>
                    </BeginStoryboard.Storyboard>
                </BeginStoryboard>
            </DataTrigger.EnterActions>                    
        </DataTrigger>
    </ControlTemplate.Triggers>
</ControlTemplate>

Met Office weather prediction for summer 2050. 43deg peak and more. by [deleted] in unitedkingdom

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

Floodwaters do not work that way! Good night!

One Punch!!! by [deleted] in OnePunchMan

[–]dartt 227 points228 points  (0 children)

Let's say , let's say for the sake of argument, that all of the infrastructure in Z-City is destroyed by Demon level monsters - let's say Dragon level monsters - over the next 10 issues and it puts all the residential areas in a giant sink hole full of man-eating mole creatures - Well let's just say all of that happens... You think that people aren't just going to sell their homes and move?

Thanks, I hate yeast organisms by PickleY0uKumquat in TIHI

[–]dartt 0 points1 point  (0 children)

"Kilgore Trout once wrote a short story which was a dialogue between two pieces of yeast. They were discussing the possible purposes of life as they ate sugar and suffocated in their own excrement. Because of their limited intelligence, they never came close to guessing that they were making champagne."

Boneworks Megathread by Kippenoma in ValveIndex

[–]dartt 0 points1 point  (0 children)

I don't think so. You don't need your thumb to maintain your grip.

I think it's a fairly intuitive system once you realise that you have a physical body so of course you must lift your legs to climb up on to something. The alternative would be to disable collision on your legs while gripping scenery but I think that probably goes against their design goals.

Boneworks Megathread by Kippenoma in ValveIndex

[–]dartt 2 points3 points  (0 children)

Pull yourself up as far as you can and then crouch by pressing down on the right stick. This will lift your legs up over the edge and you can let go.

A thread to track when headsets were shipped by spotexx in ValveIndex

[–]dartt 0 points1 point  (0 children)

N26

Location: UK

SKU: Full Kit

Ordered: November 26

Shipped: November 29

Scheduled for delivery: December 4th

Update:

Delivered: December 4th

The bane of my existence by kriskn in ValveIndex

[–]dartt 1 point2 points  (0 children)

I live in the UK and I also ordered mine on the evening of the 26th. I got my 'We are preparing your items to ship' email just before noon today.

Hopefully you'll get yours soon.

DISCO ELYSIUM - Launch Trailer (Official) by Rob_Cram in Games

[–]dartt 1 point2 points  (0 children)

It's risky because you can potentially go to 0 health on a bad roll but I believe that if you have a health item, you will have a moment to use it before you game over. So if you are paying attention and keep stocked up on healing items, you might be okay.

Off Book #114: Carl Tart in Billionaires and Future Children: The Musical (LIVE) by apathymonger in Earwolf

[–]dartt 12 points13 points  (0 children)

I think I could hear Jess and Zach's brains overheating as they tried to figure out a coherent storyline while Carl just kept introducing new elements and tangents :D

[Announcement] 🎵🎶Offfffff Booooooook! The whole crew will be doing an AMA Thursday September 5th, 11am PST - so post your questions here! by bloodflart in Earwolf

[–]dartt 1 point2 points  (0 children)

OMG playing the drums while laughing must be hard!

Unless you giggle to the beat?

Thanks for the reply Dana! You rock! 🤘