Skip to content

Instantly share code, notes, and snippets.

View alvarosanchez's full-sized avatar

Álvaro Sánchez-Mariscal alvarosanchez

View GitHub Profile

Keybase proof

I hereby claim:

  • I am alvarosanchez on github.
  • I am alvarosanchezm (https://keybase.io/alvarosanchezm) on keybase.
  • I have a public key ASDHdSbmKGkwrkOE930fQov54slbk8ntsyNzYbDXuKxfjQo

To claim this, I am signing this object:

Greach 2019 awesome list

What is this?

A compilation of all the links to slides and repositories used in workshops or shown by the speakers.

Why

It can be difficult to retrieve all that material on twitter after the conference.

Contents

Greach 2018 awesome list

What is this?

A compilation of all the links to slides and repositories used in workshops or shown by the speakers.

Why

It can be difficult to retrieve all that material on twitter after the conference.

Contents

package com.odobo.gr8conf
import spock.lang.Ignore
import spock.lang.Shared
import spock.lang.Specification
import wslite.rest.ContentType
import wslite.rest.RESTClient
import wslite.rest.Response
import com.odobo.gr8conf.Category
import com.odobo.gr8conf.Game
import org.springframework.security.core.authority.SimpleGrantedAuthority
import org.springframework.security.core.userdetails.User
import org.springframework.security.core.userdetails.UserDetails
import org.springframework.security.provisioning.UserDetailsManager
class BootStrap {
UserDetailsManager userDetailsService
package com.odobo.gr8conf
import grails.converters.JSON
import org.codehaus.groovy.grails.web.json.JSONElement
import spock.lang.Ignore
import spock.lang.Shared
import spock.lang.Specification
import wslite.rest.ContentType
import wslite.rest.RESTClient
import wslite.rest.RESTClientException
@alvarosanchez
alvarosanchez / CategorySpec.groovy
Created June 2, 2014 02:14
CategorySpec.groovy
package com.odobo.gr8conf
import spock.lang.Shared
import spock.lang.Specification
import wslite.rest.ContentType
import wslite.rest.RESTClient
import wslite.rest.RESTClientException
import wslite.rest.Response
JSON.registerObjectMarshaller(Game) { Game game ->
[
id: game.id,
name: game.name,
categories: game.categories
]
}
JSON.registerObjectMarshaller(Category) { Category category ->
[
package com.odobo.gr8conf
import spock.lang.Shared
import spock.lang.Specification
import wslite.rest.ContentType
import wslite.rest.RESTClient
import wslite.rest.Response
class CategorySpec extends Specification {
package com.odobo.gr8conf
import grails.rest.RestfulController
import grails.transaction.Transactional
@Transactional(readOnly = true)
class CategoryController extends RestfulController {
static responseFormats = ['json', 'xml']