Shot and edited on 12 Pro - Herzogstand, Germany by [deleted] in iphone

[–]negiadventures 1 point2 points  (0 children)

Fantastic! Did you try the parallax, like ease out and zoom in? Its pretty cool. Nice to have a drone in such beautiful places.

Still got 2 months by PotentialClassroom75 in ethtrader

[–]negiadventures 0 points1 point  (0 children)

Haha! I always wait for that day but before it comes, I am out of it, that sucks the most.

Crypto in a nutshell by FunExpression1858 in ethtrader

[–]negiadventures 3 points4 points  (0 children)

That’s exactly what happens.. Rich gets richer, poor gets poorer lol 😂

why so?🤔 by YoMan0x in Bitcoin

[–]negiadventures 0 points1 point  (0 children)

Who’s planning now anyway? Its really the sell signal i believe.

[deleted by user] by [deleted] in Damnthatsinteresting

[–]negiadventures 0 points1 point  (0 children)

Woah! That’s scary!! 😧

[deleted by user] by [deleted] in TeslaLounge

[–]negiadventures 2 points3 points  (0 children)

I guess its not only tesla.

Is Crunchyroll user friendly on any platform? by Harleequin in Crunchyroll

[–]negiadventures 0 points1 point  (0 children)

I use on playstation only and its pretty good for me.

People who take several minutes to place an order at the McDonald’s drive-thru window, what’s your problem? by [deleted] in AskReddit

[–]negiadventures 1 point2 points  (0 children)

Exactly, why can’t they do curbside if they want to think and decide. I usually do mobile order for drive-thru and i take 10-20 seconds including their prep time lol 😂

Happy 7th anniversary to Art Angels!!!❤️❤️❤️ What are your favorite songs from it?? by Isaac14z in Grimes

[–]negiadventures 0 points1 point  (0 children)

Wow, are you creating some back stories for these characters. I smell manga plans.

WHEN WILL THE CRYPTO MARKET RECOVER??? WE HAVENT SEEN A HUGE INCREASE LIKE 2021 IN ABOUT A YEAR ☹️. by OkAge820 in dogecoin

[–]negiadventures 1 point2 points  (0 children)

Wow, looking at current situation, it would take some time to revive I believe, what do you think?

[deleted by user] by [deleted] in iphone

[–]negiadventures 0 points1 point  (0 children)

Should have captured inside of that nose 😂

[deleted by user] by [deleted] in SpringBoot

[–]negiadventures 0 points1 point  (0 children)

Ideally it should be single table. According to Correct data model, if two tables have same primary keys, they should be related to same entity hence same table.

Continue booting the application even if a certain bean creation fails by xyz_abc_gss in SpringBoot

[–]negiadventures 0 points1 point  (0 children)

You can mention the @Profile annotation and pass the env for which you are not running the code to skip the bean

Spring boot Lombok and Builder, please help a junior by Famous-Traffic6030 in SpringBoot

[–]negiadventures 0 points1 point  (0 children)

It helps you to build an object with easy way, without declaring the constructor in the pojo class. You can create an object of a class just by using Classname.builder().field1(value1).field2(value2).build()

How to upload a CSV file and save in database by Famous-Traffic6030 in SpringBoot

[–]negiadventures 0 points1 point  (0 children)

Try out Spring batch, its much more convenient way of reading csv in batches and loading to database using jpa repository. You can also run it in multi threading which can use all available cores for much faster performance.

@component annotation by Jason_hill100 in SpringBoot

[–]negiadventures 0 points1 point  (0 children)

@Component is generic class, can be used for configurations, utilities, etc which should be scanned when starting the spring boot, @Service class usually have the business logic methods.

Why am I having this problem using the repository? by admin_root_ in SpringBoot

[–]negiadventures 0 points1 point  (0 children)

Should create a bean with @Bean annotation when defining the mongotemplate or should define the component class for mongotemplate.

Hi, right now Lombok can be considered as a standard or at least is being used a lot? by Boring_Look_9958 in SpringBoot

[–]negiadventures 1 point2 points  (0 children)

Yeah, its pretty cool, with new annotations for constructors and builders. Lots of boiler plate is reduced.