This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/sh | |
set +o noclobber | |
# | |
# $1 = scanner device | |
# $2 = friendly name | |
# | |
# | |
# 100,200,300,400,600 | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
############################################################################### | |
# Copyright (C) 2005 Francois COJEAN | |
# Copyleft 2007 Sun Seng David TAN | |
# This program is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU General Public License | |
# as published by the Free Software Foundation; either version 2 | |
# of the License, or (at your option) any later version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Copyright 2014, Sun Seng David TAN <[email protected]> | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# This program is distributed in the hope that it will be useful, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Reuse codenvy/jdk7 existing image | |
FROM codenvy/jdk7 | |
#Get Tomcat-8.0.14 and install it | |
RUN mkdir /home/user/tomcat8 && \ | |
wget -qO- "http://mirrors.ircam.fr/pub/apache/tomcat/tomcat-8/v8.0.18/bin/apache-tomcat-8.0.18.tar.gz" | tar -zx --strip-components=1 -C /home/user/tomcat8 && \ | |
rm -rf /home/user/tomcat8/webapps/* | |
#Exposing ports | |
EXPOSE 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name" : "Getting Started with Codenvy", | |
"hasWelcomeStep" : true, | |
"steps": [ | |
{ | |
"title": "Getting Started with Codenvy.", | |
"content": "Codenvy is a crazy fast, no-thrashing cloud IDE. Craft your finest code then command Docker-based microservices to build, run and debug from anywhere.\n\nThis tour introduces Codenvy's Contribution flow.", | |
"element": "gwt-debug-MainToolbar/runApp-true", | |
"placement": "BOTTOM", | |
"xOffset": "200", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM codenvy/jdk7 | |
# Install Tomcat8 | |
RUN mkdir /home/user/tomcat8 && \ | |
wget -qO- "http://archive.apache.org/dist/tomcat/tomcat-8/v8.0.23/bin/apache-tomcat-8.0.23.tar.gz" | tar -zx --strip-components=1 -C /home/user/tomcat8 && \ | |
rm -rf /home/user/tomcat8/webapps/* | |
EXPOSE 8080 | |
ENV CODENVY_APP_PORT_8080_HTTP 8080 | |
WORKDIR /home/user/tomcat8/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines or lines starting with space in the history. | |
# See bash(1) for more options | |
HISTCONTROL=ignoreboth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defscrollback 8192 | |
startup_message off | |
vbell off | |
caption always "%{+u wk}%?%-w%?%{rk}/%n %t\%{wk}%?%+w%?" | |
hardstatus alwayslastline "%{+b kw}%H|%{kg}%c%{kw}|%{ky}%Y-%m-%d%{kw}|%{kb}load %l" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name" : "Contribute blog.sunix.org", | |
"hasWelcomeStep" : true, | |
"steps": [ | |
{ | |
"title": "Contribute to blog.sunix.org with Codenvy", | |
"content": "Thank you for contribuing to my blog, this is a temporary workspace with the github pages project blog.sunix.org checked out. You can help me in improving my blog site, make your changes and submit the pull request with the Pull Request tab on the right.", | |
"element": "gwt-debug-MainToolbar/New", | |
"placement": "BOTTOM", | |
"xOffset": "500", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM sunix/jekyll4che | |
ENV CODENVY_APP_BIND_DIR /home/user/app | |
VOLUME ["/home/user/app"] | |
USER root | |
WORKDIR /home/user/app | |
CMD echo 'url: "http://'$CODENVY_HOSTNAME':'$CODENVY_PORT_4000'"' >> _config.yml && \ | |
echo 'baseurl: ""' >> _config.yml && \ |
OlderNewer