You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
(9) |
May
(28) |
Jun
(54) |
Jul
(68) |
Aug
(34) |
Sep
(20) |
Oct
(62) |
Nov
(58) |
Dec
(77) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(91) |
Feb
(101) |
Mar
(73) |
Apr
(107) |
May
(56) |
Jun
(43) |
Jul
(68) |
Aug
(31) |
Sep
(35) |
Oct
(50) |
Nov
(20) |
Dec
(37) |
2004 |
Jan
(17) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(3) |
Jun
(11) |
Jul
(8) |
Aug
(22) |
Sep
(10) |
Oct
(9) |
Nov
(17) |
Dec
(6) |
2005 |
Jan
(14) |
Feb
(11) |
Mar
(6) |
Apr
(30) |
May
(17) |
Jun
(57) |
Jul
(18) |
Aug
(18) |
Sep
(32) |
Oct
(49) |
Nov
(19) |
Dec
(40) |
2006 |
Jan
(48) |
Feb
(68) |
Mar
(74) |
Apr
(92) |
May
(90) |
Jun
(60) |
Jul
(25) |
Aug
(47) |
Sep
(36) |
Oct
(64) |
Nov
(57) |
Dec
(21) |
2007 |
Jan
(74) |
Feb
(24) |
Mar
(49) |
Apr
(37) |
May
(56) |
Jun
(27) |
Jul
(23) |
Aug
(24) |
Sep
(24) |
Oct
(58) |
Nov
(13) |
Dec
(9) |
2008 |
Jan
(41) |
Feb
(16) |
Mar
(53) |
Apr
(19) |
May
(53) |
Jun
(20) |
Jul
(44) |
Aug
(12) |
Sep
(19) |
Oct
(22) |
Nov
(64) |
Dec
(14) |
2009 |
Jan
(16) |
Feb
(37) |
Mar
(30) |
Apr
(24) |
May
(3) |
Jun
(14) |
Jul
(39) |
Aug
(30) |
Sep
(38) |
Oct
(10) |
Nov
(9) |
Dec
(30) |
2010 |
Jan
(27) |
Feb
(9) |
Mar
(8) |
Apr
(38) |
May
(17) |
Jun
(2) |
Jul
(15) |
Aug
(3) |
Sep
(9) |
Oct
(3) |
Nov
(14) |
Dec
(6) |
2011 |
Jan
(1) |
Feb
(14) |
Mar
(18) |
Apr
(7) |
May
(3) |
Jun
(5) |
Jul
(3) |
Aug
|
Sep
(3) |
Oct
(3) |
Nov
(3) |
Dec
(2) |
2012 |
Jan
(2) |
Feb
(2) |
Mar
(1) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
(4) |
Nov
(5) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Stephen W. <wei...@gm...> - 2008-05-01 20:45:07
|
True... I come from more of a DB background and love playing with SQL, data integration and reuse and such -getting a bit carried away. On Thu, May 1, 2008 at 3:44 PM, Neil Young <ny...@as...> wrote: > Technically, that WHERE is in a SELECT subquery syntax, not the actual > INSERT syntax. > > Neil > > Stephen Weinberg wrote: > > Side track since the question is answered, but you can use a where > clause > > with insert if you want to select rows from another table (or group of > > tables) and add them to the new table that way. > > > > insert into table_2 (col1, col2, col3) > > select A. B, C > > from table_0 join table_1 on table_0.id = table_1.id > > > > > > > > Stephen > > > > On Thu, May 1, 2008 at 3:02 PM, Neil Rest <Nei...@rc...> wrote: > > > > > >> Does INSERT take a WHERE? A new row wouldn't be qualified by a WHERE > >> clause. > >> If you're updating a record, try UPDATE. > >> > >> > >> At 02:51 PM 5/1/2008, "Roderick Thomas" <tho...@ms...> wrote: > >> > >> > >>> $query_LogRecordNum="INSERT INTO ChangeLog WHERE conuid='$conuid' > >>> AND changedate='$added_reportdate' SET recordnum='$added_recordnum'"; > >>> > >> Neil > >> -- > >> Nei...@rc... > >> > >> If liberty means anything at all, it means the right to tell people > >> what they do not want to hear. > >> -- George Orwell, 1945 > >> > >> > >> > ------------------------------------------------------------------------- > >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > >> Don't miss this year's exciting event. There's still time to save $100. > >> Use priority code J8TL2D2. > >> > >> > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > >> _______________________________________________ > >> chiPHPug-discuss mailing list > >> chi...@li... > >> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > >> > >> > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > > Don't miss this year's exciting event. There's still time to save $100. > > Use priority code J8TL2D2. > > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > > _______________________________________________ > > chiPHPug-discuss mailing list > > chi...@li... > > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: Neil Y. <ny...@as...> - 2008-05-01 20:40:13
|
Technically, that WHERE is in a SELECT subquery syntax, not the actual INSERT syntax. Neil Stephen Weinberg wrote: > Side track since the question is answered, but you can use a where clause > with insert if you want to select rows from another table (or group of > tables) and add them to the new table that way. > > insert into table_2 (col1, col2, col3) > select A. B, C > from table_0 join table_1 on table_0.id = table_1.id > > > > Stephen > > On Thu, May 1, 2008 at 3:02 PM, Neil Rest <Nei...@rc...> wrote: > > >> Does INSERT take a WHERE? A new row wouldn't be qualified by a WHERE >> clause. >> If you're updating a record, try UPDATE. >> >> >> At 02:51 PM 5/1/2008, "Roderick Thomas" <tho...@ms...> wrote: >> >> >>> $query_LogRecordNum="INSERT INTO ChangeLog WHERE conuid='$conuid' >>> AND changedate='$added_reportdate' SET recordnum='$added_recordnum'"; >>> >> Neil >> -- >> Nei...@rc... >> >> If liberty means anything at all, it means the right to tell people >> what they do not want to hear. >> -- George Orwell, 1945 >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save $100. >> Use priority code J8TL2D2. >> >> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >> _______________________________________________ >> chiPHPug-discuss mailing list >> chi...@li... >> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss >> >> > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: Stephen W. <wei...@gm...> - 2008-05-01 20:22:26
|
Side track since the question is answered, but you can use a where clause with insert if you want to select rows from another table (or group of tables) and add them to the new table that way. insert into table_2 (col1, col2, col3) select A. B, C from table_0 join table_1 on table_0.id = table_1.id Stephen On Thu, May 1, 2008 at 3:02 PM, Neil Rest <Nei...@rc...> wrote: > Does INSERT take a WHERE? A new row wouldn't be qualified by a WHERE > clause. > If you're updating a record, try UPDATE. > > > At 02:51 PM 5/1/2008, "Roderick Thomas" <tho...@ms...> wrote: > > >$query_LogRecordNum="INSERT INTO ChangeLog WHERE conuid='$conuid' > >AND changedate='$added_reportdate' SET recordnum='$added_recordnum'"; > > > Neil > -- > Nei...@rc... > > If liberty means anything at all, it means the right to tell people > what they do not want to hear. > -- George Orwell, 1945 > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: Roderick T. <tho...@ms...> - 2008-05-01 20:16:53
|
Thanks for all of the input. It was a tremendous help. I had to re-write the query as follows: "UPDATE ChangeLog SET recordnum='$added_recordnum' WHERE conuid='$conuid' AND changedate='$added_reportdate'" On Thu, 01 May 2008 16:02:06 -0400, Neil Rest <Nei...@rc...> wrote: > Does INSERT take a WHERE? A new row wouldn't be qualified by a WHERE > clause. > If you're updating a record, try UPDATE. > > > At 02:51 PM 5/1/2008, "Roderick Thomas" <tho...@ms...> wrote: > >> $query_LogRecordNum="INSERT INTO ChangeLog WHERE conuid='$conuid' >> AND changedate='$added_reportdate' SET recordnum='$added_recordnum'"; > > > Neil > -- > Nei...@rc... > > If liberty means anything at all, it means the right to tell people > what they do not want to hear. > -- George Orwell, 1945 > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > |
From: Sara T. <sa...@sa...> - 2008-05-01 20:03:51
|
Yeah... your "insert into" statement isn't giving any values to insert. You might mean "insert into changelog (field1, field2, field3) select value1, value2, value3 where " etc. etc. On Thu, May 1, 2008 at 2:51 PM, Roderick Thomas <tho...@ms...> wrote: > I'm receiving a syntax error and it has me stumped. Please review the > attached file at your convenience to see what I'm missing. Your time and > consideration is greatly appreciated. > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > |
From: Neil R. <Nei...@rc...> - 2008-05-01 20:02:34
|
Does INSERT take a WHERE? A new row wouldn't be qualified by a WHERE clause. If you're updating a record, try UPDATE. At 02:51 PM 5/1/2008, "Roderick Thomas" <tho...@ms...> wrote: >$query_LogRecordNum="INSERT INTO ChangeLog WHERE conuid='$conuid' >AND changedate='$added_reportdate' SET recordnum='$added_recordnum'"; Neil -- Nei...@rc... If liberty means anything at all, it means the right to tell people what they do not want to hear. -- George Orwell, 1945 |
From: Trevor O. <tr...@gm...> - 2008-05-01 19:59:08
|
errr UPDATE, that's what I meant. On Thu, May 1, 2008 at 4:00 PM, Neil Young <ny...@as...> wrote: > It looks like you might mean update, rather than insert - change the SQL > to: > > UPDATE ChangeLog SET recordnum = '$added_recordnum' WHERE > conuid='00000000001234567800' AND changedate='2008-05-01 15:44:07' > > > Neil > > > Roderick Thomas wrote: > > I'm receiving a syntax error and it has me stumped. Please review the > > attached file at your convenience to see what I'm missing. Your time > > and consideration is greatly appreciated. > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > > Don't miss this year's exciting event. There's still time to save $100. > > Use priority code J8TL2D2. > > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > chiPHPug-discuss mailing list > > chi...@li... > > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- -Trevor Oldak |
From: Trevor O. <tr...@gm...> - 2008-05-01 19:57:03
|
I've never seen SET used in an INSERT statement like that...I am self-taught, so maybe I'm missing something, but shouldn't it be UPADATE instead of INSERT? On Thu, May 1, 2008 at 3:51 PM, Roderick Thomas <tho...@ms...> wrote: > I'm receiving a syntax error and it has me stumped. Please review the > attached file at your convenience to see what I'm missing. Your time and > consideration is greatly appreciated. > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > -- -Trevor Oldak |
From: Neil Y. <ny...@as...> - 2008-05-01 19:56:22
|
It looks like you might mean update, rather than insert - change the SQL to: UPDATE ChangeLog SET recordnum = '$added_recordnum' WHERE conuid='00000000001234567800' AND changedate='2008-05-01 15:44:07' Neil Roderick Thomas wrote: > I'm receiving a syntax error and it has me stumped. Please review the > attached file at your convenience to see what I'm missing. Your time > and consideration is greatly appreciated. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > ------------------------------------------------------------------------ > > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |
From: Roderick T. <tho...@ms...> - 2008-05-01 19:51:24
|
I'm receiving a syntax error and it has me stumped. Please review the attached file at your convenience to see what I'm missing. Your time and consideration is greatly appreciated. |
From: Richard L. <ce...@l-...> - 2008-05-01 18:08:56
|
This is all I know. Follow up with Ruchi: -------------------------- Original Message -------------------------- Subject: PHP Developer @ ECRUSH.COM From: "Kaushik, Ruchi" <RKa...@Vo...> Date: Thu, May 1, 2008 10:53 am To: ce...@l-... ---------------------------------------------------------------------- Hello, We have an open requirement with one of our client ECRUSH.COM INC. Please advise us regarding your availability status, resume and salary expectations. If you are not interested in this job then please feel free to forward this information to any of your friends whom you think would qualify for it. I would really appreciate that. eCRUSH, a leading teen social networking website, is looking for a contract php developer to assist us with our fast growth. This is minimally a 6-month contract, that will likely extend through the end of 2008 --(eCRUSH is a wholly owned subsidiary of Hearst Communications, parent of Esquire, Cosmopolitan, and other magazine brands.) PHP Developer Location: Chicago, IL United States Duration: 6 months plus Description: We are seeking candidates who know the in's and out's of PHP to join our programming team. The candidate will work directly on the site to develop and maintain applications, build reporting tools, and help re-write code. This is a great opportunity to bring your skills to the table and help build an exciting consumer-facing web site. Requirements: Experience with PHP and MySQL database interaction HTML and JavaScript 4+ years of active day-to-day PHP programming. Experience with Subversion a huge plus. Ability to work in a fast paced, multi-task team environment. Extra consideration will be given to candidates with experience in the following areas: Flash/action scripting AJAX XML/SOAP API Development RSS Perl. Regards, Ruchi Kaushik, MBA Lead Technical Recruiter Certified Six Sigma Yellow Belt Volt Technical Resources | 3025 Highland Parkway, suite 550 | Downers Grove, IL 60515 rka...@vo... <mailto:ark...@vo...> | t:630.971.9711 | tf:800.573.8658 X 17 | f:630.971.9767 "Recognized by FORTUNE Magazine as One of America's Most Admired Companies" -- Can you do me a favor? Sign up for http://Facebook.com Add http://apps.facebook.com/whereivebeen/ Review it, and let 'em know Rich sent you. http://www.facebook.com/apps/application.php?id=2603626322 (Scroll down to the middle of the middle column) Give it a 5-star rating please :-) (If you can't go 5-star, email me to tell me why) |
From: Peter H. <ph...@ma...> - 2008-04-28 18:10:06
|
On Mon, Apr 21, 2008 at 12:58:51PM -0400, Neil Rest wrote: > So the question I'm broadcasting is: How would you like to be able to > search your own collection of bookmarks? Secondarily, what good > (i.e., "user friendly" for some value of user) ways of doing searches > do you know of, or think ought to go into an ideal bookmarker? Firefox 3 includes some upgrades to bookmarking. The one-click bookmark button in the location bar is the most visible, but it also includes tagging and search folders. This is most of what I want out of a bookmarking system. The rest is that I want a copy of every bookmarked page saved to my hard drive for searching and later retrieval if the site ceases to exist. -- Peter Harkins - http://push.cx - http://NearbyGamers.com |
From: Jason R. <ja...@ho...> - 2008-04-28 11:55:47
|
I'm not clear on what you are really getting at but I do know that there are a lot of annoyances with bookmarks. Netscape had started down a great path and Mozilla has not even gotten back to that point. There are a couple firefox extensions that synch bookmarks to server. Are you looking at implementing search on a website as well as in the fat client (browser) or just one or the other? Neil Rest wrote: > Design precedes implementation . . . > > > At 06:52 PM 4/27/2008, "Jough Dempsey" <jou...@gm...> wrote: >> I know what you mean about wanting your links on your site. You >> mentioned SQLite in FF3, which may be an option for offline caching, >> but you may also want to consider Google Gears, which works in more >> browsers and may or may not be more robust (if slightly less "open" >> than SQLite). >> >> - J. >> >> On Sun, Apr 27, 2008 at 6:38 PM, Neil Rest <Nei...@rc...> wrote: >>> I don't want my data residing on an alien server. They can and do >>> vanish; get bought/sold; and unilaterally change their privacy and >>> access policies. >>> This isn't about "my site". I expect code to be open; data is >>> proprietary. (Hey, this list gets a "sourceforge" link appended to >>> each email!) >>> >>> (Data interchange facilities are certainly on the list; we can >>> exchange all or part of our respective lists, even retaining origin >>> stamps for individual entries.) >>> >>> >>> At 05:45 PM 4/27/2008, "Jough Dempsey" <jou...@gm...> wrote: >>> >I like the way Magnolia lets you add bookmarks from a simple bookmarklet: >>> > >>> >http://ma.gnolia.com/ >>> > >>> >Delicious is of course the leader in this area, but its interface >>> >leaves a bit to be desired: http://del.icio.us >>> > >>> >http://reddit.com/ and http://digg.com focus on the social >> bookmarking aspect. > > >>> > > On 4/21/08, Neil Rest <Nei...@rc...> wrote: >>> > > > The last time I looked, there didn't seem to be a good >> database for web >>> > > > bookmarks. Considering how much weird stuff has a dozen >>> > different projects >>> > > > going on out there, it seemed an odd gap, so I decided I >>> > wanted to do one. >>> > > > (I now have almost enough time, energy, and stability to start >>> > serious work. >>> > > > We'll see.) >>> > > > >>> > > > The biggest, broadest question is the various lookup approaches to >>> > > > implement. The more the better, broadly -- you ought to >> be in charge of >>> > > > your collection, not vice versa -- but I'm no library >> scientist, or even >>> > > > retrieval expert. >>> >>>>> > >>> > > > So the question I'm broadcasting is: How would you like >> to be able to >>> > > > search your own collection of bookmarks? Secondarily, >> what good (i.e., >>> > > > "user friendly" for some value of user) ways of doing searches >>> > do you know >>> > > > of, or think ought to go into an ideal bookmarker? > > > Neil > -- > Nei...@rc... > > Anyone who isn't confused really doesn't understand the situation. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |
From: Neil R. <Nei...@rc...> - 2008-04-28 01:13:51
|
Design precedes implementation . . . At 06:52 PM 4/27/2008, "Jough Dempsey" <jou...@gm...> wrote: >I know what you mean about wanting your links on your site. You >mentioned SQLite in FF3, which may be an option for offline caching, >but you may also want to consider Google Gears, which works in more >browsers and may or may not be more robust (if slightly less "open" >than SQLite). > >- J. > >On Sun, Apr 27, 2008 at 6:38 PM, Neil Rest <Nei...@rc...> wrote: > > I don't want my data residing on an alien server. They can and do > > vanish; get bought/sold; and unilaterally change their privacy and > > access policies. > > This isn't about "my site". I expect code to be open; data is > > proprietary. (Hey, this list gets a "sourceforge" link appended to > > each email!) > > > > (Data interchange facilities are certainly on the list; we can > > exchange all or part of our respective lists, even retaining origin > > stamps for individual entries.) > > > > > > At 05:45 PM 4/27/2008, "Jough Dempsey" <jou...@gm...> wrote: > > >I like the way Magnolia lets you add bookmarks from a simple bookmarklet: > > > > > >http://ma.gnolia.com/ > > > > > >Delicious is of course the leader in this area, but its interface > > >leaves a bit to be desired: http://del.icio.us > > > > > >http://reddit.com/ and http://digg.com focus on the social > bookmarking aspect. > > > > On 4/21/08, Neil Rest <Nei...@rc...> wrote: > > > > > The last time I looked, there didn't seem to be a good > database for web > > > > > bookmarks. Considering how much weird stuff has a dozen > > > different projects > > > > > going on out there, it seemed an odd gap, so I decided I > > > wanted to do one. > > > > > (I now have almost enough time, energy, and stability to start > > > serious work. > > > > > We'll see.) > > > > > > > > > > The biggest, broadest question is the various lookup approaches to > > > > > implement. The more the better, broadly -- you ought to > be in charge of > > > > > your collection, not vice versa -- but I'm no library > scientist, or even > > > > > retrieval expert. > > > > > > > > > > > > So the question I'm broadcasting is: How would you like > to be able to > > > > > search your own collection of bookmarks? Secondarily, > what good (i.e., > > > > > "user friendly" for some value of user) ways of doing searches > > > do you know > > > > > of, or think ought to go into an ideal bookmarker? Neil -- Nei...@rc... Anyone who isn't confused really doesn't understand the situation. |
From: Jough D. <jou...@gm...> - 2008-04-27 23:52:13
|
I know what you mean about wanting your links on your site. You mentioned SQLite in FF3, which may be an option for offline caching, but you may also want to consider Google Gears, which works in more browsers and may or may not be more robust (if slightly less "open" than SQLite). - J. On Sun, Apr 27, 2008 at 6:38 PM, Neil Rest <Nei...@rc...> wrote: > I don't want my data residing on an alien server. They can and do > vanish; get bought/sold; and unilaterally change their privacy and > access policies. > This isn't about "my site". I expect code to be open; data is > proprietary. (Hey, this list gets a "sourceforge" link appended to > each email!) > > (Data interchange facilities are certainly on the list; we can > exchange all or part of our respective lists, even retaining origin > stamps for individual entries.) > > > At 05:45 PM 4/27/2008, "Jough Dempsey" <jou...@gm...> wrote: > >I like the way Magnolia lets you add bookmarks from a simple bookmarklet: > > > >http://ma.gnolia.com/ > > > >Delicious is of course the leader in this area, but its interface > >leaves a bit to be desired: http://del.icio.us > > > >http://reddit.com/ and http://digg.com focus on the social bookmarking aspect. > > > >I guess your first design decision is how are you going to > >differentiate your site from the throngs of competitors? What itch > >are you scratching, or how are you scratching a current itch better > >than what's already out there? > > > > > > On 4/21/08, Neil Rest <Nei...@rc...> wrote: > > > > The last time I looked, there didn't seem to be a good database for web > > > > bookmarks. Considering how much weird stuff has a dozen > > different projects > > > > going on out there, it seemed an odd gap, so I decided I > > wanted to do one. > > > > (I now have almost enough time, energy, and stability to start > > serious work. > > > > We'll see.) > > > > > > > > The biggest, broadest question is the various lookup approaches to > > > > implement. The more the better, broadly -- you ought to be in charge of > > > > your collection, not vice versa -- but I'm no library scientist, or even > > > > retrieval expert. > > > > > > > > > So the question I'm broadcasting is: How would you like to be able to > > > > search your own collection of bookmarks? Secondarily, what good (i.e., > > > > "user friendly" for some value of user) ways of doing searches > > do you know > > > > of, or think ought to go into an ideal bookmarker? > > > Neil > -- > Nei...@rc... > > Women consititute half the worlds population, perform nearly two > thirds of the world's work, receive one tenth of the world's income > and own less than one hundredth of the worlds wealth. > -- UN findings from 1975-1985 Decade of Women > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- Jough Dempsey http://jough.com 312.399.6379 (mobile) |
From: Neil R. <Nei...@rc...> - 2008-04-27 23:38:56
|
I don't want my data residing on an alien server. They can and do vanish; get bought/sold; and unilaterally change their privacy and access policies. This isn't about "my site". I expect code to be open; data is proprietary. (Hey, this list gets a "sourceforge" link appended to each email!) (Data interchange facilities are certainly on the list; we can exchange all or part of our respective lists, even retaining origin stamps for individual entries.) At 05:45 PM 4/27/2008, "Jough Dempsey" <jou...@gm...> wrote: >I like the way Magnolia lets you add bookmarks from a simple bookmarklet: > >http://ma.gnolia.com/ > >Delicious is of course the leader in this area, but its interface >leaves a bit to be desired: http://del.icio.us > >http://reddit.com/ and http://digg.com focus on the social bookmarking aspect. > >I guess your first design decision is how are you going to >differentiate your site from the throngs of competitors? What itch >are you scratching, or how are you scratching a current itch better >than what's already out there? > > On 4/21/08, Neil Rest <Nei...@rc...> wrote: > > > The last time I looked, there didn't seem to be a good database for web > > > bookmarks. Considering how much weird stuff has a dozen > different projects > > > going on out there, it seemed an odd gap, so I decided I > wanted to do one. > > > (I now have almost enough time, energy, and stability to start > serious work. > > > We'll see.) > > > > > > The biggest, broadest question is the various lookup approaches to > > > implement. The more the better, broadly -- you ought to be in charge of > > > your collection, not vice versa -- but I'm no library scientist, or even > > > retrieval expert. > > > > > > So the question I'm broadcasting is: How would you like to be able to > > > search your own collection of bookmarks? Secondarily, what good (i.e., > > > "user friendly" for some value of user) ways of doing searches > do you know > > > of, or think ought to go into an ideal bookmarker? Neil -- Nei...@rc... Women consititute half the worlds population, perform nearly two thirds of the world's work, receive one tenth of the world's income and own less than one hundredth of the worlds wealth. -- UN findings from 1975-1985 Decade of Women |
From: Neil R. <Nei...@rc...> - 2008-04-27 23:31:33
|
"Bookmarklets" might be useful as interface components or extenders, but I want a database with multiple query modes, not just a collection of good little tricks. I want the nodes in the inverted tree organizational view to be entries in the keyword list, to where sub-branches can be grafted whole to different places in the tree ("origami" comes under "paper" and under "Japan - culture" . . . ) I figure to be using SQLite for the engine, since it's built into Firefox and is supposed to be accessible with 3.0. At 04:34 PM 4/27/2008, "Zach Kaplan" <zk...@in...> wrote: >Have you looked at bookmarklets? > >On 4/21/08, Neil Rest <Nei...@rc...> wrote: > > The last time I looked, there didn't seem to be a good database for web > > bookmarks. Considering how much weird stuff has a dozen different projects > > going on out there, it seemed an odd gap, so I decided I wanted to do one. > > (I now have almost enough time, energy, and stability to start > serious work. > > We'll see.) > > So the question I'm broadcasting is: How would you like to be able to > > search your own collection of bookmarks? Secondarily, what good (i.e., > > "user friendly" for some value of user) ways of doing searches do you know > > of, or think ought to go into an ideal bookmarker? > > > > I'm deliberately broadcasting this widely, to get the best response I can. > > I apologize if I've wasted your time, and hope you understand. Neil -- Nei...@rc... The Senators and Representatives before mentioned, and the Members of the several State Legislatures, and all executive and judicial Officers, both of the United States and of the several States, shall be bound by Oath or Affirmation, to support this Constitution; but no religious Test shall ever be required as a Qualification to any Office or public Trust under the United States. -- Constutution of the United States, Article VI |
From: Jough D. <jou...@gm...> - 2008-04-27 22:45:33
|
I like the way Magnolia lets you add bookmarks from a simple bookmarklet: http://ma.gnolia.com/ Delicious is of course the leader in this area, but its interface leaves a bit to be desired: http://del.icio.us http://reddit.com/ and http://digg.com focus on the social bookmarking aspect. I guess your first design decision is how are you going to differentiate your site from the throngs of competitors? What itch are you scratching, or how are you scratching a current itch better than what's already out there? All the best, -- Jough On Sun, Apr 27, 2008 at 4:34 PM, Zach Kaplan <zk...@in...> wrote: > Have you looked at bookmarklets? > > > > On 4/21/08, Neil Rest <Nei...@rc...> wrote: > > The last time I looked, there didn't seem to be a good database for web > > bookmarks. Considering how much weird stuff has a dozen different projects > > going on out there, it seemed an odd gap, so I decided I wanted to do one. > > (I now have almost enough time, energy, and stability to start serious work. > > We'll see.) > > > > The biggest, broadest question is the various lookup approaches to > > implement. The more the better, broadly -- you ought to be in charge of > > your collection, not vice versa -- but I'm no library scientist, or even > > retrieval expert. > > > > So the question I'm broadcasting is: How would you like to be able to > > search your own collection of bookmarks? Secondarily, what good (i.e., > > "user friendly" for some value of user) ways of doing searches do you know > > of, or think ought to go into an ideal bookmarker? > > > > I'm deliberately broadcasting this widely, to get the best response I can. > > I apologize if I've wasted your time, and hope you understand. > > > > > > > > Neil Rest > > -- > > Nei...@rc... > > http://users.rcn.com/neilrest/resume/NeilRest.htm > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > > Don't miss this year's exciting event. There's still time to save $100. > > Use priority code J8TL2D2. > > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > > _______________________________________________ > > chiPHPug-discuss mailing list > > chi...@li... > > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > > > > -- > Zach Kaplan > > Inventables > 222 W. Ontario #350 > Chicago, IL 60610 > p. 312.274.9941 x12 > c. 773.936.4975 > f 413.332.0054 > www.inventables.com > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- Jough Dempsey http://jough.com 312.399.6379 (mobile) |
From: Zach K. <zk...@in...> - 2008-04-27 21:34:40
|
Have you looked at bookmarklets? On 4/21/08, Neil Rest <Nei...@rc...> wrote: > The last time I looked, there didn't seem to be a good database for web > bookmarks. Considering how much weird stuff has a dozen different projects > going on out there, it seemed an odd gap, so I decided I wanted to do one. > (I now have almost enough time, energy, and stability to start serious work. > We'll see.) > > The biggest, broadest question is the various lookup approaches to > implement. The more the better, broadly -- you ought to be in charge of > your collection, not vice versa -- but I'm no library scientist, or even > retrieval expert. > > So the question I'm broadcasting is: How would you like to be able to > search your own collection of bookmarks? Secondarily, what good (i.e., > "user friendly" for some value of user) ways of doing searches do you know > of, or think ought to go into an ideal bookmarker? > > I'm deliberately broadcasting this widely, to get the best response I can. > I apologize if I've wasted your time, and hope you understand. > > > > Neil Rest > -- > Nei...@rc... > http://users.rcn.com/neilrest/resume/NeilRest.htm > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- Zach Kaplan Inventables 222 W. Ontario #350 Chicago, IL 60610 p. 312.274.9941 x12 c. 773.936.4975 f 413.332.0054 www.inventables.com |
From: Neil R. <Nei...@rc...> - 2008-04-21 17:10:07
|
The last time I looked, there didn't seem to be a good database for web bookmarks. Considering how much weird stuff has a dozen different projects going on out there, it seemed an odd gap, so I decided I wanted to do one. (I now have almost enough time, energy, and stability to start serious work. We'll see.) The biggest, broadest question is the various lookup approaches to implement. The more the better, broadly -- you ought to be in charge of your collection, not vice versa -- but I'm no library scientist, or even retrieval expert. So the question I'm broadcasting is: How would you like to be able to search your own collection of bookmarks? Secondarily, what good (i.e., "user friendly" for some value of user) ways of doing searches do you know of, or think ought to go into an ideal bookmarker? I'm deliberately broadcasting this widely, to get the best response I can. I apologize if I've wasted your time, and hope you understand. Neil Rest -- Nei...@rc... http://users.rcn.com/neilrest/resume/NeilRest.htm |
From: Tom J. <tju...@ho...> - 2008-04-16 21:55:52
|
Is there a meeting tonight? An agenda? Presentation? Topic?> From: chi...@li...> Subject: chiPHPug-discuss Digest, Vol 24, Issue 5> To: chi...@li...> Date: Wed, 16 Apr 2008 12:07:56 -0700> > Send chiPHPug-discuss mailing list submissions to> chi...@li...> > To subscribe or unsubscribe via the World Wide Web, visit> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss> or, via email, send a message with subject or body 'help' to> chi...@li...> > You can reach the person managing the list at> chi...@li...> > When replying, please edit your Subject line so it is more specific> than "Re: Contents of chiPHPug-discuss digest..."> > > Today's Topics:> > 1. Re: Tomorrow Night (Richard Lynch)> > > ----------------------------------------------------------------------> > Message: 1> Date: Tue, 15 Apr 2008 14:15:33 -0500 (CDT)> From: "Richard Lynch" <ce...@l-...>> Subject: Re: [chiPHPug-discuss] Tomorrow Night> To: "Discussions of PHP-related topics among members of the Chicago> PHP User's Group." <chi...@li...>> Message-ID: <363...@ww...>> Content-Type: text/plain;charset=iso-8859-1> > Hmmmm.> > Anybody got a burning question/topic?> > Perhaps we should just skip the meeting?> > Actually, I've been working at a new job on a Facebook plug-in, so> could give a talk sometime about how to do that, if anybody would be> interested...> > Not tomorrow night, though, as I'd want to put together a bit more> prep work than that would allow.> > On Tue, April 15, 2008 12:17 pm, Luca Matteis wrote:> > Hey Richard, I wont be able to make it tomorrow night.> > Hope to give it next time.> >> > Thanks,> > Luca.> >> > On Tue, Apr 15, 2008 at 12:00:20PM -0500, Richard Lynch wrote:> >> Hey is anybody coming out tomorrow night for Luca's presentation?> >>> >> http://chiphpug.php.net/> >>> >> Any specific food requests from restaurants near the location?> >>> >> 210 S Clark, 24th floor.> >>> >> @Jason: We're okay to use the space again, right?... :-)> >>> >> --> >> Can you do me a favor?> >> Sign up for http://Facebook.com> >> Add http://apps.facebook.com/whereivebeen/> >> Review it, and let 'em know Rich sent you.> >> http://www.facebook.com/apps/application.php?id=2603626322> >> (Scroll down to the middle of the middle column)> >> Give it a 5-star rating please :-)> >> (If you can't go 5-star, email me to tell me why)> >>> >>> >> -------------------------------------------------------------------------> >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference> >> Don't miss this year's exciting event. There's still time to save> >> $100.> >> Use priority code J8TL2D2.> >> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone> >> _______________________________________________> >> chiPHPug-discuss mailing list> >> chi...@li...> >> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss> >> > -------------------------------------------------------------------------> > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference> > Don't miss this year's exciting event. There's still time to save> > $100.> > Use priority code J8TL2D2.> > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone> > _______________________________________________> > chiPHPug-discuss mailing list> > chi...@li...> > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss> >> > > -- > Can you do me a favor?> Sign up for http://Facebook.com> Add http://apps.facebook.com/whereivebeen/> Review it, and let 'em know Rich sent you.> http://www.facebook.com/apps/application.php?id=2603626322> (Scroll down to the middle of the middle column)> Give it a 5-star rating please :-)> (If you can't go 5-star, email me to tell me why)> > > > > ------------------------------> > -------------------------------------------------------------------------> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone> > ------------------------------> > _______________________________________________> chiPHPug-discuss mailing list> chi...@li...> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss> > > End of chiPHPug-discuss Digest, Vol 24, Issue 5> *********************************************** _________________________________________________________________ Pack up or back up–use SkyDrive to transfer files or keep extra copies. Learn how. http://www.windowslive.com/skydrive/overview.html?ocid=TXT_TAGLM_WL_Refresh_skydrive_packup_042008 |
From: Richard L. <ce...@l-...> - 2008-04-15 19:15:37
|
Hmmmm. Anybody got a burning question/topic? Perhaps we should just skip the meeting? Actually, I've been working at a new job on a Facebook plug-in, so could give a talk sometime about how to do that, if anybody would be interested... Not tomorrow night, though, as I'd want to put together a bit more prep work than that would allow. On Tue, April 15, 2008 12:17 pm, Luca Matteis wrote: > Hey Richard, I wont be able to make it tomorrow night. > Hope to give it next time. > > Thanks, > Luca. > > On Tue, Apr 15, 2008 at 12:00:20PM -0500, Richard Lynch wrote: >> Hey is anybody coming out tomorrow night for Luca's presentation? >> >> http://chiphpug.php.net/ >> >> Any specific food requests from restaurants near the location? >> >> 210 S Clark, 24th floor. >> >> @Jason: We're okay to use the space again, right?... :-) >> >> -- >> Can you do me a favor? >> Sign up for http://Facebook.com >> Add http://apps.facebook.com/whereivebeen/ >> Review it, and let 'em know Rich sent you. >> http://www.facebook.com/apps/application.php?id=2603626322 >> (Scroll down to the middle of the middle column) >> Give it a 5-star rating please :-) >> (If you can't go 5-star, email me to tell me why) >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference >> Don't miss this year's exciting event. There's still time to save >> $100. >> Use priority code J8TL2D2. >> http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone >> _______________________________________________ >> chiPHPug-discuss mailing list >> chi...@li... >> https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save > $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss > -- Can you do me a favor? Sign up for http://Facebook.com Add http://apps.facebook.com/whereivebeen/ Review it, and let 'em know Rich sent you. http://www.facebook.com/apps/application.php?id=2603626322 (Scroll down to the middle of the middle column) Give it a 5-star rating please :-) (If you can't go 5-star, email me to tell me why) |
From: Zachary T. W. <zw...@gu...> - 2008-04-15 19:03:40
|
Doesn't sound like a very interesting session if the speaker isn't there. __________________ Gulo Solutions http://blog.gulosolutions.com 773.276.8066 -----Original Message----- From: Luca Matteis <lma...@gm...> To: "Discussions of PHP-related topics among members of the Chicago PHP User's Group." <chi...@li...> Date: Tuesday, April 15, 2008, 12:17:55 PM Subject: [chiPHPug-discuss] Tomorrow Night Hey Richard, I wont be able to make it tomorrow night. Hope to give it next time. Thanks, Luca. On Tue, Apr 15, 2008 at 12:00:20PM -0500, Richard Lynch wrote: > Hey is anybody coming out tomorrow night for Luca's presentation? > > http://chiphpug.php.net/ > > Any specific food requests from restaurants near the location? > > 210 S Clark, 24th floor. > > @Jason: We're okay to use the space again, right?... :-) > > -- > Can you do me a favor? > Sign up for http://Facebook.com > Add http://apps.facebook.com/whereivebeen/ > Review it, and let 'em know Rich sent you. > http://www.facebook.com/apps/application.php?id=2603626322 > (Scroll down to the middle of the middle column) > Give it a 5-star rating please :-) > (If you can't go 5-star, email me to tell me why) > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ chiPHPug-discuss mailing list chi...@li... https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |
From: Jason R. <ja...@ho...> - 2008-04-15 17:32:39
|
Space is still cool for use and cleaned up a bit.. Hopefully I'll make it as well. -jason Richard Lynch wrote: > Hey is anybody coming out tomorrow night for Luca's presentation? > > http://chiphpug.php.net/ > > Any specific food requests from restaurants near the location? > > 210 S Clark, 24th floor. > > @Jason: We're okay to use the space again, right?... :-) > |
From: Luca M. <lma...@gm...> - 2008-04-15 17:18:13
|
Hey Richard, I wont be able to make it tomorrow night. Hope to give it next time. Thanks, Luca. On Tue, Apr 15, 2008 at 12:00:20PM -0500, Richard Lynch wrote: > Hey is anybody coming out tomorrow night for Luca's presentation? > > http://chiphpug.php.net/ > > Any specific food requests from restaurants near the location? > > 210 S Clark, 24th floor. > > @Jason: We're okay to use the space again, right?... :-) > > -- > Can you do me a favor? > Sign up for http://Facebook.com > Add http://apps.facebook.com/whereivebeen/ > Review it, and let 'em know Rich sent you. > http://www.facebook.com/apps/application.php?id=2603626322 > (Scroll down to the middle of the middle column) > Give it a 5-star rating please :-) > (If you can't go 5-star, email me to tell me why) > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > chiPHPug-discuss mailing list > chi...@li... > https://lists.sourceforge.net/lists/listinfo/chiphpug-discuss |