Skip to content

Instantly share code, notes, and snippets.

View hellowin's full-sized avatar
:octocat:
Working from office

Andi N. Dirgantara hellowin

:octocat:
Working from office
View GitHub Profile
@raibima
raibima / injectLogger.js
Last active July 12, 2018 00:58
Simple component setState logger
// Usage
import React from 'react';
injectLogger(React.Component);
// You can also make it specific to just a component
class App extends React.Component {}
injectLogger(App);
// Injecting logger will add additional boolean param to setState.
// Set this to true to perform setState logging
@MethodGrab
MethodGrab / README.md
Last active February 22, 2023 14:15
Jenkins NodeJS Plugin: Missing nodejs.org installers

Jenkins NodeJS Plugin: Missing nodejs.org installers

Versions

  • Ubuntu 14.04 LTS x64
  • Java 1.7
  • Jenkins 1.639
  • NodeJS plugin 0.2.1
@nraychaudhuri
nraychaudhuri / PlayAkkaExample.scala
Last active April 19, 2018 09:23
Returning Play response from Akka actors without using ask
package controllers
import play.api.mvc._
import scala.concurrent._
import akka.actor.{Props, Actor}
import play.api.Play.current
import play.api.libs.concurrent.Akka
import scala.concurrent.ExecutionContext.Implicits._
object Application extends Controller {