#javarevision resultados de búsqueda

Day 3 of #100DaysOfCode (#JavaRevision) #CoreJava - difference between JVM & JRE - understanding Bytecode verification - different java sdk tools (javac, java, jar, javadoc, jdb) - different java technologies: JavaSE, JavaEE, JavaME, BioJava #JavaEE - working with different…


Day 43 of #100DaysOfCode (#JavaRevision) #CoreJava - Gained a clear understanding of type promotion and type casting - Experimented with implicit and explicit conversions to see how Java handles them - Explored Java's implicit type promotion chart #JavaEE - Built a basic user…


Day 22 of #100DaysOfCode (#JavaRevision) #CoreJava - multiple instances of JVM vs Java application - running a java programming without compiling it! (JDK11+) - should we keep multiple classes in a single file? - more than one main() methods in a class #JavaEE - understanding…


Day 10 of #100DaysOfCode (#JavaRevision) <please help on JavaEE issue below> #CoreJava - difference between object-based and object-oriented programming language - why java is not 'pure object-oriented' programming language - detailed architecture of JVM: Class info, Constant…


Day 15 of #100DaysOfCode (#JavaRevision) #CoreJava - traversing through different JDK tools - objective of rt.jar (java classes) & src.zip (java source code) given by java - creating java docs for all the classes in java.lang & other packages #JavaEE -…


Day 24 of #100DaysOfCode (#JavaRevision) #CoreJava - variables in java - data types in java: primitive (built-in) & non-primitive (referenced) - understanding referenced data types - reference id for each referenced data type is kept in the 'reference variable' #JavaEE -…


Day 29 of #100DaysOfCode (#JavaRevision) #CoreJava - working with primitive data types - int, byte, char & other primitives - understanding ASCII & Unicode - default values of each data type #JavaEE - created a login system implementing session - how cookies are shared by…


Day 31 of #100DaysOfCode (#JavaRevision) #CoreJava - class level & local variables - why there can never be 'garbage value' in a java variables - basics of type casting #JavaEE - checking the cookies status in browser via servlet - tracking the session further using HttpSession…


Day 36 of #100DaysOfCode (#JavaRevision) #CoreJava - why char data type in java has 2 bytes - understanding the foundation of ASCII and Unicode systems - default values of each data type in java - class level vs local variables #JavaEE - session tracking using hidden form field…


Day 38 of #100DaysOfCode (#JavaRevision) #CoreJava - concept of class level & local level variables - default values for class level, mandatory initialization for local variables - default data type of each literal (for eg. int for 4) - type issues while performing lossy…


Day 1 of #100DaysOfCode (#JavaRevision) #CoreJava - introduction & different features of Java - why Java when there was C++? - earlier problems with compilers & os dependency - Java's solution: bytecode - introduction to JVM #JavaEE - ServletConfig, ServletContext -…


Day 52 of #100DaysOfCode (#JavaRevision) ☕ #CoreJava - Implemented encapsulation using Classes — the “class as a capsule/wrapper” concept - Understood data members and member functions in a class - Created an Employee class and worked with its objects 💻 #JavaEE - Managed…


Day 8 of #100DaysOfCode (#JavaRevision) #CoreJava - understanding the combined working of class loader, bytecode verifier & execution engine - execution engines: silicone engine, adaptive engine & why they were slow - new execution engine: just-in-time compiler (JIT), its…


Day 17 of #100DaysOfCode (#JavaRevision) #CoreJava - anatomy of a java class - main() function & command-line arguments - working with multiple instances of JVM #JavaEE - the concept of session tracking - stateless behavior of HTTP protocol - creating a session using…


Day 50 of #100DaysOfCode (#JavaRevision) ☕ #CoreJava - Revisited the core concepts of OOP - Understood an object’s properties & behavior - Explored encapsulation — bundling data and methods together 💻 #JavaEE - Worked with various methods of the HttpSession class to manage:…


Planning to go for another #24HoursOfCode day. This time thinking of going for #JavaRevision.


Day 45 of #100DaysOfCode (#JavaRevision) #CoreJava - Introduction to OOP & its concepts - Problems with the earlier procedural programming approach - Deep dive into classes and objects #JavaEE - Managing session through hidden form fields - Using JS (frontend) to check & send…


"Finally... Finished exams and removed the rust from my brain after revising Java 🚀💡 " 📚👩‍💻 Now, I'm focussed.#CodingJourney #JavaRevision


Here's the schedule I've been using while learning the following topics during my current #100DaysOfCode challenge: 1. #JavaRevision (Core + Adv.) [Mon, Wed] 2. #MERN Stack [Tue, Thu] 3. #DataScience & #GenAI [Fri, Sun] 4. #DSA & #Web3 [Sat] It's been two weeks & I'll not be…


