Skip to content

Instantly share code, notes, and snippets.

View ashishtomer's full-sized avatar
💭
Get busy living or get busy dying.

Ashish Tomer ashishtomer

💭
Get busy living or get busy dying.
  • Bengaluru
View GitHub Profile
@fernandezpablo85
fernandezpablo85 / git-maven-howto.md
Last active April 16, 2024 17:02
how to create your own maven repository on github

How to create a maven repository for your github project step by step

Clone your project in a separate folder

(note: replace ORGANIZATION and PROJECT)

git clone git clone git@github.com:ORGANIZATION/PROJECT.git my-repository

Cd into it

@JaiHirsch
JaiHirsch / GradesCodec.java
Created March 29, 2015 16:51
MongoDB 3.0 java driver Codec example - Codec class for the mapping the Grades bean
package org.scratch;
import org.bson.BsonReader;
import org.bson.BsonString;
import org.bson.BsonValue;
import org.bson.BsonWriter;
import org.bson.Document;
import org.bson.codecs.Codec;
import org.bson.codecs.CollectibleCodec;
import org.bson.codecs.DecoderContext;