23/11/2016
--- Freelance Bidder ---
Company: Apperstech
Looking for a female freelancer, who can bid on projects any time from home no specific timing restriction .. once we get project she can get 10% of the project amount
Requirements:
Excellent English
Good communication skills
after 1 or 2 months on the basis of her performance, she would get 15%-20% on each project
it is a startup company
for more information kindly visit this page https://www.facebook.com/APPERStech/ and inbox your cv at facebook
shortlisted candidate should call for an online interview via Skype
Appers Tech
"Your Problems. Our Solutions"
Single Solution Of All Your Business Needs:
- Information Technology Services
- Computer Maintenance & Equipment
11/10/2016
To Find a job
https://www.facebook.com/jobhunterspakistan/?fref=ts
Job Hunters Pakistan
place where you can find a job related to your fields , example IT experts , Software enginners, web developers, android developers, IOS developers etc
01/05/2016
Where Not to Use Node.js?
It is not advisable to use Node.js for CPU intensive applications
01/05/2016
Where to Use Node.js?
Following are the areas where Node.js is proving itself as a perfect technology partner.
I/O bound Applications
Data Streaming Applications
Data Intensive Real time Applications (DIRT)
JSON APIs based Applications
Single Page Applications
01/05/2016
Who Uses Node.js?
Following is the link on github wiki containing an exhaustive list of projects, application and companies which are using Node.js. This list includes eBay, General Electric, GoDaddy, Microsoft, PayPal, Uber, Wikipins, Yahoo!, and Yammer to name a few.
01/05/2016
Following are some of the important features that make Node.js the first choice of software architects.
Asynchronous and Event Driven All APIs of Node.js library are asynchronous that is, non-blocking. It essentially means a Node.js based server never waits for an API to return data. The server moves to the next API after calling it and a notification mechanism of Events of Node.js helps the server to get a response from the previous API call.
Very Fast Being built on Google Chrome's V8 JavaScript Engine, Node.js library is very fast in code ex*****on.
Single Threaded but Highly Scalable - Node.js uses a single threaded model with event looping. Event mechanism helps the server to respond in a non-blocking way and makes the server highly scalable as opposed to traditional servers which create limited threads to handle requests. Node.js uses a single threaded program and the same program can provide service to a much larger number of requests than traditional servers like Apache HTTP Server.
No Buffering - Node.js applications never buffer any data. These applications simply output the data in chunks.
License - Node.js is released under the MIT license
01/05/2016
Node.js is a platform built on Chrome's JavaScript runtime for easily building fast and scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.
16/02/2016
APPERS Tech | 2nd Startup Expo 2016
APPERS Tech was founded recently in October 2015. We started with a slogan ‘Your Problems. Our Solutions’. And the mission is to provide solutions of all the business related needs at one place. We are offering different services; Our Services Shelf includes Web Development, Web Designing, Software…
05/08/2015
solution For All problem
Like it
https://www.facebook.com/hashtechsol
Hash-Tech Solutions
Hash-Tech Solutions is here to solve your every virtual problem.
Check us out at www.hashTechsol.com
10/05/2015
java servlet Code #1 add tw0 numbers using servlet
servlet class
package servletPackage;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class Servelet
*/
("/Servelet")
public class Servelet extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* HttpServlet ()
*/
public Servelet() {
super();
// TODO Auto-generated constructor stub
}
/**
* Servlet (ServletConfig)
*/
private String message ;
public void init(ServletConfig config) throws ServletException {
// TODO Auto-generated method stub
message= "hello ";
}
/**
* Servlet ()
*/
public void destroy() {
// TODO Auto-generated method stub
}
/**
* HttpServlet (HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
response.setContentType("text/html");
PrintWriter out = response.getWriter();
String n1=request.getParameter("num1");
String n2=request.getParameter("num2");
int a = Integer.parseInt(n1);
int b = Integer.parseInt(n2);
int result = a+b;
out.println( "the result of "+a+" and "+b+" is "+result );
}
/**
* HttpServlet (HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
}
}
html view
First Servelet