please dont rip this site

NEW202006.TXT

 

ON 20200601@9:07:31 AM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43982.4926851852
James Newton[JMN-EFP-786] removed post 43982.4926851852

|Delete '

   <LI>'



ON 20200601@9:07:42 AM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43978.927025463
James Newton[JMN-EFP-786] removed post 43978.927025463

|Delete '

   <LI>'



ON 20200601@9:07:57 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/method/math/c-vs-o.htm#43981.8686921296
James Newton[JMN-EFP-786] removed post 43981.8686921296

|Delete '
</UL>'



ON 20200603@9:55:28 AM at page:
On a web page you were interested in at:
http://piclist.com/Techref/member/jwn-hotmail-f41/TIMER_TUTORIAL.htm#43984.43875
James Newton[JMN-EFP-786] removed post 43984.43875

|Delete '

   <LI>'



ON 20200603@9:55:54 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/jal/DrivingBipolarStepperMotors.htm#43984.1084606481
James Newton[JMN-EFP-786] removed post 43984.1084606481

|Delete '

   <LI>'



ON 20200605@8:53:41 PM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43986.3965046296
James Newton[JMN-EFP-786] removed post 43986.3965046296

|Delete '

   <LI>'



ON 20200605@8:53:51 PM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43983.8480208333
James Newton[JMN-EFP-786] removed post 43983.8480208333

|Delete '

   <LI>'



ON 20200605@8:56:32 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/microchip/12F683-rs232-9600-mm.htm#43985.7545949074
James Newton[JMN-EFP-786] removed post 43985.7545949074

|Delete '

   <LI>'



ON 20200609@9:56:14 AM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43991.1096990741
James Newton[JMN-EFP-786] removed post 43991.1096990741

|Delete '

   <LI>'



ON 20200609@9:56:31 AM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/idea/websites.htm#43991.1016087963
James Newton[JMN-EFP-786] removed post 43991.1016087963

|Delete '

   <LI>'



ON 20200609@9:56:45 AM at page:
On a web page you were interested in at:
http://massmind.org/Techref/idea/websites.htm#43990.8944444444
James Newton[JMN-EFP-786] removed post 43990.8944444444

|Delete '

   <LI>'



ON 20200609@9:57:03 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43990.849525463
James Newton[JMN-EFP-786] removed post 43990.849525463

|Delete '

   <LI>'



ON 20200609@9:57:31 AM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/scenix/index.htm#43990.6546759259
James Newton[JMN-EFP-786] removed post 43990.6546759259

|Delete '

   <LI>'



ON 20200609@9:57:46 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43989.5777314815
James Newton[JMN-EFP-786] removed post 43989.5777314815

|Delete '

   <LI>'



ON 20200609@9:58:31 AM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43989.1721759259
James Newton[JMN-EFP-786] removed post 43989.1721759259

|Delete '

   <LI>'



ON 20200609@9:58:57 AM at page:
On a web page you were interested in at:
http://piclist.com/Techref/language/ccpp/convertbase.htm#43988.6346412037
James Newton[JMN-EFP-786] removed post 43988.6346412037

|Delete '

   <LI>'



ON 20200609@9:59:11 AM at page:
On a web page you were interested in at:
http://massmind.org/Techref/idea/websites.htm#43988.5601388889
James Newton[JMN-EFP-786] removed post 43988.5601388889

|Delete '

   <LI>'



ON 20200609@10:00:18 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43976.3366087963
James Newton[JMN-EFP-786] removed post 43976.3366087963

|Delete '

   <LI>'



ON 20200609@10:00:24 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43972.4769444444
James Newton[JMN-EFP-786] removed post 43972.4769444444

|Delete '

   <LI>'



ON 20200610@5:00:51 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/language/html/ib/Scripting_Reference/imgcol.htm#43992.7089236111
James Newton[JMN-EFP-786] Questions:

Interesting little snippet from a post in a Facebook Javascript group which loads an image, /local/ to the browser, into the web page.<BR>
The HTML:
<PRE>
&lt;input type="file" onchange="previewFile()">&lt;br>
&lt;img src="" height="200" alt="Image preview...">
</PRE>
and then the JS:
<PRE>
function previewFile() {
  const preview = document.querySelector('img');
  const file = document.querySelector('input[type=file]').files[0];
  const reader = new FileReader();
    reader.addEventListener("load", function () {
    // convert image file to base64 string
    preview.src = reader.result;
    }, false);
  if (file) {
    reader.readAsDataURL(file);
    }
  }
