Java and Technology Updates (JTU)

Java and Technology Updates (JTU) Java is a programming language originally developed by James Gosling at Sun Microsystems (which has

29/05/2024

I had a page almost 10K followers, unfortunately I have lost the admin access, how to gain admin access again?

24/12/2014
21/08/2014

Difference Between UI, UX and Application Developer.

Its obvious question when people are getting confused between these. So I want to clear the term so that we can understand the proper meaning-
UI developer means User Interface i.e. Design with HTML, CSS & JavaScript.
UX developer means User Experience designer i.e. Design with research. It means UX developer's first job is to find what the user actually like and want to see in the webpages. Depending upon the user interest developer decide the proper design.
And the last one Application Developer means Back end coding along with HTML, Java Script and CSS.
So we can summarize these with the following terms-

UX Designer = Research + Design
UI Developer = Design + HTML/CSS/JS
Application Developer = Back-End coding + HTML/CSS/JS etc.

Apple to release free public beta of OS X 10.10 tomorrow :) :) :)Earlier this year, when Apple announced OS X 10.10, the...
24/07/2014

Apple to release free public beta of OS X 10.10 tomorrow :) :) :)

Earlier this year, when Apple announced OS X 10.10, they said that there would be a free beta for the OS. Starting tomorrow, if you have signed up for the beta program, you will be able to download the bits in the afternoon.
Apple said says that this public beta will not be updated as frequently as the private beta for developers, this likely means that only stable releases will be part of the public beta.

If you want to be part of the beta and you haven't signed up yet, make sure to go here and register for the preview release. Apple is only letting 1 million users try out the beta, so you better act quickly if you have not done so already.

Once registered, Apple will send out a notification to those users when the beta is ready for distribution; this will be around 1 P.M. ET / 10 A.M. PT. As with any beta, even though this is a public release, you should avoid installing the software on a production machine.

With that caveat, we have been using the most recent developer preview for a few days and it is stable. There are a few graphical bugs here and there and occasionally an app will lock up, but for the most part, it runs quite well.

14/03/2014

Five Reasons ASP.NET Developers Should Care About Node.js
1. Node is a fast, lightweight means to serve static content + JSON

As browser capabilities and JavaScript VMs have improved over the last several years, we’ve seen a steady movement of “application behavior logic” (not necessarily the same thing as business logic) from the server to the client. Where the traditional approach has been to consume server resources to dynamically generate HTML and push it to the browser (Web Forms, Razor, etc.), in the interest of performance and scale (and continuing comfort with JavaScript as an application platform unto itself) we increasingly offload dynamic UI behaviors to the browser through manipulation of “static” HTML via CSS and JavaScript, backfilled by JSON data from the server. Thus today’s web server has comparatively less work to do than yesterday’s… which makes Node’s lightweight model a potentially attractive alternative to ASP.NET’s more heavyweight, prescriptive model that came of age when server-side rendering was state-of-the-art. Ask yourself… if you’re primarily serving static HTML, CSS, and JavaScript files + JSON data from REST endpoints, do you really need ASP.NET for that?

2. Node is a great choice for teams with extensive JavaScript skills investments

Certainly if you’re a .NET developer then you’ve invested heavily in the Microsoft stack and the requisite skillsets to maximize that. But the days of the monochromatic enterprise are gone, and even we C # diehards have had to (sometimes grudgingly Smile) bolster our JavaScript skills in order to stay current. If your team is staffed with a bunch of JS rockstar-ninja-samauri-megacoders then by all means take a closer look at Node for your next project. The ability to share tribal wisdom, libraries, and best practices across your entire application codebase and team is very powerful. Ironically we’ve been there before in the not-too-distant past… this time it appears we’ll have a different outcome.

3. Node integrates very nicely with Visual Studio

In November 2013 Microsoft released the Node.js Tools for Visual Studio, which do exactly what you’d expect from the name… provide an integrated development and (importantly) debugging experience for Node applications, right inside VS.NET. You get breakpoints, variable values, call stacks, editor niceties, NPM integration (NPM is NuGet for Node, in essence), and more. It’s an alpha release, but very usable. Especially if you’re planning to continue .NET development in addition to exploring Node, I highly recommend it.

