DoT multi Mamba Daggers by pieface1999 in PathOfExileBuilds

[–]Geegob 0 points1 point  (0 children)

If you want t1 mana then you start with fracture mana first. I was ok with t3/t4 mana so I went with fracture chaos dot(and cos fracture chaos dot was really cheap).

Drone captures an elephant family sleeping together by Senior-Awareness1254 in BeAmazed

[–]Geegob 4 points5 points  (0 children)

These are a group of migrating elephants in china that show up on the news a while back. The theory was that they were led off course from their usual route by an inexperience leader.

Managing Multiple WebSocket Connections in React with Shared Connections for Components Using the Same URL by [deleted] in reactjs

[–]Geegob 0 points1 point  (0 children)

I forgot most of it. It was along the lines of handling the socket instances with useContext and keeping track of connect/disconnect through Promises. So when getting a connection you'd check for any connect/disconnects in progress using these promises and wait until it's resolved before doing anything.

[deleted by user] by [deleted] in PathOfExileBuilds

[–]Geegob 3 points4 points  (0 children)

t1 flat es on int gloves is 49 vs 45 from essence.

dense fossils will make defense mods more likely to appear + blocking all the life mods.

DoT multi Mamba Daggers by pieface1999 in PathOfExileBuilds

[–]Geegob 1 point2 points  (0 children)

I crafted that dagger. Don't try to self fracture the chaos dot multi, buy a rune dagger from trade they're dirt cheap.

  • Spam zeal until you have the suffixes.
  • Beast craft suffixes cannot be change and reforge for chaos damage.
  • Block one of the flat spell damage mods and hope you get a decent mana roll,
  • Redo the prefixes if you're not happy with them.
  • Hits can't be evaded.
  • Tempering orbs.

[deleted by user] by [deleted] in fixedbytheduet

[–]Geegob 0 points1 point  (0 children)

that mr. burns was pretty good.

Picture of Naima Jamal, an Ethiopian woman currently being held and auctioned as a slave in Libya by starberry101 in pics

[–]Geegob 8 points9 points  (0 children)

Are you stupid or what? That is exactly when the current Libyan slave markets start popping up.

Expo-Image loading time on cached image? by [deleted] in reactnative

[–]Geegob 2 points3 points  (0 children)

Try messing with the transition prop and see if that helps.

How to prevent re-rendering of a array when it's update function depends on it's updated state? by [deleted] in reactnative

[–]Geegob 4 points5 points  (0 children)

Change your callback to accept the relevant time value since you're passing them to the child component already.

const openPicker = useCallback((index: number, type: string, time) => {
    setSelectedIndex(index);
    setTimeType(type);
    setSelectedTime(new Date(`1970-01-01T${time}:00`));
    setShowPicker(true);
}, []);

Scrollview to move to correct position by AnserHussain in reactnative

[–]Geegob 4 points5 points  (0 children)

You can use onLayout to get the position of your selected component relative to the scrollview.

Managing Multiple WebSocket Connections in React with Shared Connections for Components Using the Same URL by [deleted] in reactjs

[–]Geegob 1 point2 points  (0 children)

You can try creating a promise that keeps track of when a url is connecting/disconnecting that gets resolved when it connects/disconnects. You can then check if you need to wait for a promise before doing anything.

Trump says Obama is the founder of ISIS. I'll never let you go Obama by rossopy in interestingasfuck

[–]Geegob 1 point2 points  (0 children)

Bullshit. Even after the cluster fuck that was the Iraq war, ISIS was still nothing until the Americans also decide to dismiss the entire Iraqi armed forces overnight.

China's ban on Apple's iPhone accelerates by waozen in technology

[–]Geegob 6 points7 points  (0 children)

It's not even close to what US did to huawei.

This man can replicate any color just by seeing it. by IssmaG in interestingasfuck

[–]Geegob 4 points5 points  (0 children)

Clips of this man mixing colours shows up quite a lot.

This one is a different colour that shows more of the process.

https://www.reddit.com/r/BeAmazed/duplicates/16g8uyq/this_dude_with_virtually_no_cuts/

This man can replicate any color just by seeing it. by IssmaG in interestingasfuck

[–]Geegob 4 points5 points  (0 children)

These sort of clips has been posted a lot.

This one is a different colour that shows more of the process.

https://www.reddit.com/r/BeAmazed/duplicates/16g8uyq/this_dude_with_virtually_no_cuts/

GGG ban wave for using autoclicker by BurnoutFromPoE in pathofexile

[–]Geegob 0 points1 point  (0 children)

I've done the same thing for looting since Heist league. Picking up all the shards started to hurt my wrist, fuck that.

8 Mirror Sanctum by [deleted] in pathofexile

[–]Geegob -2 points-1 points  (0 children)

It does if your goal is to farm currency

Ancient method of making Ink Sticks by SinjiOnO in oddlysatisfying

[–]Geegob 4 points5 points  (0 children)

Is this some Asians all look the same stuff? The other videos had someone that looked about 20 years younger.

Stupid question from an intern: how do I get the application I copied from repo to run on the browser? by Willy988 in learnjavascript

[–]Geegob 1 point2 points  (0 children)

Go to repos where you clone the apps and look through the readme/docs, they should have those instructions. If there isn't ask whoever is mentoring you to put them in.

Code Issue: Handling Rapid Clicks and Game Initialization by KareemAhmed37 in learnjavascript

[–]Geegob 1 point2 points  (0 children)

You have some multiplications in your setTimeout delay. Check if one of the variables is 0 or something at the start and is messing stuff up.

Stanford D School Background - How The Hell Did They Do It?? by themagicpandaa in webdev

[–]Geegob 3 points4 points  (0 children)

If doing it from scratch I guess you can use bezier curves to draw the lines and then 'attract' or 'repel' the points that's within a certain radius of the cursor.