Miscellaneous

Useful links: Electronics parts suppliers:

Useful info:

Feeds:

Antipasto Hardware

Arduinotronics

Youritronics

Embedds

CircuitDB

uC Blog

Adafruit Industries

Citizen Engineer

Open Source Torchris

PyroElectro

Earthshine Electronics Blog

DIY Blog

Hacked Gadgets

RepRap

Make

Tomi Engdahl

Science Blog

The AmpHour Podcast

EEV Podcast

Chris Gammell Analog Life

Open Energy Monitor

IKEA Hacker

DIY Computing

Barefoot Beekeeper

Homegrown Evolution

Borganic

Better Generation

Circuit Projects

Circuit Project Electronic

MintCast

CameraHacker

GPSy EV Project

EconTalk PodCasts

Phil McKinney

The Next Hope

Plugin Tests:

Run-up

Run-up

Run-up

The invasions prior, aufbau

Oster

Oster

Oster

In Without Enigma, Kenneth Macksey, (ISBN: 0711027668 / 0-7110-2766-8) strongly hints that Oster, possibly among German generals, was supplying information to the Allies. Macksey's references and those by Canaris' biographer suggest Oster was a go-between for the Allies and Canaris.

Agreements

Agreements

Agreements

Gold loan negotiation summer 1939. Ref: Lords of Finance? “If that reference was in Lords of Finance, it's as close as the book comes to touching on item 2 above. If I understand correctly, that allegedly never-signed agreement may have been later implemented by Norman's authorising the release of Austrian gold to the Nazis shortly after Anschluss - much to the Hansard-documented consternation of the Parliament's more naive members a few weeks later.” Various references relating to agreement negotiations involving Hess, check for any references to agreements involving Canaris' mentor. Military: various references to German offices thinking UK and Germany should quit fighting to unite against Russia

Financial Backings

Financial Backings

Financial Backings

Franco: poss in Philby books, poss online. Definitely in Papa Spy. Mussolini: 2009 news releases online, BBC brief discussion, Ref to rumours of backing in one of the Mussolini biographies, refs to Others?

Meetings

Meetings

Meetings

Japan at German Reparations meeting, p331, Lords of Finance, Liaquat Ahamed

Ideas:

  • Operations directed against internal threats
  • Media operations - strategic and tactical
  • How Krivitsky's recommendations were implemented - eg US, IWD/PWE (per report in Mask, West, ISBN: 0415351456 / 0-415-35145-6)
  • Philby's uncovering. Ref: Deceiving the Deceivers, S J Hamrick (ISBN: 0300104162 / 0-300-10416-2), ref general problems (Thora, the knowledge of Ritzi, the extent of non-comm operations in Vienna in 1931 per Mask appendix[or Crown Jewels - check], Russian doubts)
  • The sex problems. Ref Crown Jewels report example, others

Link tests:

Downloadable syntax-highlighted code test:

bruce.pde
#include <Ethernet.h>
 
// Set up the Networking piece
byte mac[] = { 0xF0, 0x0F, 0xFA, 0xDE, 0xBA, 0x5E }; //physical mac address
byte ip[] = { 192, 168, 0, 110 }; // ip in lan
byte gateway[] = { 192, 168, 0, 1 }; // internet access via router
byte subnet[] = { 255, 255, 255, 0 }; //subnet mask
 
// Set up server connection
byte server[] = { 192, 168, 0, 7 };
//Client client(server, 80); // set up for Nagios' NCSA port
 
// Set up voltage conversion
// First measurement (set V1In and V1Out to 0 during calibration)
double refV1In = 2.35;   // actual attopilot input voltage
double refV1Out = 514;   // arudino output from analogRead
// Second measurement (set V2In and V2Out to 1 during calibration)
double refV2In = 0.76;   // actual attopilot input voltage
double refV2Out = 167;   // arudino output from analogRead
 
void setup() {
  //Ethernet.begin(mac, ip, gateway, subnet);
  Serial.begin(9600); //opens serial port, sets data rate to 9600 bps
}
 
void loop() {
/*  if (!client.connected()) {
    Serial.println("disconnected");
 
    while (!client.connected()) {
      delay(1000);
 
      Serial.println("connecting...");
      if (client.connect()) {
        Serial.println("connected");
      } else {
        Serial.println("connection failed");
      }
    }
  } else {
    delay(1000);
  }
*/
  delay(1000); //remove if uncommenting client code above
 
  int v0 = analogRead(0);
 
  // calculate scale (gradient) and offset from the straight line
  //   going through (V1In, V1Out) and (V2In, V2Out)
  double scale = (refV1In - refV2In) / (refV1Out - refV2Out);
  double offset = refV1In - (refV1Out * scale);
 
  // convert Arduino measurement to actual input
  double av0 = (v0 * scale) + offset;
 
  // print negative sign if necessary
  if (av0 < 0.0) {
    Serial.print("-");
    av0 = abs(av0);
  }
 
  // print whole number part of input value
  Serial.print(int(av0));
  Serial.print(".");
 
  // print 6 decimal places of input value
  for (int i = 0; i < 6; i++) {
    av0 -= int(av0);
    av0 *= 10;
    Serial.print(int(av0));
  }
  Serial.println();
}

Language plugin:

<PHP>
global $ID;echo wl($ID,' ',true);   
</PHP>

http://www.tripadvisor.com/ShowUserReviews-g186298-d617291-r74484481-Market_House_Tavern-Portsmouth_Hampshire_England.html#CHECK_RATES_CONT

Add to Greg mail: https://bs.sh.com/customers/124253

Click to display ⇲

Click to hide ⇱

Click to hide ⇱

if it's a yahoo email domain, remain extremely suspicious of it *Lee if the customer name does not match the email alias, be suspicious of it *Lee if both the the above apply, be super-extremely suspicious of it *Lee review the text and tone of their verification response *Lee does it really look genuine? or look like b.s. that they cooked up for an answer *Lee to lighten it up, think of it as Demond's Dictum *Lee Demond's Dictum states: *Lee “No Yahoo sign up was ever genuine”
misc.txt · Last modified: 2010/09/02 15:58 by lee
Translate: AR CN DE ES FR HI PT PT-br RU UR