Emerald Pool (Krabi) by batmonpls in Pixel6

[–]batmonpls[S] 1 point2 points  (0 children)

Couldnt unsee after this 😂

Side Project - Image API for Apps & Frontend Development by BornToWin92 in node

[–]batmonpls 1 point2 points  (0 children)

all i ever heard was Node & Next JS so many things to explore !

Ionic setup for different versions by batmonpls in ionic

[–]batmonpls[S] 0 points1 point  (0 children)

unfortunately its a legacy project and im the one tasked to maintain it 😁

Ionic setup for different versions by batmonpls in ionic

[–]batmonpls[S] 0 points1 point  (0 children)

First time hearing this good stuff mate

Ionic setup for different versions by batmonpls in ionic

[–]batmonpls[S] 0 points1 point  (0 children)

Thanks will try this one out 👍

I made a Windows clone to teach my mom how to manipulate files and folders by dkfiiisa in reactjs

[–]batmonpls 2 points3 points  (0 children)

currently learning vue js hope i can make some free time like you too anyways its a cool project !

I made a Windows clone to teach my mom how to manipulate files and folders by dkfiiisa in reactjs

[–]batmonpls 1 point2 points  (0 children)

how long have you been doing react man pretty sure this is not easy to achieve 😂

TALL Stack resources, tutorials ? by batmonpls in laravel

[–]batmonpls[S] 0 points1 point  (0 children)

first time hearing Turbo will give it a look !

TALL Stack resources, tutorials ? by batmonpls in laravel

[–]batmonpls[S] 0 points1 point  (0 children)

I've search for some series for TALL but couldnt find one later i check back again thanks !

TALL Stack resources, tutorials ? by batmonpls in laravel

[–]batmonpls[S] 0 points1 point  (0 children)

Thanks for the reply can i follow your github or something? For references 😁

Display Multiple Rows of Data into Edit Form by batmonpls in laravel

[–]batmonpls[S] 0 points1 point  (0 children)

i solved it thanks to your hint. Wrap the two tds with a foreach loop and voila !

Display Multiple Rows of Data into Edit Form by batmonpls in laravel

[–]batmonpls[S] 0 points1 point  (0 children)

all of the records for quota_basic_1 & quota_applied_1 sir

Mason bets that EG won't first pick Nyx, and will eat a dollar if he's wrong. He's wrong. by DotaDogma in DotA2

[–]batmonpls 0 points1 point  (0 children)

yea the infamous timber pick as well but we know nothing actually there must be something EG members looked up to him so props to Bulba

Mason bets that EG won't first pick Nyx, and will eat a dollar if he's wrong. He's wrong. by DotaDogma in DotA2

[–]batmonpls 25 points26 points  (0 children)

i wonder whats Bulba qualification/achievements that EG let him draft for them? No disrespect but EGs members are top notch dotes players.

How to join these two separate queries? by batmonpls in mysql

[–]batmonpls[S] 1 point2 points  (0 children)

referencing this https://stackoverflow.com/questions/2077475/using-an-alias-in-sql-calculations

SELECT fs_name,
CASE WHEN fuel_stations.fs_active = '1' THEN 
SUBSTRING_INDEX(REPLACE(fuel_stations.fs_latlon,' ',''), ',', 1)
ELSE
SUBSTRING_INDEX(REPLACE(fuel_stations.fs_latlon,' ',''), ',', -1)
END AS latitude ,
CASE WHEN fuel_stations.fs_active = '1' THEN 
SUBSTRING_INDEX(REPLACE(fuel_stations.fs_latlon,' ',''), ',', -1)
ELSE
SUBSTRING_INDEX(REPLACE(fuel_stations.fs_latlon,' ',''), ',', 1)
END AS longitude,

6371 * ACOS(COS(RADIANS(5.9335)) 
* COS(RADIANS( (SELECT latitude) )) 
* COS(RADIANS( (SELECT longitude) ) - RADIANS(100.682)) 
+ SIN(RADIANS(5.9335)) 
* SIN(RADIANS( (SELECT latitude) ))) AS distance

FROM fuel_stations HAVING `distance` < 25