</PRE>
Possible uses? Local customization of a web page's display without needing to manage user settings at the server?



ON 20200615@1:51:41 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/language/forths.htm#43997.5775578704
James Newton[JMN-EFP-786] See also:
https://arduino-forth.com/article/FORTH_exemples_convertInfixToPostfix
Converting Infix (standard math notation) to Postfix (RPN as used by FORTH).



ON 20200615@3:50:04 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43997.5569444444
James Newton[JMN-EFP-786] removed post 43997.5569444444

|Delete '

   <LI>'



ON 20200615@3:51:41 PM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43994.227974537
James Newton[JMN-EFP-786] removed post 43994.227974537

|Delete '

   <LI>'



ON 20200615@3:51:55 PM at page:
On a web page you were interested in at:
http://piclist.com/Techref/member/jwn-hotmail-f41/TIMER_TUTORIAL.htm#43992.9166666667
James Newton[JMN-EFP-786] removed post 43992.9166666667

|Delete '

   <LI>'



ON 20200615@3:52:17 PM at page:
On a web page you were interested in at:
http://massmind.org/Techref/idea/websites.htm#43992.5295949074
James Newton[JMN-EFP-786] removed post 43992.5295949074

|Delete '

   <LI>'



ON 20200615@3:52:29 PM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#43992.3288773148
James Newton[JMN-EFP-786] removed post 43992.3288773148

|Delete '

   <LI>'



ON 20200615@3:52:53 PM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/idea/websites.htm#43991.9166550926
James Newton[JMN-EFP-786] removed post 43991.9166550926

|Delete '

   <LI>'



ON 20200615@3:53:06 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43991.6716666667
James Newton[JMN-EFP-786] removed post 43991.6716666667

|Delete '

   <LI>'



ON 20200615@3:53:36 PM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/scenix/index.htm#43991.478287037
James Newton[JMN-EFP-786] removed post 43991.478287037

|Delete '

   <LI>'



ON 20200616@11:14:05 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/robotics.htm#43998.9681134259
Mark M[MM-TTL-f88] See also:
https://http://www.transducertechniques.com/load-cell.aspx
Load cells and torque sensors



ON 20200617@12:32:52 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43999.2228240741
James Newton[JMN-EFP-786] removed post 43999.2228240741

|Delete '

   <LI>'



ON 20200617@12:33:25 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43999.1464699074
James Newton[JMN-EFP-786] removed post 43999.1464699074

|Delete '

   <LI>'



ON 20200617@12:34:03 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/robotics.htm#43998.9584027778
James Newton[JMN-EFP-786] removed post 43998.9584027778

|Delete '

  <LI>'



ON 20200617@12:34:24 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/robotics.htm#43998.9681134259
James Newton[JMN-EFP-786] removed post 43998.9681134259

|Delete '<A TITLE="MM-TTL-f88" NAME="43998.9681134259" HREF="/techref/member/MM-TTL-f88/index.htm">Mark M</A> refers to &quot;<A NAME="MM-TTL-f88" HREF="https://http://www.transducertechniques.com/load-cell.aspx" TARGET="_top">
https://http://www.transducertechniques.com/load-cell.aspx</A> 
Load cells and torque sensors&quot;
<!-- 43998.9681134259 EOR --><A style="color:#AF4040" TITLE="Click to login and reply" REL="nofollow" HREF="/techref/login/default.asp?req=/techref/update.asp%3Fact=reply%26url=/Techref/new202006.txt%26id=43998.9681134259">+</A>

   <LI>'



ON 20200617@12:35:04 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#43998.7499537037
James Newton[JMN-EFP-786] removed post 43998.7499537037

|Delete '

   <LI>'



ON 20200617@12:41:01 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/io/sensor/posdf.htm#43999.5284837963
James Newton[JMN-EFP-786] See also:
https://http://www.transducertechniques.com/load-cell.aspx




ON 20200618@10:40:57 AM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/language/forths.htm#44000.4451041667
James Newton[JMN-EFP-786] See also:
http://home.iae.nl/users/mhx/crenshaw/tiny.html
The Crenshaw language tutorial, adapted to FORTH.



ON 20200620@6:39:55 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/language/forths.htm#44002.7777199074
James Newton[JMN-EFP-786] See also:
http://www.bradrodriguez.com/papers/moving1.htm
Innards of FORTH.



ON 20200623@9:19:51 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/language/lisps.htm#44005.8887847222
James Newton[JMN-EFP-786] See also:
http://www.ulisp.com/
uLisp runs on Arduino, Adafruit M0/M4, Micro:bit, ESP8266/32, and RISC-V boards.



