<?xml version="1.0" encoding="UTF-8" ?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>sas_academy at Yahoo! Groups</title>
    <link>http://tech.groups.yahoo.com/group/sas_academy/</link>
    <description>SAS Academy</description>

    <item>
      <title>[Python] http request with proxy</title>
      <pubDate>Wed, 16 May 2012 22:25:55 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/566</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/566</guid>
      <description>... go]/&#39;,proxies={&#39;http&#39;:&#39;http://[the proxy you use]:[port #]&#39;})&gt;&gt;&gt; print f.read(10000) ... </description>
    </item>
    <item>
      <title>Re: Third Anniversary of SASing</title>
      <pubDate>Sat, 12 May 2012 06:43:31 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/565</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/565</guid>
      <description>Three levels of programming:Manually write specs and manually code (2 persons, 1 program) -- most of the programmers&#39; daily jobManually write specs and</description>
    </item>
    <item>
      <title>Minimal OpenFileDialog with c sharp Re: c sharp from zero</title>
      <pubDate>Sun, 06 May 2012 06:59:32 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/564</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/564</guid>
      <description>using System.Windows.Forms;public class TstForm : Form{        public TstForm(){                Button b=new Button(); b.Text=&quot;Test&quot;;</description>
    </item>
    <item>
      <title>Minimal PROC TTEST</title>
      <pubDate>Wed, 25 Apr 2012 18:04:58 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/563</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/563</guid>
      <description>proc ttest data=sashelp.class;var height;class sex;run;</description>
    </item>
    <item>
      <title>SYSGET</title>
      <pubDate>Mon, 02 Apr 2012 06:26:57 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/562</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/562</guid>
      <description>It has been a while I didn&#39;t touch SAS on SAS_ACADEMY &lt;http://tech.groups.yahoo.com/group/sas_academy/&gt;  at all. So play with this if you use a Windows</description>
    </item>
    <item>
      <title>Use Timer to Control Chart in c sharp (part 2)</title>
      <pubDate>Mon, 26 Mar 2012 08:04:13 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/561</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/561</guid>
      <description>This time we use one single button to start and to stop plotting: using System; using System.Windows.Forms; using</description>
    </item>
    <item>
      <title>Use Timer to Control Chart in c sharp</title>
      <pubDate>Mon, 26 Mar 2012 07:29:31 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/560</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/560</guid>
      <description>The following test code plots the chart for y=x, y=x*x, y=x*x*x in a sequence with the time interval set to be 2 seconds: using System; using</description>
    </item>
    <item>
      <title>Minimal Timer in a Windows Form with c sharp</title>
      <pubDate>Sun, 25 Mar 2012 22:28:22 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/559</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/559</guid>
      <description>using System; using System.Windows.Forms; public class tstForm:Form{ private Timer t; public tstForm(){ Button b=new Button(); b.Click+=tInit; Controls.Add(b);</description>
    </item>
    <item>
      <title>Minimal Timer Wrapper with c sharp</title>
      <pubDate>Sun, 25 Mar 2012 03:56:48 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/558</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/558</guid>
      <description>using System; using System.Windows.Forms; public class tWrapper{ private Timer t; private bool exitFlg; public void Init(){ t=new Timer(); t.Interval=1000; </description>
    </item>
    <item>
      <title>Minimal Timer with c sharp</title>
      <pubDate>Sat, 24 Mar 2012 17:01:57 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/557</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/557</guid>
      <description>using System; using System.Windows.Forms; //Minimal timer public class xx{ static Timer t1=new Timer(); static bool exitFlg=false; private static void</description>
    </item>
    <item>
      <title>Chart with c sharp</title>
      <pubDate>Wed, 14 Mar 2012 08:23:39 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/556</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/556</guid>
      <description>using System.Windows.Forms; using System.Windows.Forms.DataVisualization.Charting; class v:Form{ private Chart Chart1=new Chart(); private ChartArea</description>
    </item>
    <item>
      <title>c sharp from zero</title>
      <pubDate>Wed, 29 Feb 2012 01:28:29 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/555</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/555</guid>
      <description>I use &quot;c sharp&quot; instead of &quot;c#&quot; in the title mainly because of the stupidity of the search function pertaining to Yahoo group, one of a lot of reasons why</description>
    </item>
    <item>
      <title>Pass c array to c#</title>
      <pubDate>Fri, 24 Feb 2012 19:14:26 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/554</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/554</guid>
      <description>PS C:\Tmp&gt; gc f.cint* x(){        static int locArr[]={12,34,56,78};//static key-word is a MUST        return locArr;}PS C:\Tmp&gt; gc callf.csusing System;using </description>
    </item>
    <item>
      <title>[c] Rudiments of array and pointer</title>
      <pubDate>Fri, 24 Feb 2012 08:18:51 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/553</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/553</guid>
      <description>short *x(){short a[]={1,2,3};return a;} main(){ short *y=x(); printf(&quot;%d,%d,%d;%d,%d,%d\n&quot;,y[0],y[1],y[2],*y,*(y&#43;1),*(y&#43;2)); }</description>
    </item>
    <item>
      <title>Minimal approach to call c function from c#</title>
      <pubDate>Fri, 24 Feb 2012 00:57:47 GMT</pubDate>
      <dc:creator>DJ</dc:creator>
      <link>http://tech.groups.yahoo.com/group/sas_academy/message/552</link>
      <guid isPermaLink="true">http://tech.groups.yahoo.com/group/sas_academy/message/552</guid>
      <description>gc tst.c#include&lt;stdio.h&gt;void prt(char *s){printf(&quot;Here is the message: %s\n&quot;,s);} gc usedll.csusing System;using System.Runtime.InteropServices;public class</description>
    </item>

  </channel>
</rss>
<!-- wr4.grp.sp2.yahoo.com uncompressed/chunked Mon May 21 15:46:02 PDT 2012 -->

