TIL In many US cities, taxicab medallions (city-issued license to operate a cab) routinely cost hundreds of thousands of dollars for a single cab, can top a million dollars, and are the source of a debt crisis for drivers marketwatch.com/story/70-…
πŸ‘︎ 12k
πŸ’¬︎
πŸ‘€︎ u/Harry-le-Roy
πŸ“…︎ Oct 28 2021
🚨︎ report
U.S. SEC charges Medallion taxicab lender with fraud, shares tumble reuters.com/business/fina…
πŸ‘︎ 596
πŸ’¬︎
πŸ‘€︎ u/Renxer0002
πŸ“…︎ Dec 29 2021
🚨︎ report
Taxicab catches fire and goes down the street, driverless - then it hits two parked cars and explodes. The driver got out and ran to safety, with no other victims being reported at the time. Buenos Aires, Argentina, oct-25-2021 v.redd.it/w23waitpgnv71
πŸ‘︎ 1k
πŸ’¬︎
πŸ‘€︎ u/villings
πŸ“…︎ Oct 25 2021
🚨︎ report
Taxicab 3 weeks difference! I'm sad she is losing all the black. 🀞🏻 it doesn't all go away! πŸ’›πŸ–€πŸ’›
πŸ‘︎ 152
πŸ’¬︎
πŸ“…︎ Dec 08 2021
🚨︎ report
With Uber and Lyft prices rising, passengers return to the original ride-hailing service: taxicabs marketwatch.com/amp/story…
πŸ‘︎ 202
πŸ’¬︎
πŸ‘€︎ u/bloobityblurp
πŸ“…︎ Nov 24 2021
🚨︎ report
A coal-gas powered taxicab operated by John Lee Automobile Engineers in Keighley, England. The bag atop the vehicle stored sufficient fuel for 15 miles of driving (c. 1920s)
πŸ‘︎ 2k
πŸ’¬︎
πŸ‘€︎ u/Wisdomized
πŸ“…︎ Sep 22 2021
🚨︎ report
Kidneythieves - Taxicab Messiah youtu.be/z0iCtsAwZI8
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/Den_M_83
πŸ“…︎ Dec 31 2021
🚨︎ report
Goldie, Spots, and Taxicab got a tank makeover today. (Taxicab used to be yellow and black! See old before & after lol) reddit.com/gallery/ru0tw9
πŸ‘︎ 7
πŸ’¬︎
πŸ“…︎ Jan 02 2022
🚨︎ report
Taxicab Confessions
πŸ‘︎ 60
πŸ’¬︎
πŸ‘€︎ u/UdderDefiance
πŸ“…︎ Dec 26 2021
🚨︎ report
GAZ-3221 GAZelle marshrutka - The official marshrutka (routed taxicab) of....?
πŸ‘︎ 21
πŸ’¬︎
πŸ‘€︎ u/SonicArchonedd
πŸ“…︎ Nov 30 2021
🚨︎ report
U.S. SEC charges Medallion taxicab lender with fraud, shares tumble reuters.com/business/fina…
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/reuters
πŸ“…︎ Dec 29 2021
🚨︎ report
NYC taxicab confessions [10:00] youtube.com/watch?v=KnED-…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/harrys7potter
πŸ“…︎ Jan 20 2022
🚨︎ report
Taxicab distance
πŸ‘︎ 3k
πŸ’¬︎
πŸ‘€︎ u/GeneReddit123
πŸ“…︎ Sep 30 2021
🚨︎ report
Taxicab
πŸ‘︎ 71
πŸ’¬︎
πŸ“…︎ Nov 26 2021
🚨︎ report
Manhattan/Taxicab Distance

I'm working on a simple roguelike mechanic, how to use Manhattan Distance to calculate the best movement spot. I know the code is close. It runs in alarm[0] of the enemy, as it's turn based and I call this alarm whenever the player moves. I have a simple script that calculate Manhattan distance and I know that functions correctly. However, the AI doesn't always move toward the player, sometimes it's failing to move closer to the player and close the gap. You can stalemate the AI going left and right or up and down.

I notice if the player moves left or right, the AI won't move up or down to close the difference and vice-versa. Also linked the .yyz for ease.

Manhattan distance script:

function manhattan(spot)
{
	return(abs(spot.x-oPlayer.x)+abs(spot.y-oPlayer.y));
}

Enemy alarm[0]

//get grids around us
if instance_place(x-64,y,oGrid)
{
	left=instance_nearest(x-64,y,oGrid);
}

if instance_place(x+64,y,oGrid)
{
	right=instance_nearest(x+64,y,oGrid);
}

if instance_place(x,y+64,oGrid)
{
	down=instance_nearest(x,y+64,oGrid);
}

if instance_place(x,y-64,oGrid)
{
	up=instance_nearest(x,y-64,oGrid);
}
//move or attack
nu=current_grid;//don't move if not better
if manhattan(up)<manhattan(down) && up.open==true
{
	nu=up;
}
else if manhattan(down)<manhattan(up) && down.open==true
{
	nu=down;
}
else if manhattan(left)<manhattan(right) && left.open==true
{
	nu=left;
}
else if manhattan(right)<manhattan(left) && right.open==true
{
	nu=right;
}
else if manhattan(up)==manhattan(down)//need to go left or right
{
	if manhattan(left)<manhattan(right) && left.open==true
	{
		nu=left;
	}
	else if manhattan(right)<=manhattan(left) && right.open==true
	{
		nu=right;
	}
}
else if manhattan(left)==manhattan(right)//need to go up or down
{
	if manhattan(up)<manhattan(down) && up.open==true
	{
		nu=up;
	}
	else if manhattan(down)<=manhattan(up) && down.open==true
	{
		nu=down;
	}
}