ON 20200623@10:00:30 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/language/html/graphic/vectors.htm#44005.9170138889
James Newton[JMN-EFP-786] See also:
http://www.webglacademy.com/
WebGL Tutorial



ON 20200624@9:28:07 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/inet/smtppop3/mercury/transadd.htm#44006.3811574074
James Newton[JMN-EFP-786] removed post 44006.3811574074

|Delete '
</UL>'



ON 20200624@9:31:28 AM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/scenix/sx48-52.htm#44006.3017361111
James Newton[JMN-EFP-786] removed post 44006.3017361111

|Delete '
</UL>'



ON 20200624@9:32:08 AM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/idea/website/techref.htm#44005.5453587963
James Newton[JMN-EFP-786] removed post 44005.5453587963

|Delete '

   <LI>'



ON 20200624@9:32:34 AM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/idea/website/techref.htm#42025.4641435185
James Newton[JMN-EFP-786] removed post 42025.4641435185

|Delete '
</UL>'



ON 20200624@9:33:14 AM at page:
On a web page you were interested in at:
http://piclist.com/Techref/member/jwn-hotmail-f41/TIMER_TUTORIAL.htm#44003.8587268519
James Newton[JMN-EFP-786] removed post 44003.8587268519

|Delete '

   <LI>'



ON 20200624@9:33:49 AM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/ferritebead/cellphoneheadset.htm#44003.2688888889
James Newton[JMN-EFP-786] removed post 44003.2688888889

|Delete '
</UL>'



ON 20200624@9:34:07 AM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#44003.2281365741
James Newton[JMN-EFP-786] removed post 44003.2281365741

|Delete '

   <LI>'



ON 20200624@9:34:25 AM at page:
On a web page you were interested in at:
http://ecomorder.com/Techref/ecommerce/index.htm#44003.0269791667
James Newton[JMN-EFP-786] removed post 44003.0269791667

|Delete '

   <LI>'



ON 20200624@9:34:49 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/microchip/io/dev/keyboard/ps2-jc.htm#44001.6723611111
James Newton[JMN-EFP-786] removed post 44001.6723611111

|Delete '

   <LI>'



ON 20200624@9:35:10 AM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#44001.3543634259
James Newton[JMN-EFP-786] removed post 44001.3543634259

|Delete '

   <LI>'



ON 20200624@9:36:39 AM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/idea/websites.htm#44001.0494791667
James Newton[JMN-EFP-786] removed post 44001.0494791667

|Delete '

   <LI>'



ON 20200624@9:37:10 AM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/scenix/index.htm#43999.7012962963
James Newton[JMN-EFP-786] removed post 43999.7012962963

|Delete '

   <LI>'



ON 20200624@9:37:59 AM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/scenix/index.htm#43999.5578009259
James Newton[JMN-EFP-786] removed post 43999.5578009259

|Delete '

   <LI>'



ON 20200624@10:29:40 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/language/lisps.htm#44006.9372685185
James Newton[JMN-EFP-786] See also:
https://jscl-project.github.io/
A fairly complete Lisp running in Javascript in the browser



ON 20200626@10:15:03 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/app/cams.htm#44008.9271180556
James Newton[JMN-EFP-786] See also:
https://grid.space/kiri/
STL to g-code for 3D printers (SLA or FDM), CNC (Routers, Mills), or Laser cutters in the browser. Simple, but useful.



ON 20200628@4:28:56 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/other/rainwater.htm#44010.6867592593
James Newton[JMN-EFP-786] Questions:

<a href="https://photos.google.com/share/AF1QipNqaDgH4M8IGRAWC19qsGe4A2Mfe5ExFktdDw_Vgb6U9M3QmSg0PbBsvRLfkAUT5w?key=aEtMOVpSckNDQkZtY3FCN0xxbEtvdnFPQ1JwX3FR">A google photo album with more pictures</a>



ON 20200628@5:00:06 PM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/method/histogramfilter_localization.htm#
James Newton[JMN-EFP-786] edited the page. Difference:
http://www.massmind.org/techref/diff.asp?url=\Techref\method\histogramfilter_localization.htm&version=0



ON 20200628@6:47:34 PM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/other/newtons/wc_toc.htm#44010.4533680556
James Newton[JMN-EFP-786] removed post 44010.4533680556

|Delete '

   <LI>'



ON 20200628@6:48:14 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#44009.517025463
James Newton[JMN-EFP-786] removed post 44009.517025463

