Java.evolved: Java has evolved. Your code can too
javaevolved.github.io
Java.evolved: Java has evolved. Your code can too
1–10 of 40 posts
Re: Java.evolved: Java has evolved. Your code can too
#2Re: Java.evolved: Java has evolved. Your code can too
#3Great idea, although it is quite inconvenient that you have to tap/swipe to show the modern version (at least on mobile). Makes it difficult to compare.
For a better visualization to compare old/new, just click on the card and it will open that particular pattern in a new page.
Re: Java.evolved: Java has evolved. Your code can too
#4Re: Java.evolved: Java has evolved. Your code can too
#5Anyone else getting annoyed by these statistics AI generated websites are adding to everything? Like in this example, “0 lines of Python”. What does that even mean? Cool site though, but is it an ad for Copilot? Seems like it, and should be disclosed as such if that’s the case imo.
https://github.com/javaevolved/javaevolved.github.io/tree/ma...
Re: Java.evolved: Java has evolved. Your code can too
#6Great idea, although it is quite inconvenient that you have to tap/swipe to show the modern version (at least on mobile). Makes it difficult to compare.
Re: Java.evolved: Java has evolved. Your code can too
#7Great idea, although it is quite inconvenient that you have to tap/swipe to show the modern version (at least on mobile). Makes it difficult to compare.
Hey mate, what UX would you suggest? Happy to explore ideas! For a better visualization to compare old/new, just click on the card and it will open that particular pattern in a new page.
Re: Java.evolved: Java has evolved. Your code can too
#8Re: Java.evolved: Java has evolved. Your code can too
#9 public int x, y;
instead of private int x, y;
public int getX() {return x;}
public void setX(int x) {this.x = x;}
public int getY() {return y;}
public void setY(int y) {this.y = y;}
this is compatible with any language versionRe: Java.evolved: Java has evolved. Your code can too
#10Not many people know this, but you can also write public int x, y; instead of private int x, y; public int getX() {return x;} public void setX(int x) {this.x = x;} public int getY() {return y;} public void setY(int y) {this.y = y;} this is compatible with any language version