IBM Creates the Most Detailed Map of the Brain To Date

IBM Creates the Most Detailed Map of the Brain To Date

IBM Creates the Most Detailed Map of the Brain To DateIn a paper published earlier this week, IBM researchers made huge strides in mapping the architecture of the brain, charting three times as many connections as any previous study. Where does such a map lead? The future of cognitive computing.

Specifically, the study traced long-distance connections in the brain of a Macaque monkey, the "interstate highways" which transmit information between distant areas of the brain. Said one of the researchers:

We can now gain unprecedented insight into how information travels and is processed across the brain...a stepping stone to both fundamental and applied research in neuroscience and cognitive computing.

Their map depicts 6,602 long-distance connections between 383 different regions of the brain, allowing researchers to grasp how and where the brain sends information better than ever before.

Such data will allow scientists to more accurately perform theoretical analysis—the same type of projections that optimize search engines or track social networks—which will be essential in developing computer chips that can keep up with our brain's immense computational power and navigate its complex architecture.

And of course it's fairly mindblowing to remind yourself that all of this work is being done to chart the vast, mysterious region existing inside your noggin right now. [KurzweilAI]

Nagios + Nagvis + Check MK install script

Nagios_logo
I was working on an install script for Nagios (Working through the bugs) when I found Check_MK's install script. See http://mathias-kettner.de/check_mk

Anyway its a much cleaner & tested script that works great and includes Check_MK

Check_mk adopts a new a approach for collecting data from operating systems and network components. It obsoletes NRPE, check_by_ssh, NSClient and check_snmp. It has many benefits, the most important of which are:

  • Significant reduction of CPU usage on the Nagios host.
  • Automatic inventory of items to be checked on hosts.

The larger your Nagios installation is, the more important get these points. In fact check_mk enables you to implement a monitoring environment exceeding 20.000 checks/min on the first hand.

Install Procedure

Download and install Debian 5 Net install:

http://cdimage.debian.org/debian-cd/5.0.5/i386/iso-cd/debian-505-i386-netinst...

Install as normal,

Login as root

#> mkdir nagios

#> wget http://mathias-kettner.de/download/install_nagios-1.1.7i1.sh

#> chmod 777 install_nagios-1.1.7i1.sh

#> ./install_nagios-1.1.7i1.sh

Go through the prompts and thats it, Nagios + Nagvis + Check_MK installed and ready to configure

(download)

AS400 Overlays - Printing with Overlays

Adding overlays to an AS400, great for replacing pre-printed paper - Its a pain to get going but like everything once you can map it out in your head its easy.

Prepare the AS400

1. Setup an Overlay Library > CRTLIB

2. Create a physical file to contain the PC overlay file (You only need to do this once)

> CRTPF FILE(OVERLAY/INVOICES) RCDLEN(32766) TEXT('INVOICE OVERLAYS') MAXMBRS(*NOMAX) LVLCHK(*NO)

Creating and Setting the Overlay

1. Download and extract the AFP printer drivers http://www-01.ibm.com/support/docview.wss?uid=psd1P4000187

2. Setup a new printer using the drivers you downloaded - Select "Print to File" as the port --> Click have disk and point to the AFP drivers from step 1. Now select IBM AFP 144,240,300 or 600 the number correspond to the DPI of the printed document - 600 is fine for local printing but if you are pushing overlays over WAN links then pay careful attention to the final file size (E.g. A invoice overlay I made is 177KB using the 240DPI and 1.2mb using 600DPI)

3. Create your overlay - I use Adobe Fireworks but whatever you prefer.

4. On XP --> Right click the final file and print (The Default XP print wizard) select your AFP printer and input the file name (For this example we'll use "invoice.oly". The file will generate to your profile folder c:\Documents and Settings\%username%\

5. Upload the file to a dir on your AS400 - You can ftp it or use iSeries Navigator (I'm using a folder call "overlays")

Iseries_nav
6. Now signon as QSECOFR and run

> CPYFRMPCD

Cpyfrmpcd

> CRTOVL

Crtovl
Ok thats it you have setup an overlay for use in your program or *outq

If you have exsisting print queues and the overlay isn't printing then check its setup as *AFPDS and not *SCS

There is loads of details in this PDF: http://joekane.eu/as400-printing-direct-to-ip-printer

Best of luck and enjoy.

 

Fiddler Web Debugger - A free web debugging tool

Fiddlerlogo

What is Fiddler?

Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.

Fiddler is freeware and can debug traffic from virtually any application, including Internet Explorer, Mozilla Firefox, Opera, and thousands more.

Excellent tool, want to monitor every request when loading a webpage - great for debugging slow loading sites.