User MarlonRibunal - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T00:24:53Zhttp://stackoverflow.com/feeds/user/10385http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/780319/how-to-create-a-custom-file-extension-in-c3how to create a custom file extension in C#?MarlonRibunal2009-04-23T04:29:06Z2009-11-26T18:39:01Z
<p>I need help in how to create a custom file extension in my C# app. I created a basic notes management app. Right now I'm saving my notes as .rtf (note1.rtf). I want to be able to create a file extension that only my app understands (like, note.not, maybe)</p>
http://stackoverflow.com/questions/808871/how-to-grab-attachment-programmatically-c-from-a-pop3-mail2How to grab attachment programmatically (C#) from a POP3 mail? MarlonRibunal2009-04-30T20:25:39Z2009-10-21T21:52:29Z
<p>Is there any C# API for this task? Any suggestions?</p>
http://stackoverflow.com/questions/135533/ms-crm-development-projects0MS CRM Development ProjectsMarlonRibunal2008-09-25T19:42:42Z2009-10-13T17:40:19Z
<p>The shop that I am working part time with is new to Microsoft CRM. I just want to survey what projects have developers done to the system to extend its capabilities.</p>
http://stackoverflow.com/questions/171177/has-anyone-here-worked-on-kofax-sharepoint-2007-integration2Has anyone here worked on KOFAX-SharePoint 2007 integration?MarlonRibunal2008-10-04T23:22:20Z2009-09-10T22:12:50Z
<p>We want to be able to advance our business by utilizing both of the power of KOFAX and SharePoint 2007. Any pointers Development-wise?</p>
http://stackoverflow.com/questions/1051470/ipaper-module-for-drupal0iPaper Module for DrupalMarlonRibunal2009-06-26T22:04:19Z2009-08-29T04:04:29Z
<p>I have successfully installed the iPaper module from Scribd.com. But I could not upload files. What's happening is that the "attachment" is being uploaded to my webserver but it wouldn't go to scribd.com. Any tips on what to look for?</p>
http://stackoverflow.com/questions/612248/eml-to-pdf-api0.eml to .pdf APIMarlonRibunal2009-03-04T20:17:33Z2009-08-26T10:19:09Z
<p>Does anyone know of an .eml to .pdf C# API?</p>
http://stackoverflow.com/questions/1231362/private-video-using-youtube-api-drupal/1263559#12635590Answer by MarlonRibunal for Private Video using YouTube API - DrupalMarlonRibunal2009-08-11T23:39:07Z2009-08-11T23:39:07Z<p>try Dash Player for Drupal. What I did is host the videos in the site and this is how they look with Dash Player <a href="http://www.salvation123.com/node/35" rel="nofollow">http://www.salvation123.com/node/35</a> </p>
<p>You can actually add YouTube videos on a playlist just RTFM on that ;-)</p>
http://stackoverflow.com/questions/1087606/sql-server-2005-query-statistics/1088211#10882111Answer by MarlonRibunal for SQL Server 2005 Query StatisticsMarlonRibunal2009-07-06T17:27:45Z2009-07-06T17:35:57Z<p>I suggest you visit <a href="http://sqlserverpedia.com/" rel="nofollow">http://sqlserverpedia.com/</a> and look for blog/article/demo/screencast/podcast specific to your needs. SQLServerPedia is a free Premier Online SQL Server resource.</p>
<p>Or are you specifically asking these questions right now: </p>
<blockquote>
<p>"Why is this query running slow? Is my
index getting used? Why does this
query run faster than this query?"</p>
</blockquote>
<p>The book "<a href="http://rads.stackoverflow.com/amzn/click/1906434026" rel="nofollow">Dissecting SQL Server Execution Plans</a>" will help you on this regard. A free ebook version is available <a href="http://www.red-gate.com/specials/Grant.htm?utm%5Fcontent=Grant080623" rel="nofollow">here</a>.</p>
<p>;-)
MarlonRibunal</p>
http://stackoverflow.com/questions/761039/user-registration-module-for-drupal/1051505#10515050Answer by MarlonRibunal for User Registration Module for DrupalMarlonRibunal2009-06-26T22:14:16Z2009-06-26T22:14:16Z<p>With regards "full-fledged user registration form", you can go to Admin >> Use Management >> Profiles then create/customize your fields and make sure that you tick the "Visible in user registration form" option. </p>
http://stackoverflow.com/questions/958197/importing-xml-data-into-ms-sql-server-programmatically/958328#9583280Answer by MarlonRibunal for Importing XML data into MS SQL server programmaticallyMarlonRibunal2009-06-05T21:56:32Z2009-06-05T21:56:32Z<p>Take a look at this bog post <a href="http://benchmarkitconsulting.com/colin-stasiuk/2009/01/15/parsing-xml-into-a-table-structure-possible-update/" rel="nofollow">http://benchmarkitconsulting.com/colin-stasiuk/2009/01/15/parsing-xml-into-a-table-structure-possible-update/</a></p>
<p>And this so question: <a href="http://stackoverflow.com/questions/444678/parsing-xml-into-a-sql-table-without-predefining-structure-possible">http://stackoverflow.com/questions/444678/parsing-xml-into-a-sql-table-without-predefining-structure-possible</a> </p>
http://stackoverflow.com/questions/121243/hidden-features-of-sql-server/232772#2327720Answer by MarlonRibunal for Hidden Features of SQL ServerMarlonRibunal2008-10-24T07:44:26Z2009-05-29T16:12:28Z<p>OK, here's my 2 cents: </p>
<p><a href="http://dbalink.wordpress.com/2008/10/24/querying-the-object-catalog-and-information-schema-views/" rel="nofollow">http://dbalink.wordpress.com/2008/10/24/querying-the-object-catalog-and-information-schema-views/</a> </p>
<p>I am too lazy to re-write the whole thing here, so please check my post. That may be trivial to many, but there will be some who will find it a "hidden gem".</p>
<p>EDIT:</p>
<p>After a while, I decided to add the code here so you don't have to jump to my blog to see the code.</p>
<pre><code>SELECT T.NAME AS [TABLE NAME], C.NAME AS [COLUMN NAME], P.NAME AS [DATA TYPE], P.MAX_LENGTH AS[SIZE], CAST(P.PRECISION AS VARCHAR) +‘/’+ CAST(P.SCALE AS VARCHAR) AS [PRECISION/SCALE]
FROM ADVENTUREWORKS.SYS.OBJECTS AS T
JOIN ADVENTUREWORKS.SYS.COLUMNS AS C
ON T.OBJECT_ID=C.OBJECT_ID
JOIN ADVENTUREWORKS.SYS.TYPES AS P
ON C.SYSTEM_TYPE_ID=P.SYSTEM_TYPE_ID
WHERE T.TYPE_DESC=‘USER_TABLE’;
</code></pre>
<p>Or, if you want to pull all the User Tables altogether, use CURSOR like this:</p>
<pre><code>DECLARE @tablename VARCHAR(60)
DECLARE cursor_tablenames CURSOR FOR
SELECT name FROM AdventureWorks.sys.tables
OPEN cursor_tablenames
FETCH NEXT FROM cursor_tablenames INTO @tablename
WHILE @@FETCH_STATUS = 0
BEGIN
SELECT t.name AS [TABLE Name], c.name AS [COLUMN Name], p.name AS [DATA Type], p.max_length AS[SIZE], CAST(p.PRECISION AS VARCHAR) +‘/’+ CAST(p.scale AS VARCHAR) AS [PRECISION/Scale]
FROM AdventureWorks.sys.objects AS t
JOIN AdventureWorks.sys.columns AS c
ON t.OBJECT_ID=c.OBJECT_ID
JOIN AdventureWorks.sys.types AS p
ON c.system_type_id=p.system_type_id
WHERE t.name = @tablename
AND t.type_desc=‘USER_TABLE’
ORDER BY t.name ASC
FETCH NEXT FROM cursor_tablenames INTO @tablename
END
CLOSE cursor_tablenames
DEALLOCATE cursor_tablenames
</code></pre>
<p>ADDITIONAL REFERENCE (my blog): <a href="http://dbalink.wordpress.com/2009/01/21/how-to-create-cursor-in-tsql/" rel="nofollow">http://dbalink.wordpress.com/2009/01/21/how-to-create-cursor-in-tsql/</a> </p>
http://stackoverflow.com/questions/922109/what-is-the-best-erd-tool-for-forward-enginnering-a-sql-server-database/922222#9222221Answer by MarlonRibunal for What is the best ERD tool for forward-enginnering a SQL Server database?MarlonRibunal2009-05-28T17:39:24Z2009-05-28T17:39:24Z<p>ERWin is still the most popular modeler out there. </p>
http://stackoverflow.com/questions/869261/in-sql-reporting-services-how-to-filter-a-dataset-according-to-a-parameter/870007#8700070Answer by MarlonRibunal for In SQL Reporting Services, how to filter a dataset according to a parameter?MarlonRibunal2009-05-15T17:45:34Z2009-05-15T17:45:34Z<p>I'd rather do the filtering on the backend. I have written a series on the basics of SSRS 2005 (and it is still in progress). For the basic parameter, see my latest post on the series (Using Parameter): <a href="http://dbalink.wordpress.com/2009/05/02/how-to-report-authoring-in-ssrs-2005-part-iv-adding-parameters/" rel="nofollow">http://dbalink.wordpress.com/2009/05/02/how-to-report-authoring-in-ssrs-2005-part-iv-adding-parameters/</a> </p>
http://stackoverflow.com/questions/851300/what-is-the-use-of-maintance-plans-in-sqlserver2005/851467#8514670Answer by MarlonRibunal for What is the use of maintance plans in SQLSERVER2005MarlonRibunal2009-05-12T06:46:29Z2009-05-12T06:46:29Z<p>Maintenance Plan provides you native tools that will keep your SQL Server up and running. You can schedule tasks such as Index maintenance, database backup, etc through a Maintenance Plan (see SQL Server Agent also). Check the twin site of StackOverflow, ServerFault, for related questions. I have seen gurus at ServerFault responding to queries similar to this. Check out <a href="http://sqlserverpedia.com/" rel="nofollow">http://sqlserverpedia.com/</a> you can find useful information in the site. ;-)</p>
http://stackoverflow.com/questions/851346/what-is-dts-ssis-in-sqlserver/851445#8514450Answer by MarlonRibunal for what is DTS/SSIS in SQLSERVER?MarlonRibunal2009-05-12T06:39:32Z2009-05-12T06:39:32Z<p>On SSIS, take a look at this related question. I have posted useful links for SSIS on this question: <a href="http://stackoverflow.com/questions/454802/what-is-ssis-package-what-does-it-do/454955#454955">http://stackoverflow.com/questions/454802/what-is-ssis-package-what-does-it-do/454955#454955</a> </p>
http://stackoverflow.com/questions/790315/simple-ssrs-report/794873#7948730Answer by MarlonRibunal for Simple SSRS ReportMarlonRibunal2009-04-27T19:12:53Z2009-04-27T19:12:53Z<p>You need a kick start with SSRS? I can help you with that. I actually wrote a beginner's series in my blog (in progress) <a href="http://dbalink.wordpress.com/2009/01/17/how-to-report-authoring-in-ssrs-2005-part-i-the-database/" rel="nofollow">http://dbalink.wordpress.com/2009/01/17/how-to-report-authoring-in-ssrs-2005-part-i-the-database/</a> </p>
<p>I have worked extensively with data with time variables, blah, blah,...</p>
<p>Good thing is you can send me sample data. I might be able to help you build the whole thing from the ground up. :-)</p>
http://stackoverflow.com/questions/794606/how-to-manage-local-sql-server-database-files/794820#7948200Answer by MarlonRibunal for How to manage local sql server database files?MarlonRibunal2009-04-27T18:57:05Z2009-04-27T18:57:05Z<p>Probably this is what you are looking for. I would want to write my answer here but I am too lazy to do that, but I am sending you to my blog post regarding Moving Data File in SQL Server;</p>
<p><a href="http://dbalink.wordpress.com/2008/11/06/how-to-moving-data-files/" rel="nofollow">http://dbalink.wordpress.com/2008/11/06/how-to-moving-data-files/</a> </p>
http://stackoverflow.com/questions/784076/reporting-services-2005-is-there-a-way-to-dymanically-change-a-report-header/784086#7840860Answer by MarlonRibunal for Reporting services 2005: Is there a way to dymanically change a report header?MarlonRibunal2009-04-24T00:18:04Z2009-04-24T00:18:04Z<p>Maybe you can find some info here: <a href="http://www.bigresource.com/MS_SQL-SSRS-Dynamic-Header-Jy99Q93u.html" rel="nofollow">http://www.bigresource.com/MS_SQL-SSRS-Dynamic-Header-Jy99Q93u.html</a> (scroll down to see more header-related links)</p>
<p>Or is this what you are looking for? <a href="http://social.msdn.microsoft.com/forums/en-US/vsreportcontrols/thread/a82d32e1-2314-4c09-a828-6ce2109a0252" rel="nofollow">http://social.msdn.microsoft.com/forums/en-US/vsreportcontrols/thread/a82d32e1-2314-4c09-a828-6ce2109a0252</a> </p>
http://stackoverflow.com/questions/782835/access-db-select-group-by-having-max-problem/782853#7828530Answer by MarlonRibunal for access db, select group by having max problemMarlonRibunal2009-04-23T17:55:59Z2009-04-23T17:55:59Z<p>Your query returns the MAX. Find a way to create a rule that would satisfy your requirements.</p>
<p>That "which appears most frequently" means what? appears>2? appears>3? appear>4?...</p>
http://stackoverflow.com/questions/757193/inline-sql-vs-stored-procedures/757216#7572160Answer by MarlonRibunal for Inline SQL vs Stored ProceduresMarlonRibunal2009-04-16T17:34:33Z2009-04-16T17:34:33Z<p>We do not exactly know the data you're working with. You can decide for yourself by looking at the Execution Plan.</p>
http://stackoverflow.com/questions/757094/what-is-this-process-in-sql-server-activity-monitor/757109#7571090Answer by MarlonRibunal for What is this process in Sql Server Activity monitor?MarlonRibunal2009-04-16T17:06:01Z2009-04-16T17:06:01Z<p><a href="http://msdn.microsoft.com/en-us/library/ms187730.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms187730.aspx</a></p>
<p>Quote from SQL Server Developer Center</p>
<blockquote>
<p>"DBCC INPUTBUFFER permissions default
to members of the sysadmin fixed
server role only, who can see any
SPID. Other users can see any SPID
they own. Permissions are not
transferable."
(<a href="http://msdn.microsoft.com/en-us/library/aa258826" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa258826</a>(SQL.80).aspx)</p>
</blockquote>
http://stackoverflow.com/questions/735306/sql-server-2005-stored-procedure-performance-problem/736139#7361390Answer by MarlonRibunal for SQL Server 2005 stored procedure performance problemMarlonRibunal2009-04-09T22:41:15Z2009-04-09T22:41:15Z<p>Recompile the Stored Proc then see what happens. This actually helps.</p>
http://stackoverflow.com/questions/702493/user-editing-own-active-directory-data/703042#7030420Answer by MarlonRibunal for User editing own Active Directory dataMarlonRibunal2009-03-31T21:03:11Z2009-03-31T21:03:11Z<p>Take a look at this <a href="http://www.novell.com/coolsolutions/feature/11204.html" rel="nofollow">http://www.novell.com/coolsolutions/feature/11204.html</a> </p>
http://stackoverflow.com/questions/692548/using-logic-in-tsql1Using Logic in TSQLMarlonRibunal2009-03-28T10:14:52Z2009-03-28T11:21:04Z
<p>I want to do something like this in TSQL (SQL Server 2005):</p>
<pre><code>IF (Column1 = x)
{
--CTE statement
}
ELSE
{
--SQL statement
}
</code></pre>
<p>Any help is appreciated.</p>
http://stackoverflow.com/questions/687523/marquee-in-html/687532#6875321Answer by MarlonRibunal for Marquee in HTMLMarlonRibunal2009-03-26T21:02:04Z2009-03-26T21:02:04Z<p>Something like this:</p>
<pre><code><MARQUEE id=Marquee2 title=""
style="BORDER-RIGHT: 1px; BORDER-TOP: 1px; PADDING-LEFT: 3px; Z-INDEX: 2; OVERFLOW: hidden; BORDER-LEFT: 1px; WIDTH: 5.197in; TEXT-INDENT: 0px; BORDER-BOTTOM: 1px; HEIGHT: 0.156in"
trueSpeed scrollDelay=150 MsoTextAlign="General">My Text Goes Here</MARQUEE>
</code></pre>
http://stackoverflow.com/questions/687471/excel-formula-or-vba-to-extract-data-based-on-another-cells-data/687478#6874781Answer by MarlonRibunal for EXCEL Formula or VBA To Extract Data Based on Another Cell's DataMarlonRibunal2009-03-26T20:37:25Z2009-03-26T20:37:25Z<p>try the vLookup function</p>
http://stackoverflow.com/questions/687213/what-websites-do-you-use-to-post-temporary-code-snippets/687235#6872352Answer by MarlonRibunal for What websites do you use to post temporary code snippets?MarlonRibunal2009-03-26T19:33:04Z2009-03-26T19:33:04Z<p>I am not sure if you mean by this:</p>
<p><a href="http://snipt.org/" rel="nofollow">http://snipt.org/</a> </p>
http://stackoverflow.com/questions/655412/php-set-time-to-pacific-daylight-saving-time1PHP Set time to Pacific daylight saving time MarlonRibunal2009-03-17T18:05:44Z2009-03-17T22:12:40Z
<p>In a PHP site, I have the current time setting: </p>
<p>D j M Y, G:ia</p>
<p>How do I change that to reflect current pacific time with the daylight saving time?</p>
http://stackoverflow.com/questions/632571/c-book-for-the-casual-beginner-c-programmer/632586#6325865Answer by MarlonRibunal for C# book for the casual, beginner, C# programmer?MarlonRibunal2009-03-10T22:47:48Z2009-03-13T02:13:21Z<p><a href="http://rads.stackoverflow.com/amzn/click/0596514824" rel="nofollow">HeadFirst C#</a> or <a href="http://rads.stackoverflow.com/amzn/click/1890774464" rel="nofollow">Murach's C# 2008</a> or <a href="http://rads.stackoverflow.com/amzn/click/047019135X" rel="nofollow">Wrox's Beginning Microsoft Visual C#</a></p>
<p>I am also a beginner. I have the Following C# Books:</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0596514824" rel="nofollow">HeadFirst C#</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1890774464" rel="nofollow">Murach's C# 2008</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0470191376" rel="nofollow">Wrox's Professional C# 2008</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/059651610X" rel="nofollow">C# 3.0 Cookbook</a></li>
</ul>
http://stackoverflow.com/questions/620740/is-there-a-way-to-get-a-difference-report-on-two-jet-mdb-databases/620762#6207620Answer by MarlonRibunal for Is there a way to get a difference report on two Jet (.mdb) databases?MarlonRibunal2009-03-06T22:48:42Z2009-03-06T22:48:42Z<p>Take a look at this <a href="http://www.download.com/StarInix-Database-Compare/3000-10254_4-10614062.html" rel="nofollow">http://www.download.com/StarInix-Database-Compare/3000-10254_4-10614062.html</a> </p>
http://stackoverflow.com/questions/1258469/sql-server-2005-syntax-help-select-info-based-upon-max-value-of-sub-query/1258492#1258492Comment by MarlonRibunal on SQL Server 2005 Syntax Help - "Select Info based upon Max Value of Sub Query"MarlonRibunal2009-08-11T23:47:49Z2009-08-11T23:47:49Z@JP I had a similar case and used CTE. I think CTE is cool; I never had a performance issue.
@Sean Reilly - your solution might solve the problem I've been having! I'll see if it can help me - thanks!
@hamlin - here's a free ebook on Execution Plan - <a href="http://dbalink.wordpress.com/2008/08/08/dissecting-sql-server-execution-plans-free-ebook/" rel="nofollow">dbalink.wordpress.com/2008/08/…</a> http://stackoverflow.com/questions/859988/phantom-joomla-recordComment by MarlonRibunal on Phantom Joomla! RecordMarlonRibunal2009-05-13T19:40:10Z2009-05-13T19:40:10Zclean your cache and check againhttp://stackoverflow.com/questions/849678/downgrading-sql-server-2008-to-sql-server-2005Comment by MarlonRibunal on Downgrading SQL server 2008 to SQL Server 2005MarlonRibunal2009-05-11T19:42:57Z2009-05-11T19:42:57ZAny particular problem with SQL Server 2008?http://stackoverflow.com/questions/808871/how-to-grab-attachment-programmatically-c-from-a-pop3-mail/808887#808887Comment by MarlonRibunal on How to grab attachment programmatically (C#) from a POP3 mail? MarlonRibunal2009-04-30T20:34:15Z2009-04-30T20:34:15Znot much about grabbing the attachment ;-)http://stackoverflow.com/questions/800910/sql-grouping-by-all-the-columnsComment by MarlonRibunal on SQL grouping by all the columnsMarlonRibunal2009-04-29T04:45:52Z2009-04-29T04:45:52Zwhat are you trying to accomplish?http://stackoverflow.com/questions/96501/perks-for-new-programmers/96678#96678Comment by MarlonRibunal on Perks for new programmersMarlonRibunal2009-04-28T21:43:41Z2009-04-28T21:43:41Z@tsilb I don't really get your comment. You may probably want to paraphrase it ;-)http://stackoverflow.com/questions/782835/access-db-select-group-by-having-max-problem/782853#782853Comment by MarlonRibunal on access db, select group by having max problemMarlonRibunal2009-04-23T18:15:57Z2009-04-23T18:15:57ZLook at JP's answer. Maybe that will be enough for what you're looking for. :-)http://stackoverflow.com/questions/780319/how-to-create-a-custom-file-extension-in-cComment by MarlonRibunal on how to create a custom file extension in C#?MarlonRibunal2009-04-23T17:47:44Z2009-04-23T17:47:44Z@John - See Jon Limjap's and Franci Penov's answers :-)http://stackoverflow.com/questions/757055/database-design-question-discriminatory-column-vs-foreign-key/757069#757069Comment by MarlonRibunal on Database design question: discriminatory column vs foreign keyMarlonRibunal2009-04-16T17:03:15Z2009-04-16T17:03:15Z+1. I think this is the correct approach. You have to look ahead to the possible changes in the future. Be flexible.http://stackoverflow.com/questions/736441/ive-decided-i-want-to-become-a-programmer-but-i-have-some-concerns-or-what-d/736446#736446Comment by MarlonRibunal on I've decided I want to become a programmer, but I have some concerns.. Or, What does it take to become a computer programmer?MarlonRibunal2009-04-10T01:29:44Z2009-04-10T01:29:44ZOne has to have the "passion" and patience, and persistence, and training, and more passion. +1http://stackoverflow.com/questions/736441/ive-decided-i-want-to-become-a-programmer-but-i-have-some-concerns-or-what-d/736453#736453Comment by MarlonRibunal on I've decided I want to become a programmer, but I have some concerns.. Or, What does it take to become a computer programmer?MarlonRibunal2009-04-10T01:27:03Z2009-04-10T01:27:03Z+1 - This sums it up "You do not have to learn this stuff overnight". That is called PATIENCE and PERSISTENCE.http://stackoverflow.com/questions/96501/perks-for-new-programmers/96678#96678Comment by MarlonRibunal on Perks for new programmersMarlonRibunal2009-04-02T22:26:04Z2009-04-02T22:26:04Z@balabaster Books are training materials. So it's a win-win if companies give them away to employees :-)http://stackoverflow.com/questions/692548/using-logic-in-tsql/692574#692574Comment by MarlonRibunal on Using Logic in TSQLMarlonRibunal2009-03-28T10:54:16Z2009-03-28T10:54:16ZOr maybe I should do the logic inside the CTE? How to approach this problem?http://stackoverflow.com/questions/692548/using-logic-in-tsql/692574#692574Comment by MarlonRibunal on Using Logic in TSQLMarlonRibunal2009-03-28T10:48:12Z2009-03-28T10:48:12ZI'm wrapping this in an SP. I do not know if this is doable at all. http://stackoverflow.com/questions/612248/eml-to-pdf-api/612273#612273Comment by MarlonRibunal on .eml to .pdf APIMarlonRibunal2009-03-04T20:53:01Z2009-03-04T20:53:01ZI still want the API :-)