How can I work on my 3 ball

2024.11.27 09:40 ZestycloseLaw5382 How can I work on my 3 ball

Does anyone have any specific tips or techniques they used to help get a good 3 ball which helped you??
submitted by ZestycloseLaw5382 to BasketballTips [link] [comments]


2024.11.27 09:40 InfantryMOD Regulator refreshes guidance as it reveals 600 cases related to fraud in the last year

Regulator refreshes guidance as it reveals 600 cases related to fraud in the last year submitted by InfantryMOD to prsuk [link] [comments]


2024.11.27 09:40 itemisedlists jardine second round interview

did anyone get the second round interview for jardine at the irl office? i haven't heard anything but i saw someone on the student room who had so just wondering if any singaporean candidates had heard back? i emailed them and they said they're still screening but i'm trying to understand if this is a soft rejection LOL lmk when you got your interview email!
submitted by itemisedlists to SGExams [link] [comments]


2024.11.27 09:40 adulting4kids Hardcore Prompts

  1. Develop a character caught in the crossfire of a long-lost family feud, compelled to navigate intricate relationships, confront deep-seated conflicts, and forge a path toward reconciliation while discovering their own resilience and identity.
  2. Shape a protagonist thrust into a dystopian society, where navigating rebellion against oppressive forces becomes a catalyst for self-discovery, pushing them to question beliefs, challenge norms, and emerge as a symbol of hope in a bleak world.
  3. Introduce a character entangled in a forbidden romance that defies societal norms, exploring the complexities of love, sacrifice, and resilience as they navigate the consequences, transforming into a figure who challenges and reshapes the fabric of their world.
  4. Craft a character who, after a sudden technological breakthrough, grapples with the ethical dilemmas of a changed society, navigating moral ambiguities, confronting personal biases, and evolving into a figure at the forefront of shaping the future.
  5. Immerse a character in a post-apocalyptic world, where survival becomes a journey of resilience, resourcefulness, and self-discovery, forcing them to adapt to the harsh environment and transform into a leader amidst chaos.
submitted by adulting4kids to writingthruit [link] [comments]


2024.11.27 09:40 Significant_Ebb_5928 what are some ids/egos that the community has completely forgotten about

honestly pretty interested if I can remember any of them
submitted by Significant_Ebb_5928 to limbuscompany [link] [comments]


2024.11.27 09:40 Ok_Quit_9981 Question of the Day? Day 20. In your opinion which character has the best theme song?

This is a new consecutive daily series I will make on this sub, to make ensure there is a consistent of interactions and discussions going.
submitted by Ok_Quit_9981 to DragonBallers [link] [comments]


2024.11.27 09:40 Superbabaow New patch notes pace

Hello i recently came back to the game and just learned that kuro is going to accelerate patch notes release to catch up to the cn version , one aspect that made me love the game back then was that u could have every character just by playing (and even some weapons with monthly pass) so i wondered if we have any info on an increase of ressources to pull following this new fast pace.
submitted by Superbabaow to PunishingGrayRaven [link] [comments]


2024.11.27 09:40 fadingpinkserena WIP Ditzy/Derpy Masterpiece

decided to post this before heading to bed tonight, planning on selling copies once its done, though it'll probably be my priciest mp. working on her in-between commissions :]
submitted by fadingpinkserena to AnimalJam [link] [comments]


2024.11.27 09:40 ElegantManager5316 Applying for a EB visa

How does process work for EB visas as I am trying to move before June 2025 for better work conditions. I am a 28 year old Transplant Surgeon would heavily prefer a state or place which doesn't require to redo residency, also have no dependents
submitted by ElegantManager5316 to USCIS [link] [comments]


2024.11.27 09:40 acecb1 squad updates

Hey guys i was wandering when Amorims 3-4-3 or 3-4-2-1 formation would come in game in fc25 player career or is it stuck at that default 4-5-1. started a new player career and wanted to play in the amorim system and although the manager of united has changed from rvn to amorim the formation hasn’t changed
submitted by acecb1 to FifaCareers [link] [comments]


