Friday, January 6, 2017

My first favourite subject is Heists, my second is scientific investigation; We were talking here about, how we started to speack on the pre history, likes deffs, making only sounds related to what we wanted to get, and to be understood, and Matt said that we didn't had our cognitive well developed; anyway, what makes us think at all? In my opinion, we think because we have some sort of radio waves connecting our senses, probably not hertz, but nervex, or something...like we are a sort of electronic machine controlling chemestry; if we are under electric shocks, or heart artifical support, we are reacting to radio; so i think we could even fly like birds or live under water like fish; if we could domain that radio waves. if the brain waves could domain your physical impulses. our first impulse is to breath by our loans, what if the brain command your ear to breath under another loans connection, like having a breathing membrane?

not artificially as implants but chemical controlled..then you could live on space...


once i started speacking about this stuff with my shrink...he just said...that was my distrurbed which gave me this thoughts


this why I got retired anyway...because i live on an absolut mental retard country

Suicide Attempt by Intravenous Potassium Self-Poisoning: A Case Report

Overdose of potassium is not as frequently encountered in clinical practice as hyperkalaemia due to acute or chronic renal disease. However, potassium overdoses leading to serious consequences do occur. Case Presentation. A 20-year-old nurse student presented with a cardiac arrest with asystole rhythm. Beside the patient were found four 50-mL syringes and empty vials of potassium chloride (20 mL, 10%). After initial resuscitation with epinephrine, 125 mL of a 4.2% intravenous solution of sodium bicarbonate were injected which resulted in the recovery of an effective cardiac activity. The patient recovered without sequelae. Conclusion. The difficulty in this case was to recognize the potassium poisoning. The advanced resuscitation with the use of a specific treatment helped to resuscitate the patient.

We describe a case of suicide attempt by intravenous injection of potassium, which led to heart attack, supported by a medical team of prehospital resuscitation.

https://www.hindawi.com/journals/criem/2012/323818/

If you can get this Dimethylmercury on the blackmarket...you kill anyone without leaving trace


Thursday, January 5, 2017

you kill easy to get, with toothpaste component fluoride e chlorhexidine, also in other items, botle water, shampoo and so on

ORIGINAL WWII GERMAN DORAMAD TOOTHPASTE AND TOOTHBRUSH

 See original listing
Item condition:
--
Ended:
Feb 07, 2014 , 10:58AM
Price:
US $15.00
 
Approximately EUR 14.32
Shipping:
$10.00 Standard International Shipping
Item location:
Saint-Petersburg, default, Russian Federation

Tuesday, January 3, 2017

and so..."developing software for open source linux dvb receivers using the linux operating system..." therefore available at https://openpli.org/


what about cables and antennas..

Teletext Decoding in FAB Network Controller

FAB Network Controller supports the following teletext decoding sources:
  • Hauppauge cards for analogue antenna and CVBS input
  • Hauppauge cards for DVB-T, DVB-C and DVB-S/S2
  • FAB FT-HT 1x cards for teletext decoding from SD/HD-SDI
  • Linux based set top boxes
  • Teletext in TS/IP Streams

"I am not going to talk about loop tuning....Let's go back to our example of a current controller. Suppose we command u = 1A of current, and it takes a command to our output actuator x = 7.2V to reach equilibrium. Great. Now suppose we want u = 2A of current. To do this x = 14.4V. Now suppose we want u = 10A of current. To do this x = 72V. Now suppose we want u = 1000A of current. To do this x = 7200V. Now suppose we want u = 1,000,000A of current... what? You're telling me we're not going to be able to get a million amperes of current out of our system?

How to Build a Fixed-Point PI Controller That Just Works: Part I




Monday, January 2, 2017

let's imagine we are beeing "bugged" by the security server Black Box Network Services, LES8164A Dual 10/100/1000 Secure Console Server, 16-Port

Embedded Freaks..

August 13, 2008

Reading from serial port (using rxtx)

Filed under: java — Tags:  — kunilkuda @ 9:29 am
Once you’ve got the serial InputStream, reading would be easy. Here’s an example of code to read the serial port using InputStream:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Buffer to hold the reading
 */
private byte[] readBuffer = new byte[400];
private void readSerial() {
    try {
        int availableBytes = inStream.available();
        if (availableBytes > 0) {
            // Read the serial port
            inStream.read(readBuffer, 0, availableBytes);
            // Print it out
            System.out.println(
                    new String(readBuffer, 0, availableBytes));
        }
    } catch (IOException e) {
    }
}
But the real problem comes from the place where you should place the code.

You can put inside the SerialPortEvent.DATA_AVAILABLE: event, like this:
1
2
3
4
5
6
7
8
9
private class SerialEventHandler implements SerialPortEventListener {
    public void serialEvent(SerialPortEvent event) {
        switch (event.getEventType()) {
            case SerialPortEvent.DATA_AVAILABLE:
                readSerial();
                break;
        }
    }
}
Don’t forget to register the event handler, before you run the application
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Set the serial event handler
 */
private void setSerialEventHandler(SerialPort serialPort) {
    try {
        // Add the serial port event listener
        serialPort.addEventListener(new SerialEventHandler());
        serialPort.notifyOnDataAvailable(true);
    } catch (TooManyListenersException ex) {
        System.err.println(ex.getMessage());
    }
}
The result is the read procedure is only called when new data is accepted.
The other way to read the serial port data continously is by using other thread to read:
1
2
3
4
5
6
7
private class ReadThread implements Runnable {
    public void run() {
        while(true) {
            readSerial();
        }
    }
}
Here’s how you start the thread:
1
2
3
public void setSerialListener() {
    new Thread(new ReadThread()).start();
}

Conclusion

So, which one that is better, put the reading inside different thread or in the event handler ? Well..I don’t know about it yet. I’ll post it once I found the answer.

https://embeddedfreak.wordpress.com/2008/08/13/reading-from-serial-port-using-rxtx/