Make a note of your computer's IP address; your_ip
.
Record the full path to your working copy, the parent of the .git
directory; repo_path
.
cd <repo_path>
touch .git/git-daemon-export-ok
/* | |
View: USER_SOURCE | |
Source of stored objects accessible to the user | |
---+--------+----------------+-------------------------------------------------------+ | |
# | column | type | remark | | |
---+--------+----------------+-------------------------------------------------------+ | |
1 | NAME | VARCHAR2(30) | Name of the object | | |
2 | TYPE | VARCHAR2(12) | Type of the object: "TYPE", "TYPE BODY", "PROCEDURE", | | |
| | | "FUNCTION", | | |
| | | "PACKAGE", "PACKAGE BODY" or "JAVA SOURCE" | |
#!/bin/bash | |
# http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&p=792113#792113 | |
# ".data+.bss+.noinit is the initial RAM allocation." | |
# AVR Memory Usage | |
# ---------------- | |
# Device: atmega328p | |
# | |
# Program: 12580 bytes (38.4% Full) |
#!/bin/bash | |
set -e | |
MCU="$1" | |
cat <<-'EOF' > foo.c | |
#include <avr/pgmspace.h> | |
unsigned char mydata[64][16] PROGMEM = | |
{ |
import org.springframework.jdbc.core.simple.SimpleJdbcDaoSupport; | |
import org.springframework.jdbc.core.simple.ParameterizedRowMapper; | |
import org.springframework.dao.DataIntegrityViolationException; | |
import java.sql.ResultSet; | |
import java.sql.SQLException; | |
import java.util.List; | |
import java.util.Date; |
#include "soft_serial.h" | |
#include <avr/io.h> | |
#include <avr/interrupt.h> | |
#include <util/delay.h> | |
#include <stdio.h> | |
#include <stdbool.h> | |
static volatile uint8_t data_byte; |
function RaphPoint(paper, lat, lon) { | |
var that = this; | |
that._paper = paper; | |
that._lat = lat; | |
that._lon = lon; | |
that._map = null; // provided via map() | |
that._el = that._paper.circle(0,0,5) | |
.attr("fill", "#223fa3") |
This is sample configuration to help you build a Vert.x "mod" archive. Put mod.xml
into your project as src/main/assembly/mod.xml
and the include the maven-assembly-plugin
plugin config in your pom.xml
. Also create src/main/resources/mod.json
. When you run mvn package
you will get target/${artifactId}-${version}-mod.zip
which will contain all of your dependencies in ${groupId}.${artifactId}-v${version}/lib
and ${groupId}.${artifactId}-v${version}/mod.json
. Your application code and resources will be in ${groupId}.${artifactId}-v${version}/lib/${artifactId}-${version}.jar
.
moved to blalor/package-manager-rosetta-stone!
#! /bin/bash | |
# | |
# requires: fpm, python-pip | |
# gem install fpm | |
# apt-get install python-pip | |
# | |
set -e |