2024.11.27 09:40 lRickLicks69 Ask Anything Thread

Use this thread to ask anything at all!
submitted by lRickLicks69 to Rick69 [link] [comments]


2024.11.27 09:40 Intelligent-Tip-6057 How to properly discuss a research findings?

Help this girl out pleaseee
submitted by Intelligent-Tip-6057 to research [link] [comments]


2024.11.27 09:40 Either_Mess_1411 Advanced pathfinding caching (DOTS, ECS)

Hey everyone,
We are working on a simulation game in Unity DOTS where thousands of entities (humans) live their daily lives, make decisions based on their needs, and work together to build a society.
The goal is that, based on genetics (predefined values, what they are good at), these humans will automatically aquire jobs, fullfill tasks in different ways and live together as a society. They might also build a city. The AI is a simplified version of GOAP.
The map is a grid. Currently 200x200 but we intend to scale this up in the future. 2D.
Now our biggest issue right now is the pathfinding. Calculating pathfinding logic for thousands of entities is quite heavy. Also due to the use of a grid, we have to calculate a lot of nodes compared to a nav mesh or a waypoint approach. We want to keep it as fast as possible, due to the numbers of agents, so Unity*s built in pathfinding solution is a no go.
We implemented our own algorithm using Jump Point Search (JPS) and a simple obstacle grid, which is quite efficient.

NativeBitArray obstacleMap = new NativeBitArray(dimension.x * dimension.y, Allocator.Persistent); 
But the performance is still too low.
Due to the map not changing very frequently i thought about caching the paths. Especially in populated areas like a city, this will give a significant performance boost.
Fast lookup time is important, so the caching solution should be as simple as possible, so that the navigation logic is lightweight. For this, flowmaps are perfect, because once calculated, a simple array lookup is enough to move the entity. A typical flowmap would be a 2D Array with vectors pointing towards the next grid tile to reach the goal. You can see an example here.
The issue is, a flowmap only points towards one goal. In our case we have thousands of actors navigating towards thousands of different goals. So the first idea was, creating a flowmap for each tile. 200x200 flowmaps with the size of 200x200. We basically store every possible "from-to" direction for every field in the map. We don't need to precalculate them, but can do that on the fly. Whenever a entity needs to go somewhere, but the flowmap is unset, we send a request to our Job system, which calculates the path, and writes it into the flowmaps. The flowmap is never fully calculated. Only individual paths are added, the flowmap will fill after a while. Then, in the future, if another entity walks towards the same goal, the entry is already inside the flowmap, so we don't need to calculate anything at all.
If we use this approach, this results in a big array of 200x200x200x200 2D vectors. A 2Dvector is 2 floats. 4 bytes/float. So this results in a 6400 MB array. NOT efficient. Especially when scaling the map in the future.
We can store the directions as Bits. To represent directions on a grid (up, down, left right, 4x diagonal) we need numbers from 0 to 8, so 4 bits. (0 unset, 1 up, 2 top-right, 3 right, 4 bottom-right, 5 bottom, 6 bottom-left, 7 left, 8 top-left)
So in this case this would be 4800000000 bits, or 600 MB. This is within the budget, but this value scales exponentially if we increase the map size.
We could also do "local" obstacle avoidance using this approach. Instead of creating a 200x200 flowmap for each tile, we can create a flowmap "around" the tile. (Let's say 40x40) This should be enough to avoid buildings, trees and maybe a city wall, and the array would only be 24MB. Here is an image for illustration:
https://preview.redd.it/n59x9vbx6d3e1.png?width=1280&format=png&auto=webp&s=5bda68a2fb2532448cadcdcc9d737bc949ada238
But with this can not simply look up "from-to" values anymore. We need to get the closest point towards the goal. In this case, this edge:
https://preview.redd.it/tl1emplyxe3e1.png?width=1280&format=png&auto=webp&s=276640fee029bcfd7c6c51bcd1700488d5077487
With this, other issues arise. What if the blue dot is a blocked tile for example?
Creating so many flowmaps (or a giant data array for lookups) feels like a brute force approach. There MUST be a better solution for this. So if you can give me any hints, i would appreciate it.
Thank you for your time and support :)
submitted by Either_Mess_1411 to unity [link] [comments]


