CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 06 Aug 2025 15:30:33 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100322225938
location: https://web.archive.org/web/20100322225938/https://forums.oreilly.com/user/90/JoeAlbahari/
server-timing: captures_list;dur=0.717671, exclusion.robots;dur=0.031022, exclusion.robots.policy;dur=0.019344, esindex;dur=0.015905, cdx.remote;dur=7.366959, LoadShardBlock;dur=228.100268, PetaboxLoader3.datanode;dur=67.059624, PetaboxLoader3.resolve;dur=136.309005
x-app-server: wwwb-app202
x-ts: 302
x-tr: 266
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app202; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 06 Aug 2025 15:30:35 GMT
content-type: text/html;charset=utf-8
x-archive-orig-date: Mon, 22 Mar 2010 22:59:43 GMT
x-archive-orig-server: Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.8
x-archive-orig-x-powered-by: PHP/5.2.8
x-archive-orig-cache-control: no-cache, must-revalidate, max-age=0
x-archive-orig-expires: 0
x-archive-orig-pragma: no-cache
x-archive-orig-connection: close
x-archive-orig-transfer-encoding: chunked
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 22 Mar 2010 22:59:38 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 08 May 2009 14:13:01 GMT", ; rel="prev memento"; datetime="Wed, 20 Jan 2010 01:06:40 GMT", ; rel="memento"; datetime="Mon, 22 Mar 2010 22:59:38 GMT", ; rel="next memento"; datetime="Mon, 19 Apr 2010 18:11:14 GMT", ; rel="last memento"; datetime="Thu, 24 Mar 2011 14:22:42 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_14_20100322201859_crawl103-c/52_14_20100322225828_crawl100.arc.gz
server-timing: captures_list;dur=0.579842, exclusion.robots;dur=0.024914, exclusion.robots.policy;dur=0.014874, esindex;dur=0.009513, cdx.remote;dur=13.097189, LoadShardBlock;dur=800.656468, PetaboxLoader3.datanode;dur=248.734442, PetaboxLoader3.resolve;dur=588.981702, load_resource;dur=226.409466
x-app-server: wwwb-app202
x-ts: 200
x-tr: 1152
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
JoeAlbahari - Viewing Profile
O'Reilly Forums > Viewing Profile

Profile
Personal Photo
Rating
Options
Options
Personal Statement
JoeAlbahari doesn't have a personal statement currently.
Personal Info
JoeAlbahari
Advanced Member
Age Unknown years old
![]()
Perth, Australia
Birthday Unknown
Interests
No Information
Statistics
Joined: 15-February 08
Profile Views: 4,165*
Last Seen: Today, 04:06 AM
Local Time: Mar 23 2010, 06:59 AM
275 posts (0 per day)
Contact Information
![]() ![]() ![]() ![]() * Profile views updated each hour
![]() |
Topics
Posts
Gallery
Comments
Friends
My Content
15 May 2009
Hi everyone
I've set up a special forum for registering and voting on feature requests for LINQPad: linqpad.uservoice.com With this, you can see the relative popularity and status of features requests. Joe
1 Apr 2009
Hi everyone
I'm hosting a live webinar with O'Reilly on April 16 to demonstrate LINQPad's new support for querying custom Entity Framework and LINQ to SQL types: https://oreilly.com/emails/linqpad2-prg.html There will also be a chance to ask questions and talk to me directly about LINQPad. Attendance is limited, so you will need to pre-register. The new version of LINQPad with EF support will be rolled out soon. If you'd like to preview it now, you can download the beta here: https://www.linqpad.net/Beta.aspx (Go to Help | What's New to see the complete list of new features.) Hope to see you at the webinar! Regards Joe Albahari
20 Mar 2009
I'm thinking of adding an automation interface for LINQPad. This would mean you could reference LINQPad.exe from an external program and then automate the execution of queries like this:
CODE using LINQPad.Automation; static void Main() { var queryOutput = Query.Run ("myquery.linq"); if (queryOutput.Successful) File.WriteAllText ("results.html", queryOutput.Results); } Here's what the complete automation interface might look like: CODE namespace Automation { // All members threadsafe public class Query : IDisposable { // args would be for queries of type "C# Program" // or "VB Program" and would get passed to the Main method. public Query (string fileToOpen, params object[] optionalArgs) { } public ResultsFormat ResultsFormat { get; set; } public void Start () { } public void Start (bool waitUntilComplete) { } public bool IsExecuting { get; } public void Cancel () { } public WaitHandle WaitHandle { get; } public QueryOutput Output { get; } public void Dispose () { } // Helper method public static QueryOutput Run (string filePath) { using (var query = new Query (filePath)) { query.Start (true); return query.Output; } } } public enum ResultsFormat { // Default - identical to LINQPad's standard output Xhtml, // No fluff - ideal for regression testing Text, // This would be effective for queries that dumped // a single result set. CSV } public class QueryOutput { public readonly bool Successful; public readonly string Results; public readonly string SqlTranslation; public readonly string LambdaTranslation; public readonly string ILTranslation; } } Command-line support would build on this, although it would expose only a small subset of the features available via the automation interface. It would also be possible to automate LINQPad from within LINQPad itself - so you could run several queries in one go. What are people's thoughts? Joe
14 Nov 2008
Autocompletion for LINQPad is now in beta and I need 20 more beta testers.
If you use LINQPad on a daily basis and would like to give feedback, please contact me at https://www.linqpad.net/feedback.aspx with your full name and e-mail address, by November 18. Note that the timeline is tight: the plan is to go live fairly soon if no major problems show up. Thanks! Joe
10 Oct 2008
Hi everyone
I've had feedback from someone who's requested a setup program for LINQPad (rather than a standalone executable). Here are the reasons I was given: 1. Shortcut 2. Place the application in the folder designed for it 3. Keep track of applications installed 4. Easy uninstall when it is placed where it belongs 5. To keep informations about my database etc. I'm interested in other people's thoughts on this one: which would you prefer, a standalone 'click-and-run' executable, or a .msi setup program? Joe |
Last Visitors
Comments
Other users have left no comments for JoeAlbahari.
Friends
There are no friends to display.
![]() |
![]() |
Lo-Fi Version | Time is now: 22nd March 2010 - 02:59 PM |