Create a table to represent tree nodes.
CREATE TABLE `tree_node` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`data_body` text,
node_deleted datetime DEFAULT NULL,
| #!/bin/bash | |
| PROGNAME=${0##*/} | |
| INPUT='' | |
| QUIET='0' | |
| NOSTATS='0' | |
| max_input_size=0 | |
| max_output_size=0 | |
| usage() |
| #!/bin/bash | |
| # | |
| # Usage: git_files <BRANCH> | |
| # | |
| # Get all files created/changed in the BRANCH | |
| # | |
| git diff --stat `git merge-base master $1`..$1 |
| #!/usr/bin/perl -w | |
| # | |
| use strict; | |
| use feature ':5.10'; | |
| use utf8; | |
| use open qw(:std :utf8); | |
| use DDP; | |
| use Term::ANSIColor qw(:constants); | |
| $Term::ANSIColor::AUTORESET = 1; |
| package DenisYurashkuFindIndex; | |
| use strict; | |
| use utf8; | |
| sub new { | |
| my $invocant = shift; | |
| my $class = ref($invocant) || $invocant; | |
| my $self = {}; | |
| bless($self, $class); | |
| $self->{STEPS} = 0; |