(Praveen Sripati) We had been using emails for marketing some of the product offerings we have. Instead of creating our own email Server for sending emails, we had been using AWS SES for the same.
Tag: JSON / JAVA / XML
Building A Mental Model For Precedence And The ‘new’ Operator In JavaScript
(Ben Nadel) For the most part, when I write JavaScript code, I try to be mindful. Which means that when I write JavaScript code – or any code for that matter – I never want to rely on operator precedence. This is for me; but, it’s just as much for the next engineer who has to maintain my code.
Add to Your Collection of Development Building Blocks
(Erin Cavanaugh) When it comes to developing sophisticated software and data integration applications, the more building blocks a developer has at his or her disposal, the better. With each release of our developer and server software, we aim to provide customers with unique tools that give them the
Create and Consume JWT Tokens in C#
(Denis Pashkov) There are plenty of materials on how to manage JWT tokens in C# environment.
Java Heap Space vs. Stack Memory: How Java Applications Allocate Memory
(Angela Stringfellow) Java applications need a certain amount of RAM on a computer to run. Each time an object or variable is declared, it needs more RAM. Simply designating enough memory to hold every value declared and run each method would lead to a bloated application.
Web services in Java SE, Part 4: SOAP with Attachments API for Java
(Jeff Friesen) Parts 1 through 3 of this four-part series on developing Web services in Java SE first presented an overview of Web services and Java SE’s support for developing them. The series then focused on developing SOAP-based and RESTful Web services via this support.
Fixing 7 Common Java Exception Handling Mistakes
(Thorben Janssen) Exception handling is still a point of contention, even among experienced developers. Here are seven common mistakes and examples of how to fix them.
Object.create(null)
(David Walsh) One of the funnest parts of JavaScript, or any programming language really, is that there are loads of tiny tricks and quirks that make the language that much more interesting. I recently learned a nice fact about Object.create: using null as the only argument to create an ultra-vani
Ajax File Upload With Client Side Validation
(girishmeena) I am writing this article because it has all the information to kick-start your file upload functionality using Ajax – file upload, client-side validation for type of extension allowed, maximum upload size, preview functionality for your uploaded images.
How To Export HTML Table To Excel Using jQuery Plugin
(Nikunj Satasiya) This example shows how to export an HTML table to an Excel sheet using jquery table2excel plugin.