Skip to content

Instantly share code, notes, and snippets.

View hanna-eismant's full-sized avatar
💭
I may be slow to respond.

Hanna Kurhuzenkava hanna-eismant

💭
I may be slow to respond.
View GitHub Profile
@gdenning
gdenning / CustomerDaoImpl.java
Created February 29, 2012 22:58
How to configure OpenJPA using Spring 3 with Annotation-Based Transactions
package com.sample.dao.impl
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;
@subfuzion
subfuzion / gist:1128192
Created August 5, 2011 18:37
Git Tips: Reset, Clean - Remove untracked files and directories from the working tree when switching branches or checking out different commits.
git reset --hard
git clean -f -d
Description:
============
Git Tips: Remove untracked files and directories from the working
tree when switching branches or checking out different commits.
Explanation: