LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (December 2011, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 23 Dec 2011 09:36:45 -0600
Reply-To:     "jonaitis@wisc.edu" <jonaitis@wisc.edu>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Erin McMullen Jonaitis <jonaitis@WISC.EDU>
Organization: WAI
Subject:      Re: Tiny URL's....
In-Reply-To:  <49A4A49E54C54D49970610AA30299F26@D1871RB1>
Content-type: text/plain; CHARSET=US-ASCII

Buh? How does Sarbanes-Oxley relate to Tiny URLs?? I think I missed something.

Erin Jonaitis, Ph.D. Assistant Scientist, Wisconsin Alzheimer's Institute 7818 Big Sky Drive Madison, WI 53719

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Nat Wooding Sent: Friday, December 23, 2011 8:37 AM To: SAS-L@LISTSERV.UGA.EDU Subject: Re: Tiny URL's....

Just to add to this, at my old job, we were not allowed to go to sites via Tiny Urls. The company had a very paranoid security group. I'm not sure whether Sarbanes-Oxley had anything to do with the ban.

Nat Wooding

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Mike Rhoads Sent: Friday, December 23, 2011 9:19 AM To: SAS-L@LISTSERV.UGA.EDU Subject: Re: Tiny URL's....

I have also shared Lewis's concerns about tiny URLs. I really like to know where I'm going on the Web before I'm sent there.

I see that for tiny.cc links, you can add an = at the end of the string, and it will first bring up a preview page that lets you see the full destination URL. You can then click to go there (or not). Excellent feature, in my opinion.

Mike Rhoads RhoadsM1@Westat.com

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Alan Churchill Sent: Friday, December 23, 2011 4:25 AM To: SAS-L@LISTSERV.UGA.EDU Subject: Re: Tiny URL's....

Hmmm, it looks like you can tiny a URL using an API:

http://tiny.cc/api-docs

Could be a cool, simple integration project/macro for a sasCommunity.org page.

Thanks, Alan

Alan Churchill Director of IT, Prognos Inc. 719-687-5954 (Work) 719-310-4870 (Cell)

-----Original Message----- From: Jordan, Lewis [mailto:Lewis.Jordan@WEYERHAEUSER.COM] Sent: Thursday, December 22, 2011 8:17 AM Subject: Tiny URL's....

I've notice more and more of the "tiny" URL's, such as those Rick has posted. I first saw a "tiny" as a link to a youtube video. However, being completely ignorant of the subject, I dismissed it as a potential virus threat.

QUESTION: 1) What software do you users of "tinyurl" recommend. 2) I know SAS is working on some trendy items, such as Quick Response Code software. Is SAS capable of generating "tinyurl's"?

***************************** Lewis Jordan Weyerhaeuser: Southern Timberlands R&D Cell (Primary): 662-889-4514 Office: 662-245-5227 lewis.jordan@weyerhaeuser.com *****************************

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Rick Wicklin Sent: Thursday, December 22, 2011 4:58 AM To: SAS-L@LISTSERV.UGA.EDU Subject: Re: finding the sum of 100 4x4 matrices in proc iml

The answer is the same as I gave for your previous question: make the problem easy by getting rid of the 100 matrices (see http://bit.ly/vBSAV0). Instead, use a 100 x 16 matrix where each row contains a 4x4 matrix. (You can use the SHAPE function to easily recast a 4x4 matrix as a 1x16 row vector.

To sum the matrices, you just sum the columns: sum = X[+, ]; If you want it in matrix form: sumM = shape(sum, 4, 4);

If there is some reason that you really need to have 100 4x4 matrices instead of one 100 x 16 matrix, you can use the VALSET and VALUE functions (see http://bit.ly/vEwoxf), but it will be easier to use the 100 x 16 matrix.

Rick Wicklin Discuss SAS/IML issues at http://communities.sas.com/ Statistical programming and SAS/IML blog: http://blogs.sas.com/content/iml


Back to: Top of message | Previous page | Main SAS-L page