4. Node has a burgeoning ecosystem for Windows and .NET integration

As a long-time .NET developer, this has been the most pleasant surprise (and my favorite part) of getting to know Node. There are a handful of Node modules (opt-in extensions and frameworks that augment Node’s core behaviors) that make transitioning from .NET to Node less painful, even comfortable. If you know .NET and you’re getting to know Node, make time for these as well. In no particular order:

iisnode – This module allows you to host Node applications inside IIS on Windows (Node still runs in its own process(es) so it’s not quite “inside”). This conveys several useful advantages to your Node apps… IIS process lifetime management, support for web gardens (important for scaling Node on multi-core machines), integrated security, etc.

httpsys – This is a drop-in replacement for Node’s built-in HTTP stack. It utilizes the kernel-mode http.sys driver in Windows to provide increased performance and kernel-level output caching (among others). Not compatible with iisnode (so, useful for self-hosted Node apps on Windows).

node-sqlserver – A module developed by the Azure team at Microsoft for querying against local or cloud-based SQL Server instances, from within a Node app. Not as wrist-friendly as Entity Framework Smile but certainly gets the job done.

passport-windowsauth – This module provides Integrated Windows authentication for Node applications, similar to the traditional integrated auth experience in ASP.NET. It also does forms-based authentication. It depends upon the passport.js Node authentication module.

TypeScript – Not a Node module per-se, but its worth noting that TS provides a great experience for building and maintaining Node applications. Especially useful for C # devs moving to Node and struggling to build out large-ish codebases.

edge – Edge.js is my favorite module for Node/.NET integration. Edge allows you to call virtually any arbitrary .NET code from within a Node application. Any .NET code you can shoehorn into an async delegate is usable. This is great for integrating with existing .NET code libraries… you can write new Node applications and still leverage valuable core business functionality written in .NET, without having to re-write it in JavaScript! Very powerful stuff. If you’re coming from .NET and going to Node, check it out.

5. Node works great with Windows Azure

Whether you’re talking about IaaS Virtual Machines or PaaS Web Sites or Cloud Services, Node.js deploys easily and runs great on the Azure cloud platform. To help you get started, the Azure folks provide a comprehensive, Node-centric overview on how to target the various platform services like Tables, Queues, Service Bus, etc. Node+Azure isn’t seen too often in the wild (at least in the enterprise arena that Wintellect occupies) but that’s a shame… it’s a very powerful combination. You get the simplicity of the Node app model with the feature set and dynamic performance and scale of a major cloud infrastructure. What’s not to like about that? Oh, and by the way… Microsoft themselves liked Node well enough that they based their initial Azure Mobile Services infrastructure on it (they’ve since implemented a .NET version, as well).

14/07/2013

What is JSF ?
- JSF stands for Java Server Faces. It is Java based web application framework. It simplifies the development of user interface of Java EE application.
- JSF uses JSP i.e. Java Server Pages for its display technology.
- It simplifies building user interface for Java Server Application. Developers of various skill levels can quickly build web applications by: assembling reusable UI components in a page; connecting these components to an application data source; and wiring client-generated events to server-side event handlers.
- JSF is a part of the Java EE standards.
- A JSF application run on a standard web container e.g. TOMCAT

19/09/2012

Microsoft has decided is enough is enough: Java-based malware sees no end and it's time to do something about it. The software giant points to two type-confusion vulnerabilities (CVE-2012-0507 and CVE-2012-1723 ) that have been very actively exploited in recent months. Redmond thus wants you to do one of three things: update Java, disable it, or uninstall it.
First, some background. Type-confusion vulnerabilities are effective because they lead to a Sandbox compromise for Java. They occur when the type safety check in Java Runtime Environment (JRE) fails to verify wrong types supplied to instructions working with different types. If the classes' type safety is broken, you can access some methods that are not supposed to be opened to processes outside of the class.
As a result, Microsoft's first recommendation is to update your Java installation. To check the version of JRE your browser is running, head over to java.com/en/download/installed.jsp and get the latest version.

Address

Bangalore

Website

Alerts

Be the first to know and let us send you an email when Java and Technology Updates (JTU) posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Java and Technology Updates (JTU):

Share