Day 52 of #100DaysOfCode (#JavaRevision) ☕ #CoreJava - Implemented encapsulation using Classes — the “class as a capsule/wrapper” concept - Understood data members and member functions in a class - Created an Employee class and worked with its objects 💻 #JavaEE - Managed…


Day 50 of #100DaysOfCode (#JavaRevision) ☕ #CoreJava - Revisited the core concepts of OOP - Understood an object’s properties & behavior - Explored encapsulation — bundling data and methods together 💻 #JavaEE - Worked with various methods of the HttpSession class to manage:…


Day 45 of #100DaysOfCode (#JavaRevision) #CoreJava - Introduction to OOP & its concepts - Problems with the earlier procedural programming approach - Deep dive into classes and objects #JavaEE - Managing session through hidden form fields - Using JS (frontend) to check & send…


Day 43 of #100DaysOfCode (#JavaRevision) #CoreJava - Gained a clear understanding of type promotion and type casting - Experimented with implicit and explicit conversions to see how Java handles them - Explored Java's implicit type promotion chart #JavaEE - Built a basic user…


Day 38 of #100DaysOfCode (#JavaRevision) #CoreJava - concept of class level & local level variables - default values for class level, mandatory initialization for local variables - default data type of each literal (for eg. int for 4) - type issues while performing lossy…


Planning to go for another #24HoursOfCode day. This time thinking of going for #JavaRevision.


Day 36 of #100DaysOfCode (#JavaRevision) #CoreJava - why char data type in java has 2 bytes - understanding the foundation of ASCII and Unicode systems - default values of each data type in java - class level vs local variables #JavaEE - session tracking using hidden form field…


Day 31 of #100DaysOfCode (#JavaRevision) #CoreJava - class level & local variables - why there can never be 'garbage value' in a java variables - basics of type casting #JavaEE - checking the cookies status in browser via servlet - tracking the session further using HttpSession…


Day 29 of #100DaysOfCode (#JavaRevision) #CoreJava - working with primitive data types - int, byte, char & other primitives - understanding ASCII & Unicode - default values of each data type #JavaEE - created a login system implementing session - how cookies are shared by…


Day 24 of #100DaysOfCode (#JavaRevision) #CoreJava - variables in java - data types in java: primitive (built-in) & non-primitive (referenced) - understanding referenced data types - reference id for each referenced data type is kept in the 'reference variable' #JavaEE -…


Day 22 of #100DaysOfCode (#JavaRevision) #CoreJava - multiple instances of JVM vs Java application - running a java programming without compiling it! (JDK11+) - should we keep multiple classes in a single file? - more than one main() methods in a class #JavaEE - understanding…


Day 17 of #100DaysOfCode (#JavaRevision) #CoreJava - anatomy of a java class - main() function & command-line arguments - working with multiple instances of JVM #JavaEE - the concept of session tracking - stateless behavior of HTTP protocol - creating a session using…


Day 15 of #100DaysOfCode (#JavaRevision) #CoreJava - traversing through different JDK tools - objective of rt.jar (java classes) & src.zip (java source code) given by java - creating java docs for all the classes in java.lang & other packages #JavaEE -…


Here's the schedule I've been using while learning the following topics during my current #100DaysOfCode challenge: 1. #JavaRevision (Core + Adv.) [Mon, Wed] 2. #MERN Stack [Tue, Thu] 3. #DataScience & #GenAI [Fri, Sun] 4. #DSA & #Web3 [Sat] It's been two weeks & I'll not be…


Day 10 of #100DaysOfCode (#JavaRevision) <please help on JavaEE issue below> #CoreJava - difference between object-based and object-oriented programming language - why java is not 'pure object-oriented' programming language - detailed architecture of JVM: Class info, Constant…


Day 8 of #100DaysOfCode (#JavaRevision) #CoreJava - understanding the combined working of class loader, bytecode verifier & execution engine - execution engines: silicone engine, adaptive engine & why they were slow - new execution engine: just-in-time compiler (JIT), its…


Day 3 of #100DaysOfCode (#JavaRevision) #CoreJava - difference between JVM & JRE - understanding Bytecode verification - different java sdk tools (javac, java, jar, javadoc, jdb) - different java technologies: JavaSE, JavaEE, JavaME, BioJava #JavaEE - working with different…


Day 1 of #100DaysOfCode (#JavaRevision) #CoreJava - introduction & different features of Java - why Java when there was C++? - earlier problems with compilers & os dependency - Java's solution: bytecode - introduction to JVM #JavaEE - ServletConfig, ServletContext -…


