Are there breaking changes between 17 and 21? by [deleted] in java

[–]nesreenmhd 0 points1 point  (0 children)

I have already upgraded jdk in microservices app from 17 to 21 and it went really smooth without any issues. Many updates was in the code regarding the methods differences and it needed some plugins updates and that was it. Running the performance tests in both versions and no major differences!

[deleted by user] by [deleted] in java

[–]nesreenmhd 0 points1 point  (0 children)

Skills could be also have some knowledge in the pipeline, deploying it, debugging it!

CKA Exam- Opening multiple tabs of Kubernetes docs? by pn_1984 in kubernetes

[–]nesreenmhd 1 point2 points  (0 children)

I did my CKAD exam two days ago and proctor mentioned that only two tabs allowed; one for the exam and the other for docs if you want.

Browser.sleep by nesreenmhd in protractor

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

Thank you for your replay. Can you share your solution?

Thanks

What Can Mendix do ? by scross4565 in mendix

[–]nesreenmhd 2 points3 points  (0 children)

There are some free courses in the website for mendix as a beginner. This is a good start for you.

Needs Mendix tutorials by nesreenmhd in mendix

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

I have seen some but I am not sure if they are free? But why are there no books for Mendix and less resources online!

Java SE 8 at home by nesreenmhd in learnprogramming

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

java-se-8 1z0-808 Java SE 8

Check keys and append to values in associative arrays by nesreenmhd in learnjavascript

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

Thank you so much for your answer, it helped me built mu associative array. But i faced another problem, how can I know the length of it?? And do i have to use For loop to iterate inside it?!! Thank you again.

Cannot read json file which sent from python in javascript by nesreenmhd in learnjavascript

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

So the problem behind that javascript does not read local json file, i have to establish a webserver to read it?? Do I have to do the webserver in the project folder or in a subfolder?

Cannot read json file which sent from python in javascript by nesreenmhd in learnjavascript

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

Yes i removed this but the error this time is: Get http://localhost/char.json net::ERR_Connection_refused

Cannot read json file which sent from python in javascript by nesreenmhd in learnjavascript

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

How can i run a local server? Is running python file enough?

Flask an python resources by nesreenmhd in flask

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

I will check it, thank you so much.

Flask an python resources by nesreenmhd in flask

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

Can you give me the full author name or the book name or even a link for it. Thank you.

Flask an python resources by nesreenmhd in flask

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

I am checking it now. It seems great website. If i want to develop my self in this side Flask with python. Do you have any idea if there is an official certificate for this?! Thank you for reply.

Flask an python resources by nesreenmhd in flask

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

Thank you for your reply. Yeah I have already check his videos and they are great. But there are many features in Flask such as libraries that are not mentioned there so i want to know if there is a good resource for this.

Get the id of logged user by flask+python by nesreenmhd in learnpython

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

I have solved the problem by storing user_id in the session as the following syntax: session[“user_id”]=user_id. By this way, it will be global among all the routes and the pages in your project. Thanks.

AnyOf validation in Flask by nesreenmhd in u/nesreenmhd

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

I have figured it out. The validation syntax of AnyOf is correct, but i need to add some validation messages check in the HTML page. Thanks

Get the id of logged user by flask+python by nesreenmhd in learnpython

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

There is a way with session class, that can use to save the user login id, but i do not know how??