x=nu.x;
y=nu.y;
nu.open=false;
current_grid.open=true;
current_grid=nu;
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/NorthStateGames
πŸ“…︎ Jan 12 2022
🚨︎ report
1897, The world's first city to host licensed Taxicabs
πŸ‘︎ 55
πŸ’¬︎
πŸ‘€︎ u/sajiasanka
πŸ“…︎ Dec 06 2021
🚨︎ report
1897, The world's first city to host licensed Taxicabs
πŸ‘︎ 204
πŸ’¬︎
πŸ‘€︎ u/sajiasanka
πŸ“…︎ Dec 06 2021
🚨︎ report
1897, The world's first city to host licensed Taxicabs
πŸ‘︎ 108
πŸ’¬︎
πŸ‘€︎ u/sajiasanka
πŸ“…︎ Dec 06 2021
🚨︎ report
1897, The world's first city to host licensed Taxicabs
πŸ‘︎ 136
πŸ’¬︎
πŸ‘€︎ u/sajiasanka
πŸ“…︎ Dec 06 2021
🚨︎ report
how common is using grab as a tuk/tuk or taxicab equivalent in thailand?

Going back to thailand again next month. For my first trip, I used almost exclusively MRT for travel, in chiang mai I took some buses around.

I have not had a good experience with the thai tuktuk/taxi drivers who always try to scam me as a foreigner.

Since I heard grab is widely used in asia, and I assume it's used often in thailand as well.

When you guys travel from let's say, Asok to Khao San Road, which is not too far by car, but a considerable distance to walk, do you guys usually take the MRT followed by tuktuk or taxi? Because I want to use Grab as the alternative in cases like this

Also, what if you guys are on islands like Koh Tao/Phangan/Krabi Phuket, is grab used here at all as well?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/TheWeebles
πŸ“…︎ Nov 29 2021
🚨︎ report
1897, The world's first city to host licensed Taxicabs
πŸ‘︎ 9
πŸ’¬︎
πŸ‘€︎ u/sajiasanka
πŸ“…︎ Dec 06 2021
🚨︎ report
They have names now... Spots, Goldie, and Taxicab! My kids named their favorite fish Spots and Goldie. I named my favorite fish Taxicab. Can you guess who is who? 😁 reddit.com/gallery/qy8vjf
πŸ‘︎ 7
πŸ’¬︎
πŸ“…︎ Nov 20 2021
🚨︎ report
1897, The world's first city to host licensed Taxicabs
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/sajiasanka
πŸ“…︎ Dec 06 2021
🚨︎ report
How did someone summon a taxicab in western European cities in 1940?

Hi - I'm writing up my grandfather's WWII stories, and in May of 1940, he was living in Brussels, Belgium. My grandmother had their first child a few days before the Nazi invasion. She gave birth in a maternitΓ© about 2 miles from their apartment, and I've verified that the streetcars didn't run past midnight, so it seems likely they summoned a taxicab. How did one summon a taxicab in the middle of the night? Was there some sort of central dispatch he could call? Did he got to a main road and flag one down? Something else?

πŸ‘︎ 11
πŸ’¬︎
πŸ“…︎ Nov 16 2021
🚨︎ report
NYC had 80,000 ride-share drivers as of 2019, and 13,500 taxicabs. wired.com/story/new-york-…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/UIDA-NTA
πŸ“…︎ Dec 10 2021
🚨︎ report
With Uber and Lyft prices rising, passengers return to the original ride-hailing service: taxicabs marketwatch.com/story/wit…
πŸ‘︎ 2
πŸ’¬︎
πŸ“…︎ Nov 27 2021
🚨︎ report
Company corners the taxicab medallion market, sells them back with financing at ~2-3 times the price plus interest, and is now the "hero" for forgiving 1/3 the debt when cabbies can't keep up with the payments. marketwatch.com/story/70-…
πŸ‘︎ 12
πŸ’¬︎
πŸ‘€︎ u/SoleInvictus
πŸ“…︎ Oct 28 2021
🚨︎ report
1995 Crown Victoria, the Cockroach of the automotive world. Literally unkillable, and so boaty and stylish while eating taxicab miles.
πŸ‘︎ 112
πŸ’¬︎
πŸ‘€︎ u/DOugdimmadab1337
πŸ“…︎ Aug 16 2021
🚨︎ report
Taxicabs of the world
πŸ‘︎ 175
πŸ’¬︎
πŸ“…︎ Jun 02 2021
🚨︎ report
Remember HBO’s Taxicab Confessions?
πŸ‘︎ 597
πŸ’¬︎
πŸ“…︎ Jun 29 2021
🚨︎ report
A coal-gas powered taxicab operated by John Lee Automobile Engineers in Keighley, England. The bag atop the vehicle stored sufficient fuel for 15 miles of driving (c. 1920s) imgur.com/XnfmSeu
πŸ‘︎ 41
πŸ’¬︎
πŸ‘€︎ u/cruzweb
πŸ“…︎ Sep 23 2021
🚨︎ report
Remember Taxicab Confessions? How about Spacecab Confessions? youtube.com/watch?v=8CfCv…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/sheldontheshutin
πŸ“…︎ Oct 13 2021
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.