|Delete '

   <LI>'



ON 20200628@6:48:44 PM at page:
On a web page you were interested in at:
http://piclist.com/Techref/language/ccpp/convertbase.htm#44009.3958564815
James Newton[JMN-EFP-786] removed post 44009.3958564815

|Delete '

   <LI>'



ON 20200628@6:49:14 PM at page:
On a web page you were interested in at:
http://massmind.org/Techref/idea/websites.htm#44009.2810069444
James Newton[JMN-EFP-786] removed post 44009.2810069444

|Delete '

   <LI>'



ON 20200628@6:49:32 PM at page:
On a web page you were interested in at:
http://massmind.org/Techref/idea/websites.htm#44007.7256712963
James Newton[JMN-EFP-786] removed post 44007.7256712963

|Delete '

   <LI>'



ON 20200628@6:50:03 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/piclist/index.htm#44008.9083680556
James Newton[JMN-EFP-786] removed post 44008.9083680556

|Delete '

   <LI>'



ON 20200628@6:50:14 PM at page:
On a web page you were interested in at:
http://massmind.org/Techref/microchip/keyless6.htm#44008.4707523148
James Newton[JMN-EFP-786] removed post 44008.4707523148

|Delete '

   <LI>'



ON 20200628@6:50:35 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/tonertransfer.htm#44007.2166319444
James Newton[JMN-EFP-786] removed post 44007.2166319444

|Delete '

   <LI>'



ON 20200628@6:51:02 PM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/scenix/lib/math/add.htm#44006.5063773148
James Newton[JMN-EFP-786] removed post 44006.5063773148

|Delete '

   <LI>'



ON 20200628@6:53:52 PM at page:
On a web page you were interested in at:
http://massmind.org/Techref/microchip/4x4key4io8diode.htm#44006.4527546296
James Newton[JMN-EFP-786] removed post 44006.4527546296

|Delete '

  <LI>'



ON 20200628@6:54:18 PM at page:
On a web page you were interested in at:
http://www.sxlist.com/Techref/scenix/index.htm#44006.4527083333
James Newton[JMN-EFP-786] removed post 44006.4527083333

|Delete '

   <LI>'



ON 20200628@6:54:37 PM at page:
On a web page you were interested in at:
http://www.piclist.com/Techref/language/asp/obj/ref_vbom_reqocf.htm#44006.4503935185
James Newton[JMN-EFP-786] removed post 44006.4503935185

|Delete '
</UL>'



ON 20200628@9:41:26 PM at page:
On a web page you were interested in at:
http://www.massmind.org/Techref/method/math/divconst.htm#44010.9037731482
James Newton[JMN-EFP-786] Code:
https://web.archive.org/web/20190915025154/http://www.hackersdelight.org/
<PRE>unsigned divu10(unsigned n) {
  unsigned q, r;
  q = (n &gt;&gt; 1) + (n &gt;&gt; 2); // q=n/2+n/4 = 3n/4
  q = q + (q &gt;&gt; 4);        // q=3n/4+(3n/4)/16 = 3n/4+3n/64 = 51n/644
  q = q + (q &gt;&gt; 8);        // q=51n/64+(51n/64)/256 = 51n/64 + 51n/16384 = 13107n/16384 q = q + (q &gt;&gt; 16); 
  // q= 13107n/16384+(13107n/16384)/65536=13107n/16348+13107n/1073741824=858993458n/1073741824
  // note: q is now roughly 0.8n
  q = q &gt;&gt; 3;              // q=n/8 = (about 0.1n or n/10)
  r = n - (((q &lt;&lt; 2) + q) &lt;&lt; 1); // rounding: r= n-2*(n/10*4+n/10)=n-2*5n/10=n-10n/10
  return q + (r &gt; 9);      // adjust answer by error term
}</PRE>



ON 20200629@8:50:55 PM at page:
On a web page you were interested in at:
http://techref.massmind.org/Techref/ecommerce/beststuf.htm#
James Newton[JMN-EFP-786] edited the page. Difference:
http://techref.massmind.org/techref/diff.asp?url=\Techref\ecommerce\beststuf.htm&version=0



file: /Techref/new202006.txt, 53KB, , updated: 2020/6/29 20:50, local time: 2024/4/23 09:00,
TOP NEW HELP FIND: 
18.191.216.163:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.ecomorder.com/techref/new202006.txt"> new202006</A>

Did you find what you needed?

 

Welcome to ecomorder.com!

 

Welcome to www.ecomorder.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .