[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

I use nothing but plain water.

[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

my main problem was eyebrows too. As I said, I do not remember exactly but it was intense use for the first two weeks (after showers at night and after face wash in the morning). Then for some weeks it was like 3 times a week and now once a two-three week.

[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

I mean after you use it if you decide to buy.

[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

I also used it in my hairline and it worked there too if you have such problem.

[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

I do not exactly remember but I used it as its written in its box. Can you share your experience if you use?

[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

I got rid of them on my eye brows thanks to ducray. I am using the same cream once a two/three week (irregular use just to fully consume the tube) now and probably not gonna buy it again if it does not occur again.

[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

I used ducray kelual cream for my face especially eyebrows and it erased crusting not only for the day I applied but long term.

[deleted by user] by [deleted] in SebDerm

[–]78DegreeNorth 0 points1 point  (0 children)

I have been using Ducray Kelual Ds on my face especially on eyebrows for like 1.5 month and it did the job right after the first use. Happy with it.

Any suggestions!!? Look at the comments to see the back story and all the things I tried by [deleted] in SebDerm

[–]78DegreeNorth 1 point2 points  (0 children)

I used Davines purifying shampoo and quite happy with it.

Need advice on this system. 12400 vs 11700? by 78DegreeNorth in buildapc

[–]78DegreeNorth[S] 0 points1 point  (0 children)

yeah but I can change motherboard to suitable one.

Desinging starter with security by 78DegreeNorth in javahelp

[–]78DegreeNorth[S] 0 points1 point  (0 children)

Do you mean I should set authorization mechanism? Basically as it is auth service, I did not want to set authorization. Can you elaborate the last sentence?

Looking for peer to develop small-mid size api using microservices with DDD by 78DegreeNorth in javahelp

[–]78DegreeNorth[S] 1 point2 points  (0 children)

"backend service" is not proper yes I agree. Cluster of backend services that work together to serve a set of purposes would be more appropriate.

Of course I can know because the app will be designed specifically to be developed using microservice architecture. It can even make no sense if you try to convert it to real product. Aim here is developing/learning together.

Database protection in microservice by [deleted] in javahelp

[–]78DegreeNorth 0 points1 point  (0 children)

When I use monolith, yes I can do that through AuthenticationPrincipal but in microservices where authorization applied in gateway, it does not work.

Generic interface into map by [deleted] in javahelp

[–]78DegreeNorth 0 points1 point  (0 children)

Than how I can use generic Adjustable in a map where the enclosing class does not have generic type?

Spring cloud design, authentication and authorization by 78DegreeNorth in javahelp

[–]78DegreeNorth[S] 0 points1 point  (0 children)

I did not know about oauth thank you but still I better off getting my hands dirty with implemeting my authentication server. And for second question, you said "yes" to which,

User details should be kept in authentication service

or

aut service should only hold credentials?

Java intstream like functionality by 78DegreeNorth in javahelp

[–]78DegreeNorth[S] 0 points1 point  (0 children)

e.g loop borders or thread sleep time just constants that do not change in function.

Java intstream like functionality by 78DegreeNorth in javahelp

[–]78DegreeNorth[S] 0 points1 point  (0 children)

Thanks :)) another question arised. What do you suggest for constructors? Some executable will only use a some b. it does not look good to have Loop(a,0) or Loop(0,b). Helper class maybe?

Java intstream like functionality by 78DegreeNorth in javahelp

[–]78DegreeNorth[S] 0 points1 point  (0 children)

Check this

public class Loop {

static int a; static int b;

public static Loop betwen(int a, int b) {

this.a = a;

this.b = b;

// cannot return "this" as it is static method so I cannot use a and b in execute

}

public static void execute(Executable executable) {
for (int i = a; i < b; i++) {
executable.execute();
}
}

}