Skip to content

Instantly share code, notes, and snippets.

@thatkookooguy
thatkookooguy / user.css
Last active January 28, 2016 08:12
This will make tty.js open up a terminal in fullscreen after a user connects & change the background color to the default purple. This should be added to tty.js/static/
.terminal {
background-color: #300A24 !important;
}
@edewit
edewit / windows.md
Last active August 29, 2015 14:04

##Toast Notifications

toast specs.

{
    "title" : "The title",
    "alert" :"HELLO!",
    "duration" : "short|long",
    "launch" : {
        "type": "toast",
@lfryc
lfryc / richwidgets-release-process.adoc
Last active December 29, 2015 05:49
Draft of RichWidgets release process

Prerequisites

Environment

Node

0.10.21

Notify Development Team

@sukharevd
sukharevd / wildfly-install.sh
Last active July 2, 2024 07:55
Script to install JBoss Wildfly 10.x as service in Linux
#!/bin/bash
#title :wildfly-install.sh
#description :The script to install Wildfly 10.x
#more :http://sukharevd.net/wildfly-8-installation.html
#author :Dmitriy Sukharev
#date :2016-06-18T02:45-0700
#usage :/bin/bash wildfly-install.sh
#tested-version1 :10.0.0.CR3
#tested-distros1 :Ubuntu 15.10; Debian 7,8; CentOS 7; Fedora 22
#tested-version2 :10.0.0.Final
@aslakknutsen
aslakknutsen / ConferenceResourceTestCase.java
Created April 19, 2013 08:41
Warp + REST + Rest Assured
package org.ced.web.rest.conference.test;
import static com.jayway.restassured.RestAssured.given;
import static org.hamcrest.Matchers.equalTo;
import java.io.File;
import java.net.URL;
import java.util.Date;
import org.ced.domain.Repository;