ON 20170804@12:49:25 PM at page: On a web page you were interested in at: http://www.sxlist.com/Techref/language/java/script/validator_js.htm#42944.4223726852 James Newton[JMN-EFP-786] removed post 42944.4223726852 |Delete 'yourmail@gmail.com asks: " Hello. And Bye."
  • ' ON 20170804@12:51:10 PM at page: On a web page you were interested in at: http://www.piclist.com/Techref/microchip/fft/picspect.htm#42947.1858680556 James Newton[JMN-EFP-786] removed post 42947.1858680556 |Delete 'yourmail@gmail.com asks: " Hello. And Bye." ' ON 20170804@12:51:32 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/language/html/r020/slide.htm#42947.6880787037 James Newton[JMN-EFP-786] removed post 42947.6880787037 |Delete 'yourmail@gmail.com asks: " Hello. And Bye."
  • ' ON 20170804@12:53:25 PM at page: On a web page you were interested in at: http://ecomorder.com/Techref/ecommerce/index.htm#42947.7538194444 James Newton[JMN-EFP-786] removed post 42947.7538194444 |Delete 'yourmail@gmail.com asks: " Hello. And Bye." ' ON 20170804@4:10:54 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/index.htm#42083.5004976852 James Newton[JMN-EFP-786] removed post 42083.5004976852 |Delete 'mokuneva56703@floopa.com ' ON 20170807@4:49:08 AM at page: On a web page you were interested in at: http://www.piclist.com/Techref/pcbs.htm#42954.200775463 Gopal Kapuriya[GK-4PCB-] See also: http://www.4pcbassembly.com/services/printed-circuit-board-assembly.html PCB Material Management System Our efficient, in-house Material Management team provides total supply management (including component purchasing and Just-In-Time inventory management) for your PCB assembly and PCB Manufacturing projects. PCBs are an integral component of any electronic device be it a small toy or a sophisticated computer. It's complex interconnected components comprising of resistors, diodes, capacitors and more allow the device to work in tandem. Our comprehensive turnkey solutions free you to focus on other areas of your business such as product development and expanding your customer base. We provide printed circuit board assembly services for industries such as Telecommunications, Space/Aerospace, medical, military and more. Whether we procure your components (fully or partially), or you provide a consigned kit, your components are in the capable (and static-free!) hands of our Material Management team. We foster material management by strict control in the procurement of all materials, buffer stock, sourcing of obsolete materials and stressing on quality components. Feel free to contact us with your specific product requirements and specification. ON 20170807@11:33:04 AM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/other/newtons/ps01/ps01_011.htm#42954.4812962963 James Newton[JMN-EFP-786] See also: https://www.amazon.com/Pride-Regiment-March-Op-143/dp/B001B64JKE Piano Compositions by C. C. Crammond. ON 20170810@6:08:09 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/app/edit/binarys.htm#42955.9672106481 James Newton[JMN-EFP-786] published post 42955.9672106481 https://hexed.it/ Online hex editor. ON 20170820@6:53:32 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/lessons.htm# James Newton[JMN-EFP-786] edited the page. Difference: http://techref.massmind.org/techref/diff.asp?url=\Techref\lessons.htm&version=5 ON 20170820@6:54:10 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/lessons.htm# James Newton[JMN-EFP-786] edited the page. Difference: http://techref.massmind.org/techref/diff.asp?url=\Techref\lessons.htm&version=6 ON 20170821@1:23:03 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/method/lists.htm#42968.5576736111 James Newton[JMN-EFP-786] See also: https://www.youtube.com/watch?v=qTZJLJ3Gm6Q Associative Array / Hash / Dictionary ON 20170821@1:24:02 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/method/lists.htm#42968.5583564815 James Newton[JMN-EFP-786] See also: https://www.youtube.com/watch?v=t5NszbIerYc Pointers and linked lists. ON 20170825@9:32:20 AM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/logic/nand.htm# James Newton[JMN-EFP-786] edited the page. Difference: http://techref.massmind.org/techref/diff.asp?url=\Techref\logic\nand.htm&version=0 ON 20170825@9:33:45 AM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/logic/nand.htm# James Newton[JMN-EFP-786] edited the page. Difference: http://techref.massmind.org/techref/diff.asp?url=\Techref\logic\nand.htm&version=1 ON 20170831@1:40:16 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/os/linux/docs.htm#42978.5696296296 James Newton[JMN-EFP-786] Says /Techref/os/linux/serialcmds.htm Linux Command line Serial Communications ON 20170831@1:41:56 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/os/linux/serialcmds.htm#42978.570787037 James Newton[JMN-EFP-786] Code:
    //from the command line, set a USB serial adapter and send and receive data
    stty -F /dev/ttyUSB0 ospeed 57600 ispeed 57600 raw
    echo -ne '?' > /dev/ttyUSB0
    cat -v < /dev/ttyUSB0
    ON 20170831@1:43:03 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/os/linux/serialcmds.htm#42978.5715625 James Newton[JMN-EFP-786] Code:
    //from the command line, set a USB serial adapter, then interact, ctrl-c to exit
    stty -F /dev/ttyUSB0 ospeed 57600 ispeed 57600 raw
    cat /dev/ttyUSB0 & cat > /dev/ttyUSB0
    ON 20170831@10:55:23 PM at page: On a web page you were interested in at: http://techref.massmind.org/Techref/io/motors.htm#42978.9551273148 James Newton[JMN-EFP-786] See also: https://youtu.be/ZKodxGcRSnw Wiring common AC appliance motors.