start new:
tmux
start new with session name:
tmux new -s myname
<!-- Hibernate Statistics Monitoring --> | |
<!-- Publishing session factory to be able view statistics --> | |
<bean id="sessionFactory" factory-bean="entityManagerFactory" | |
factory-method="getSessionFactory" /> | |
<bean id="hibernateStatisticsMBean" class="org.hibernate.jmx.StatisticsService"> | |
<property name="sessionFactory" ref="sessionFactory" /> | |
</bean> | |
<bean id="mbeanExporter" class="org.springframework.jmx.export.MBeanExporter"> | |
<property name="beans"> |
Ext.define('Rima.controller.User', { | |
extend:'Ext.app.Controller', | |
views:[ 'user.List', 'user.Edit' ], | |
allowWrite:Rima.util.SecurityHelper.isWriteAllowed("USER_WRITE"), | |
models:[ 'User', 'Jabatan', 'UnitSatuanKerja'], | |
stores:[ 'Users', 'Jabatan', 'UnitSatuanKerja'], | |
refs:[ | |
{ | |
ref:'userList', | |
selector:'userList' |
var script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'; | |
document.head.appendChild(script); |
var script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js'; | |
document.head.appendChild(script); | |
//===================================== | |
jQuery('header').remove(); | |
jQuery('div.row.clear-navbar').remove(); | |
jQuery('footer').remove(); | |
jQuery('.disqus').remove(); |
#Mengaktifkan di Terminal Console | |
#nano ~/.bashrc | |
#uncomment #force_color_prompt=yes | |
#Mengaktifkan di Guake | |
#$ echo $TERM | |
#$ dumb | |
#then, | |
#nano ~/.bashrc |
logs | |
# Eclipse Setting | |
/.metadata | |
/Servers | |
.settings | |
.project | |
.classpath | |
.buildpath | |
RemoteSystemsTempFiles |
<?xml version="1.0" encoding="windows-1252"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:aop="http://www.springframework.org/schema/aop" | |
xmlns:c="http://www.springframework.org/schema/c" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xmlns:flow="http://www.springframework.org/schema/webflow-config" | |
xmlns:jee="http://www.springframework.org/schema/jee" | |
xmlns:jms="http://www.springframework.org/schema/jms" | |
xmlns:lang="http://www.springframework.org/schema/lang" |
#!/bin/bash | |
IFS=$'\n' | |
for f in $(find $1 -type d ); do | |
echo $f | |
zip -r $f $f | |
#mv -f $f `echo $f | sed s/zip/cbz/` | |
done |
import org.springframework.context.ApplicationContext; | |
import org.springframework.context.support.ClassPathXmlApplicationContext; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: Deny Prasetyo | |
* Date: 4/2/13 | |
* Time: 11:00 PM | |
* To change this template use File | Settings | File Templates. | |
*/ |