http://www.bredemeyer.com/links.htm
http://perfwork.wordpress.com/
http://blog.8thlight.com/uncle-bob/2012/08/13/the-clean-architecture.html
http://en.wikipedia.org/wiki/4%2B1_architectural_view_model
http://epf.eclipse.org/wikis/openup/core.tech.common.extend_supp/guidances/examples/four_plus_one_view_of_arch_9A93ACE5.html
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
# | |
# Created by Takashi Aoki | |
# | |
TARGET = $(shell basename `pwd`) | |
CC = g++ | |
CFLAGS = -MMD -MP | |
INCLUDE = -I./src | |
ODIR = obj |
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
#!/usr/bin/ruby | |
file = IO.read("src/embs/Sink.java") | |
sinks_choice = [] | |
sinks_choice << [ | |
{:id=>1, :channel=>0, :panid=>11, :n=>10, :t=>500, :start=>300}, | |
{:id=>2, :channel=>1, :panid=>12, :n=>4, :t=>700, :start=>300}, | |
{:id=>3, :channel=>2, :panid=>13, :n=>5, :t=>1500, :start=>300}] |