View SimpleRedisClientExample.groovy
@GrabResolver(name='Maven Central', root='http://repo1.maven.org/') | |
@Grab(group='redis.clients', module='jedis', version='3.5.2') | |
import redis.clients.jedis.Jedis | |
import redis.clients.jedis.JedisPubSub | |
class DefaultPubSubImpl extends JedisPubSub { | |
@Override | |
public void onMessage(String channel, String message) { | |
println "channel: $channel, message: $message" |
View coherent-logic-jdataframe-example.groovy
@Grab('com.coherentlogic.rproject.integration.jdataframe:jdataframe-core:1.0.0-RELEASE') | |
@Grab('org.slf4j:slf4j-nop:1.8.0-beta4') | |
import com.coherentlogic.rproject.integration.dataframe.adapters.RemoteAdapter | |
import com.coherentlogic.rproject.integration.dataframe.domain.JDataFrame | |
import com.coherentlogic.rproject.integration.dataframe.builders.JDataFrameBuilder | |
def result = (String) new JDataFrameBuilder<String, Object[]>( | |
new JDataFrame<String, Object[]>(), | |
new RemoteAdapter<String, Object[]>() | |
) |
View ReadCopyBookAsJDataFrameBuilderExample.java
private JDataFrameBuilder<String, String[]> readCopyBookAsJDataFrameBuilder( | |
AbstractLineReader reader, | |
LayoutDetail layout, | |
String font, | |
IUpdateFieldName updateFldName | |
) throws IOException { | |
JDataFrameBuilder<String, String[]> result = | |
new JDataFrameBuilder<String, String[]>( | |
new JDataFrame<String, String[]>(), |
View infinispan-distributed-cache-example.groovy
@GrabResolver(name='JBoss Release Repository', root='https://repository.jboss.org/nexus/content/repositories/releases/') | |
@GrabResolver(name='JBoss.org Maven repository', root='https://repository.jboss.org/nexus/content/groups/public') | |
@GrabExclude(group = 'org.jboss.spec.javax.ws.rs', module='jboss-jaxrs-api_2.1_spec') | |
@GrabExclude(group = 'org.jboss.spec.javax.xml.bind', module='jboss-jaxb-api_2.3_spec') | |
@GrabExclude(group = 'org.jboss.spec.javax.servlet', module='jboss-servlet-api_3.1_spec') | |
@GrabExclude(group = 'javax.validation', module='validation-api') | |
@GrabExclude(group = 'org.jboss.spec.javax.annotation', module='jboss-annotations-api_1.2_spec') | |
@GrabExclude(group = 'net.jcip', module='jcip-annotations') | |
@GrabExclude(group = 'javax.activation', module='activation') |
View pagespeed.conf
<IfModule pagespeed_module> | |
<Location /wp-admin/> | |
ModPagespeed Off | |
</Location> | |
ModPagespeed On | |
ModPagespeedAllow all | |
ModPagespeedFetchHttps enable |
View main.go
/* To build: | |
* go get k8s.io/client-go/util/homedir | |
* go build main.go | |
* | |
* To run: | |
* ./main | |
*/ | |
package main | |
import "fmt" |
View nginx-hp-minimounted.yaml
apiVersion: v1 | |
kind: Pod | |
metadata: | |
creationTimestamp: null | |
labels: | |
run: nginx-minimounted | |
name: nginx-minimounted | |
namespace: myns | |
spec: | |
containers: |
View nginx-with-minimount-directory-mounted.yaml
apiVersion: v1 | |
kind: Pod | |
metadata: | |
creationTimestamp: null | |
labels: | |
run: nginx-minimounted | |
name: nginx-minimounted | |
namespace: myns | |
spec: | |
volumes: |
View minikube-restart.sh
minikube stop | |
minikube start --hyperv-virtual-switch "My Virtual Switch" --v=4 --mount --mount-string="/etc/minimount/:/etc/minimount" |
View components.yaml
# | |
# Jump to line ~ 141 to ~ 215 for the command that pertains to this change. | |
# | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
labels: | |
k8s-app: metrics-server | |
name: metrics-server | |
namespace: kube-system |
NewerOlder