Brian

>Stylish also has a plugin fior FF - which i used and verified. The URLs i 
>mentioned are in the "applies to" section of each edited code snippet. If one 
>uses "URL's starting with" and "https://mail.google.com/mail/"; it should be 
>okay.

>Stylish modifies the CSS of a specific URL (eg one mail) and thus the _output_ 
>of that you see.

greg
~krsnadas.org

--

from: Brian Schott <[email protected]>
to: Chat forum <[email protected]>
date: 10 November 2014 10:18
subject: Re: [Jchat] [Jprogramming] This surprised me.

Marc,

>The wording of your original post "... amd forcing fixed with *output* ..." 
>(to which I am replying) made me think the Stylish extension was for writing, 
>not reading, emails, but Greg's email encouraged me to install Stylish, and it 
>seems to work fine for J forum emails in gmail in Chrome.

>One other little  misunderstanding was that I am not aware of any style sheet 
>that I created, nor of any URL in such a style sheet. Instead, I simply went 
>into the Chrome Window menu and under the Extensions (the address became 
>"chrome://extensions/") I noticed "Fixed Width Text for Gmail™ 1.6" with an 
>unchecked option, which I then checked. Then I reloaded gmail and am reading 
>fixed font messages.

Thank you,

--

from: Marc Simpson <[email protected]>
to: Programming forum <[email protected]>
date: 4 November 2014 07:42
subject: Re: [Jprogramming] This surprised me.

>If you're using GMail to read forum posts, I highly recommend installing the 
>Stylish extension/addon,

  https://userstyles.org/