"Finally... Finished exams and removed the rust from my brain after revising Java 🚀💡 " 📚👩‍💻 Now, I'm focussed.#CodingJourney #JavaRevision


Easy one - assume int[] t = {1, 2, 3, 4}. What is t.length? @rgentleman @apreis @rollymaiquez #javaRevision (I have to sit an exam!!!)


No hay resultados para "#javarevision"

OOP Design Patterns for Software Development

javarevisited's tweet image. OOP Design Patterns for Software Development

🛑 Want to give old photos a new life? 🛑 ⚜️ Use Google Gemini Ai ⚜️ Note: This is not a free AI filter. It’s a professional restoration service where each photo is enhanced. DM me for packages. Prompt , Please edit my old photo into 1080 x 1920 pixels, with an aesthetic…

ShreyaYadav___'s tweet image. 🛑 Want to give old photos a new life? 🛑

⚜️ Use Google Gemini Ai ⚜️ 

Note: This is not a free AI filter. It’s a professional restoration service where each photo is  enhanced. DM me for packages.

Prompt ,

Please edit my old photo into 1080 x 1920 pixels, with an aesthetic…
ShreyaYadav___'s tweet image. 🛑 Want to give old photos a new life? 🛑

⚜️ Use Google Gemini Ai ⚜️ 

Note: This is not a free AI filter. It’s a professional restoration service where each photo is  enhanced. DM me for packages.

Prompt ,

Please edit my old photo into 1080 x 1920 pixels, with an aesthetic…

11 Advanced Algorithms you should learn before Software Design Interview

javarevisited's tweet image. 11 Advanced Algorithms you should learn before Software Design Interview

10 Advanced Algorithms you should learn before System Design Interview

javarevisited's tweet image. 10 Advanced Algorithms you should learn before System Design Interview

Finally, a picture no one can complain about. JAVA

NatashaCL7's tweet image. Finally, a picture no one can complain about. 

JAVA

bolee, jni before-after editnya langsung dri photos brilliance 10 highlights 6 shadows 16 contrast 8 brightness 20 blackpoint 30 saturation 30 vibrance 10 warmth 60 tint 35 sharpness 3 definition 4

jasminesp4ge's tweet image. bolee, jni before-after 
editnya langsung dri photos 
brilliance 10 
highlights 6 
shadows 16 
contrast 8 
brightness 20 
blackpoint 30 
saturation 30 
vibrance 10 
warmth 60 
tint 35 
sharpness 3 
definition 4
jasminesp4ge's tweet image. bolee, jni before-after 
editnya langsung dri photos 
brilliance 10 
highlights 6 
shadows 16 
contrast 8 
brightness 20 
blackpoint 30 
saturation 30 
vibrance 10 
warmth 60 
tint 35 
sharpness 3 
definition 4

TOURNÉE DE FONDS D'ÉCRAN: SPECIAL JAVA 🇮🇩 En Octobre, j'ai exploré Java, une île d'Indonésie incroyable pleine de paysages sauvages, voici mes plus beaux clichés de cette destination au format fond d'écran ! insta 👉 jonathanbertin

jonathanbertin's tweet image. TOURNÉE DE FONDS D&apos;ÉCRAN: SPECIAL JAVA 🇮🇩

En Octobre, j&apos;ai exploré Java, une île d&apos;Indonésie incroyable pleine de paysages sauvages, voici mes plus beaux clichés de cette destination au format fond d&apos;écran !

insta 👉 jonathanbertin
jonathanbertin's tweet image. TOURNÉE DE FONDS D&apos;ÉCRAN: SPECIAL JAVA 🇮🇩

En Octobre, j&apos;ai exploré Java, une île d&apos;Indonésie incroyable pleine de paysages sauvages, voici mes plus beaux clichés de cette destination au format fond d&apos;écran !

insta 👉 jonathanbertin
jonathanbertin's tweet image. TOURNÉE DE FONDS D&apos;ÉCRAN: SPECIAL JAVA 🇮🇩

En Octobre, j&apos;ai exploré Java, une île d&apos;Indonésie incroyable pleine de paysages sauvages, voici mes plus beaux clichés de cette destination au format fond d&apos;écran !

insta 👉 jonathanbertin
jonathanbertin's tweet image. TOURNÉE DE FONDS D&apos;ÉCRAN: SPECIAL JAVA 🇮🇩

En Octobre, j&apos;ai exploré Java, une île d&apos;Indonésie incroyable pleine de paysages sauvages, voici mes plus beaux clichés de cette destination au format fond d&apos;écran !

