Skip to content

Instantly share code, notes, and snippets.

View meriouma's full-sized avatar

Maxime Meriouma-Caron meriouma

View GitHub Profile

Keybase proof

I hereby claim:

  • I am meriouma on github.
  • I am mmeriouma (https://keybase.io/mmeriouma) on keybase.
  • I have a public key ASCuDOZbzTmeoPl2Y2SCv5GodbvQqvn4Sz5OsiAOEYoARQo

To claim this, I am signing this object:

@meriouma
meriouma / fencedblock.md
Last active August 29, 2015 14:13
Fenced block nested numbered
  • Test
    1. Test 1

      This is a code block
      
    2. Test 2

  1. Test 3
@meriouma
meriouma / pom.xml
Created October 24, 2013 19:16
Maven gae-plugin
<plugin>
<groupId>net.kindleit</groupId>
<artifactId>maven-gae-plugin</artifactId>
<version>0.9.6</version>
<dependencies>
<dependency>
<groupId>net.kindleit</groupId>
<artifactId>gae-runtime</artifactId>
<version>1.8.6</version>
<type>pom</type>
@meriouma
meriouma / gist:6832856
Created October 4, 2013 21:12
Annotation processing
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>${maven-processor-plugin.version}</version>
<executions>
<execution>
<id>process</id>
<goals>
<goal>process</goal>
</goals>
@meriouma
meriouma / HomeView.ui.xml
Created July 18, 2013 18:47
GWT and CSS3 Media queries
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'>
<ui:with field="res" type="com.project.client.resource.Resources"/>
<g:HTMLPanel>
<div class="{res.styles.mainContent} {res.mobileStyles.mainContent}">
Some content
</div>
</g:HTMLPanel>