最新发布第1470页
The Silent Villains of the Coding Universe: A Review of Common Java Anti-Patterns.
The Silent Villains of the Coding Universe: A Review of Common Java Anti-Patterns.,Anti-Patterns seem harmless but lead to error-prone solutions and make your code unmaintainable i...
Excel Sheet Column Number
Excel Sheet Column Number,Given a column title as appear in an Excel sheet, return its corresponding column number. For example: A -> 1 B -> 2 C -> 3 ... Z -> 26 AA -&g...
Clean up Your Data Science with Named Tuples
Clean up Your Data Science with Named Tuples,This post comes from the archives of waylonwalker.com, before I was posting to DEV. If you are a regular listener of TalkPython or Pyth...
Create TestNG Project In Eclipse & Run Selenium Test Script
Create TestNG Project In Eclipse & Run Selenium Test Script,In the last article, we installed TestNG in Eclipse and did some environment set up for the same. Subsequently, we saw h...
Converting Word to PDF, PNG, SVG, RTF, XPS, XML in Java Application
Converting Word to PDF, PNG, SVG, RTF, XPS, XML in Java Application,When manipulating Word document, we often need to convert it from doc/docx to other file formats to meet the nee...
Effective Java! Use EnumMap instead of Ordinal Indexing
Effective Java! Use EnumMap instead of Ordinal Indexing, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective Java Tue...
Secure APIs with Azure Functions, Java, Azure AD… and MS Graph!
Secure APIs with Azure Functions, Java, Azure AD… and MS Graph!,As a .NET developer, it’s always fun to step out of my comfort zone and play with other languages and frameworks. ...
Crie testes unitários mais amigáveis e mais rapidamente com Spock
Crie testes unitários mais amigáveis e mais rapidamente com Spock,Testes e especificações quase sempre são uma dor de cabeça para o desenvolvedor. Gastamos muito tempo escrev...
Easy modularity: Keeping your Gradle build scripts clean and eliminating duplication in your multi-module projects
Easy modularity: Keeping your Gradle build scripts clean and eliminating duplication in your multi-module projects,I recently started breaking up the monolith I inherited at my cur...
Get Started with Java Logging (and some tips to easily learn new libraries)
Get Started with Java Logging (and some tips to easily learn new libraries),When I started my journey in computer science 3 years ago as a CS undergraduate student, I began to lear...
Scala Type Bounds
Scala Type Bounds,Working with types in Scala can be challenging in many ways. The deeper you dig into the complexity of this subject, the more difficult is to find the right path....
Partial Functions in Scala
Partial Functions in Scala,Writing functions and methods that process the input data and produce some output is the very core of any type of programming. When diving deeper into di...