Skip to content

Instantly share code, notes, and snippets.

@itzdilip
itzdilip / vim_cheatsheet.md
Created January 4, 2016 05:18 — forked from awidegreen/vim_cheatsheet.md
Vim shortcuts

Introduction

  • C-a == Ctrl-a
  • M-a == Alt-a

General

:q        close
:w        write/saves
:wa[!]    write/save all windows [force]
:wq       write/save and close
@itzdilip
itzdilip / proxy
Created January 2, 2014 03:37
Sample code for Using Jersey in building the REST services Using standards, Writing unit test cases using jersey Test framework for REST service Resources, Using excepting mapping for jersey service, Hateoas support in building the REST services using jersey(1.17), Jersey client behind the proxy, Spring, Maven,
package com.jodicloud.common.util;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.client.apache.ApacheHttpClient;
import com.sun.jersey.client.apache.config.DefaultApacheHttpClientConfig;