and forcing fixed width output. I'm using the following stylesheet,

  @-moz-document domain("mail.google.com") {
  .gs .ii {
      font-family: Menlo;
      font-size: 8pt;

--

from: Devon McCormick <[email protected]>
to: J-programming forum <[email protected]>
date: 4 November 2014 07:37
subject: Re: [Jprogramming] This surprised me.

>These both look fine to me though the first case of "hi ho" was intended to 
>use the common ASCII (default) characters rather than the box-drawing ones.

--

from: Skip Cave <[email protected]>
to: "[email protected]" <[email protected]>
date: 4 November 2014 06:30
subject: Re: [Jprogramming] This surprised me.

All,

>This is an experiment to see if posts to the Jsoftware forum can link to 
>images stored in my Google Drive.

Here's a link to Devon's "hi ho" test:
http://bit.ly/1GkvdmP

Here's a link to Devon's Mandelbrot plot:
http://bit.ly/1GkwQAE

>Theoretically, clicking on the link should launch Google's png viewer in your 
>browser, so you can view the images. If that doesn't work, you should be able 
>to download them.

Skip

Skip Cave
Cave Consulting LLC

--

from: Devon McCormick <[email protected]>
to: J-programming forum <[email protected]>
date: 3 November 2014 16:28
subject: Re: [Jprogramming] This surprised me.

>Who is able to see the below looking like it ought to (evenly ASCII-boxed, 
>then line-drawing boxed)? I highlighted this in Gmail and set the font to 
>Courier New.

   ('hi';'ho'),('off';'to'),:'work';'we';'go'
+----+--+--+
|hi  |ho|  |
+----+--+--+
|off |to|  |
+----+--+--+
|work|we|go|
+----+--+--+
   9!:7]a.{~16+i.11

   ('hi';'ho'),('off';'to'),:'work';'we';'go'
+----------+
¦hi  ¦ho¦  ¦
+----+--+--¦
¦off ¦to¦  ¦
+----+--+--¦
¦work¦we¦go¦
+----------+

--

from: Devon McCormick <[email protected]>
to: J-programming forum <[email protected]>
date: 3 November 2014 13:39
subject: Re: [Jprogramming] This surprised me.

>Except that this forum drops images attached to e-mails.  However, it's easy 
>enough to create a page on the J wiki and display anything there.

--

from: Skip Cave <[email protected]>
to: "[email protected]" <[email protected]>
date: 3 November 2014 07:37
subject: Re: [Jprogramming] This surprised me.

Linda,

>If you are using Windows, there is a "Snipping Tool" in Windows that can take 
>a screenshot of any area on the screen. Click the Start button, and search for 
>"Snipping".

>Bring up J, and execute your functions so they display the output in the J 
>window. Then start the snip tool. Select "Rectangular Snip" from the "New" 
>menu, and then draw a box around the the output in the J window that you want 
>to show. Release the mouse and the snipped image will appear in a new window. 
>Save the image as a .png file. Then you can attach the .png to any email. This 
>also works well for saving plot images.

Skip
Skip Cave
Cave Consulting LLC

--

from: chris burke <[email protected]>
to: Programming forum <[email protected]>
date: 3 November 2014 07:00
subject: Re: [Jprogramming] This surprised me.

>> I'm still trying to find how to get "html" or "rich text" like I used in an 
>> old outlook.  This is my rather ugly new version.

>There is no way to ensure that boxed output appears correctly in emails. Note 
>that it may show correctly in your email program, but not in other email 
>programs.

>It is best to not rely on boxed output. Instead, show minimal output as in 
>Raul's message, or no output at all, or use the wiki or some other web page to 
>show the full output.

--

from: Linda Alvord <[email protected]>
to: [email protected]
date: 2 November 2014 23:06
subject: Re: [Jprogramming] This surprised me.

>Raul,   I'm still trying to find how to get "html" or "rich text" like I used 
>in an old outlook.  This is my rather ugly new version.

   rrN=:'x+y x-y x<.y x>.y'
   M=:'+ - <. >.'
   dyads=: 13 :' ,. <"1 ''x'',"1(>;:y),"1 ''y'''
   (dyads M)
+----+
¦x+ y¦
+----¦
¦x- y¦
+----¦
¦x<.y¦
+----¦
¦x>.y¦
+----+
   s=: [: ,. [: <;._1 ' ' , ]
   s N
+-----------------+
¦x+y¦x-y¦x<.y¦x>.y¦
+-----------------+
   s=: [: ,. [: <;._1 ' ' , ]
   (s N),.dyads M
+---------+
¦x+y ¦x+ y¦
+----+----¦
¦x-y ¦x- y¦
+----+----¦
¦x<.y¦x<.y¦
+----+----¦
¦x>.y¦x>.y¦
+---------+
   5!:4 <'s'

   5!:4 <'s'
  +- [:
  +- ,.
  ¦    +- [:
--¦    ¦      +- <
  ¦    +- ;. --- _1
  +----¦
       ¦      +- ' '
       +------+- ,
              +- ]

>I still need to write your version explicitly as I don't quite get  ;.  Yet.

>However in later greades it will be easier to add new verbs to M than N so 
>maybe you have ideas to improve  dyads.

Thanks   Linda

--

from: Raul Miller <[email protected]>
to: Programming forum <[email protected]>
date: 2 November 2014 15:18
subject: Re: [Jprogramming] This surprised me.

I guess your & allergy hits you for anything you inspect?

Here's a variation on cut which will do the job:

   simplercut=: [: <;._1 ' ' , ]

   N=:'x+y x-y x<.y x>.y'
   simplercut N
+---+---+----+----+
|x+y|x-y|x<.y|x>.y|
+---+---+----+----+

I hope this helps.

--

from: Linda Alvord <[email protected]>
to: [email protected]
date: 2 November 2014 10:08
subject: Re: [Jprogramming] This surprised me.

Thanks Raul,

>Cut works but has too many  & and @'s and all sorts of other stuff.

I got what I wanted with

     M=:'+ - <. >.'
   ,.<"1 'x ',"1 (>;:M),"1' y'
-------+
¦x +  y¦
+------+
¦x -  y¦
+------+
¦x <. y¦
+------+
¦x >. y¦
L-------

>I can't find where to get "html" or "rich text" in the current Outlook. Sorry.

--

from: Linda Alvord <[email protected]>
to: [email protected]
date: 2 November 2014 05:06
subject: [Jprogramming] This surprised me.

M=:'+ - <. >.'

   ;:M

--T-T--T--+
¦+¦-¦<.¦>.¦
L-+-+--+---

   N=:'x+y x-y x<.y x>.y'

   ;:N

I wanted 4  boxes for N

Linda
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to