User:Digimer: Difference between revisions

From Alteeve Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 20: Line 20:
|-
|-
|style="width: 33%; border: 1px solid #dfdfdf;"| [[3+ Node CentOS5 Cluster + SoftSAN]]<br />'''''Not Started Yet'''''<br />How to build a 3+ Node Cluster using a home-brew iSCSI/SAN server on CentOS 5
|style="width: 33%; border: 1px solid #dfdfdf;"| [[3+ Node CentOS5 Cluster + SoftSAN]]<br />'''''Not Started Yet'''''<br />How to build a 3+ Node Cluster using a home-brew iSCSI/SAN server on CentOS 5
|style="width: 34%; border: 1px solid #dfdfdf;"| &nbsp;
|style="width: 34%; border: 1px solid #dfdfdf;"| [[Setting Up Multilink PPP on Fedora 13]]
|style="width: 33%; border: 1px solid #dfdfdf;"| [[Postfix + Postgrey + PostgreSQL on Debian|Postfix + Postgrey + PostgreSQL]]<br />'''''Not Started Yet'''''<br />Multi-domain, PgSQL authenticated mail server
|style="width: 33%; border: 1px solid #dfdfdf;"| [[Postfix + Postgrey + PostgreSQL on Debian|Postfix + Postgrey + PostgreSQL]]<br />'''''Not Started Yet'''''<br />Multi-domain, PgSQL authenticated mail server
</source>
</source>

Revision as of 04:10, 22 October 2010

 AN!Wiki :: Digimer

Me

Digimer <- about me.

This page below is my scratch pad.

Sandbox

I ask people questions here.

  • 2-Pin Bi-colour LED circuit, try 1.

Papers to write

I took these off the front page until I am actually ready to start them.

|-
|style="width: 33%; border: 1px solid #dfdfdf;"| [[3+ Node CentOS5 Cluster + SoftSAN]]<br />'''''Not Started Yet'''''<br />How to build a 3+ Node Cluster using a home-brew iSCSI/SAN server on CentOS 5
|style="width: 34%; border: 1px solid #dfdfdf;"| [[Setting Up Multilink PPP on Fedora 13]]
|style="width: 33%; border: 1px solid #dfdfdf;"| [[Postfix + Postgrey + PostgreSQL on Debian|Postfix + Postgrey + PostgreSQL]]<br />'''''Not Started Yet'''''<br />Multi-domain, PgSQL authenticated mail server

Code Dump

AVR from CLI

perl -MDevice::SerialPort -e 'Device::SerialPort->new("/dev/ttyUSB0")->pulse_dtr_on(1000)'; \
./hardware/tools/avrdude -Chardware/tools/avrdude.conf -q -q -pm328p -cstk500v1 -P/dev/ttyUSB0 -b57600 -D -Uflash:w:/home/pekka/sketchbook/Blink2/applet/Blink2.hex;

Mux/Demux

                                                                        <- Outputs ->
         1   2   3   4   5   6   7   8   9   10  11  12  13  14  15  16               17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32
         |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |                |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |
        -+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+-              -+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+-
S0 ----/                                                               \     S0 ----/                                                               \
S1 ---/                                                                 \    S1 ---/                                                                 \
S2 --/                                                                   \   S2 --/                                                                   \
S3 -/                                                                     \  S3 -/                                                                     \
   /_______________________________________________________________________\    /_______________________________________________________________________\
                                       |                                                                            |
                                       \-----------------------------------.   .------------------------------------/
                                                                           |   |
                                                                          -+---+-
                                                                     S4 -/       \
                                                                        /_________\
                                                                             |
                                                                           Input
S0-S5 = Source pins

Research

MediaWiki on Debian/PostgreSQL

MediaWiki on CentOS/MySQL

Bath Bookshelf


Misc

      • Madi: Look up [1] when you get home!

Main Links

T400s

Node Assassin

Red Hat Clustering

Sample Xen 2-node Cluster Network Map

MW Code Testing

Indent
Pretext
package AN::Tools;
# This is the "root" package that manages the sub modules and controls access
# to their methods.
# 
# Dedicated to Leah Kubik who helped me back in the early days of TLE-BU.
# 

BEGIN
{
	our $VERSION="0.1.001";
}

use strict;
use warnings;
my $THIS_FILE="Tools.pm";

# Setup for UTF-8 mode.
use utf8;
$ENV{'PERL_UNICODE'}=1;

Test while (1) { code... } span.

Code Debugging

#include <Ethernet.h>

// MAC Address; Array of six bytes.
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xEF };
// Arduino IP, netmask and gateway.
byte ip[] = { 192, 168, 1, 66 };
// Netmask defaults to 255.255.255.0.
byte nm[] = { 255, 255, 255, 0 };
// Default gateway defaults to IP with the last octal set to 1.
byte dg[] = { 192, 168, 1, 1 };
// Laptop's IP address that I test connecting to.
byte remote[] = { 192, 168, 1, 105 };
// This is the port that I will listen on.
int port=238;

// Setup the server.
Server server = Server(port);

void setup()
{
	// Setup the IP info.
	Ethernet.begin(mac, ip, dg, nm);
	
	// Start the server listening for connections.
	server.begin();
	
	// Print what comes in over telnet.
	Serial.begin(9600);
	Serial.println("Node Assassin: 'Ariel' now listening for orders.");
}

void loop()
{
	Client client=server.available();
	if (client)
	{
		char reading = client.read();
		// This is what I am trying to concatenate and to print as a whole line.
		Serial.println(reading);
		server.write(reading);
	}
}

Doorbot UTF8 Test

Doorbot UTF8 Test - ドアボト語テスト  

Any questions, feedback, advice, complaints or meanderings are welcome.
Alteeve's Niche! Enterprise Support:
Alteeve Support
Community Support
© Alteeve's Niche! Inc. 1997-2024   Anvil! "Intelligent Availability®" Platform
legal stuff: All info is provided "As-Is". Do not use anything here unless you are willing and able to take responsibility for your own actions.