insta 👉 jonathanbertin

Shifter Home Redesign (No pupil/ w pupil)

Javadoodle404's tweet image. Shifter Home Redesign
(No pupil/ w pupil)
Javadoodle404's tweet image. Shifter Home Redesign
(No pupil/ w pupil)

Efficient client-side filtering, who needs React compiler. 👀

James_Marotta's tweet image. Efficient client-side filtering, who needs React compiler. 👀

Buat yang ngerasa ketipu karena fotografer yang kalian hire ga bisa ngedit, bisa beli "Govinda Rumi Presets" untuk mempercantik foto kalian. Before vs After

govoes's tweet image. Buat yang ngerasa ketipu karena fotografer yang kalian hire ga bisa ngedit, 

bisa beli &quot;Govinda Rumi Presets&quot; untuk mempercantik foto kalian.

Before vs After
govoes's tweet image. Buat yang ngerasa ketipu karena fotografer yang kalian hire ga bisa ngedit, 

bisa beli &quot;Govinda Rumi Presets&quot; untuk mempercantik foto kalian.

Before vs After

Masih ada yang lain dibawah...

Skenanews's tweet image. Masih ada yang lain dibawah...


the best design pattern cheat sheet part 1

javarevisited's tweet image. the best design pattern cheat sheet part 1

Design Patterns every professional coder should learn

javarevisited's tweet image. Design Patterns every professional coder should learn

Quer editar suas fotos assim tb?? com esses filtros você consegue ❤️ (mais informações nos comentários)

jaisonsampaio's tweet image. Quer editar suas fotos assim tb?? 
com esses filtros você consegue ❤️ 
(mais informações nos comentários)
jaisonsampaio's tweet image. Quer editar suas fotos assim tb?? 
com esses filtros você consegue ❤️ 
(mais informações nos comentários)

Testing Out Nano Banana 🍌🔥 Pretty INSANE results Look at this 👇

ai_artworkgen's tweet image. Testing Out Nano Banana 🍌🔥

Pretty INSANE results

Look at this 👇
ai_artworkgen's tweet image. Testing Out Nano Banana 🍌🔥

Pretty INSANE results

Look at this 👇

Design Pattern every experienced Java developer should learn

javarevisited's tweet image. Design Pattern every experienced Java developer should learn

Original Lightroom Filter กว่าจะได้1รูป ตาจะหลุด

jammyjellyjam's tweet image. Original            Lightroom           Filter
กว่าจะได้1รูป ตาจะหลุด

IMAGINA TER ESSES FILTROS NO SEU CELULAR PRA EDITAR SUAS FOTOS, E DE GRAÇA 👀❤️ quer baixar? Link nos comentários

jaisonsampaio's tweet image. IMAGINA TER ESSES FILTROS NO SEU CELULAR PRA EDITAR SUAS FOTOS, E DE GRAÇA 👀❤️ quer baixar? Link nos comentários
jaisonsampaio's tweet image. IMAGINA TER ESSES FILTROS NO SEU CELULAR PRA EDITAR SUAS FOTOS, E DE GRAÇA 👀❤️ quer baixar? Link nos comentários
jaisonsampaio's tweet image. IMAGINA TER ESSES FILTROS NO SEU CELULAR PRA EDITAR SUAS FOTOS, E DE GRAÇA 👀❤️ quer baixar? Link nos comentários
jaisonsampaio's tweet image. IMAGINA TER ESSES FILTROS NO SEU CELULAR PRA EDITAR SUAS FOTOS, E DE GRAÇA 👀❤️ quer baixar? Link nos comentários

Some magical stuff what computers can do with images these days... "Content aware image resize library" github.com/esimov/caire

css's tweet image. Some magical stuff what computers can do with images these days...

&quot;Content aware image resize library&quot;

github.com/esimov/caire

More Tests with Nano Banana 🍌🔥 Prompt: "create a 4-panel montage showing sporting moments. use the style of the reference image" More examples (and prompts) in the thread ... 👇

ai_artworkgen's tweet image. More Tests with Nano Banana 🍌🔥

Prompt: &quot;create a 4-panel montage showing sporting moments. use the style of the reference image&quot;

More examples (and prompts) in the thread ... 👇

ได้รับแล้วนะค้าาาา แพคมาดีมากค่าาาา🫶🏻 #rvforJava

kanory_t's tweet image. ได้รับแล้วนะค้าาาา แพคมาดีมากค่าาาา🫶🏻 #rvforJava

Loading...

Something went wrong.


Something went wrong.


United States Trends