2024.11.27 09:40 Just_Chill_Yaar Which Hummer Guys... EV or H2 ??

Which Hummer Guys... EV or H2 ?? submitted by Just_Chill_Yaar to SUVIndia [link] [comments]


2024.11.27 09:40 CuriousCowpoke What Ep is Emma Dalenberg on?

G’day mates, just wondering if anyone can help me find what Ep Emma is on. She’s a bloody ripper comedian and I’ve heard her reference being on KT before. Would love to find her set. Thanks heaps
submitted by CuriousCowpoke to Killtony [link] [comments]


2024.11.27 09:40 BroMandi [Walmart] Crocs Men's Exclusive Yukon Vista II LR Clog $24.99 @ Walmart [Deal: $24.99, Actual: $69.99]

[Walmart] Crocs Men's Exclusive Yukon Vista II LR Clog $24.99 @ Walmart [Deal: $24.99, Actual: $69.99] submitted by BroMandi to RedditShoppingDeals [link] [comments]


2024.11.27 09:40 TheRealLaoTzu Sweet sweet wild Shudderwock JUSTICE

This felt so damn goood https://hsreplay.net/replay/RZPzd9ync8AXcSejwcSG42
submitted by TheRealLaoTzu to hearthstone [link] [comments]


2024.11.27 09:40 reinhaca Nomes em expressões populares

Aqui no interior de Minas temos pelo menos duas expressões que usam o nome de alguém: quando a pessoa está apertada por algum problema, dizemos que "fulano tá no cu de Zé Esteves" e a outra, mais específica pro jogo de Buraco, quando você sai com carta repetida, está é chamada de "João Júlio". Ninguém sabe dizer quem é esse João Júlio ou o pobre do Zé Esteves. Quais outras expressões usando nomes próprios vocês usam?
submitted by reinhaca to brasil [link] [comments]


2024.11.27 09:40 seth2333 what is this merge function in home mode?

what is this merge function in home mode? The only thing I see is that the number stays the same, only you have fewer points afterwards.
someone can explain it to me because that ? doesn't help me
submitted by seth2333 to PUBGMobile [link] [comments]


2024.11.27 09:40 step_quellobrillo James Dog, 007

submitted by step_quellobrillo to aww [link] [comments]


2024.11.27 09:40 Leicesterman2 Normally, in these fan reaction videos you'd see more than 2 people right?

Normally, in these fan reaction videos you'd see more than 2 people right? submitted by Leicesterman2 to soccercirclejerk [link] [comments]


2024.11.27 09:40 Otherwise-Employee26 Skyrim not launching

Anytime I've tried to launch skyrim recently it's just been stuck on the spinning valve symbol like it's loading for about 2-3 minutes then it crashes back to home, I've un-installed and reinstalled, chose different steam play compatability tools including protocols experimental and proton hotfix, I'm not aware if I have S:E or not (or if that even matters) what else could I do to try to get this working again?
submitted by Otherwise-Employee26 to SteamDeck [link] [comments]


2024.11.27 09:40 Honda1347 Getting a decent battery for moderate usage

Getting a decent battery for moderate usage submitted by Honda1347 to S23 [link] [comments]


2024.11.27 09:40 lightfingers Finished my test pieces for a winter Forest terrain set

Finished my test pieces for a winter Forest terrain set submitted by lightfingers to TerrainBuilding [link] [comments]


2024.11.27 09:40 ANewsHubBot Zionist woman attempts to steal Palestinian flag from protesters

Zionist woman attempts to steal Palestinian flag from protesters submitted by ANewsHubBot to WorldNewsHeadlines [link] [comments]


https://google.com/