DCF probe includes look at Regier's computer
Grok Headline matches for DCF probe includes look at Regier's computer
US to probe taking of computer files
US to probe taking of computer files
04/27/2004 01:55 AMBoston Globe Apr 27 2004 6:42AM GMT
MS to probe human-computer interface
MS to probe human-computer interface
04/21/2004 03:38 PMResearch team mobilised
Computer deal probe called for
Computer deal probe called for
07/31/2004 01:56 PMBangkok Post Jul 31 2004 6:32PM GMT
Computer Associates fires 9 after
internal probe
Computer Associates fires 9 after
internal probe
04/19/2004 05:49 PMAFP via Yahoo! Apr 19 2004 9:39PM GMT
Computer Associates Offers to Settle
Probe
Computer Associates Offers to Settle
Probe
05/25/2004 07:10 PMAP via Baltimore Sun May 25 2004 10:42PM GMT
FBI finishes probe into missing lab
computer disks
FBI finishes probe into missing lab
computer disks
01/06/2005 02:43 PMAP via San Francisco Chronicle Jan 6 2005 6:46PM GMT
Computer Associates Probe Sparks Firings
Computer Associates Probe Sparks Firings
04/19/2004 12:35 PMMiami Herald Apr 19 2004 5:09PM GMT
Computer Associates CEO resigns amid
probe
Computer Associates CEO resigns amid
probe
04/21/2004 11:44 AMUSA Today Apr 21 2004 3:32PM GMT
Corruption concerns raised in computer
probe
Corruption concerns raised in computer
probe
04/24/2004 06:44 PMCNEWS Apr 24 2004 10:41PM GMT
Computer Associates fires nine amid
accounting probe
Computer Associates fires nine amid
accounting probe
04/19/2004 01:53 PMComputer Associates International Inc. (CA) fired nine employees in
its legal and finance departments on Monday in connection with its
internal investigation of accounting violations that have already led
to criminal charges against several former executives.
FBI Copies Computer Hard Drive in Israel
Probe
FBI Copies Computer Hard Drive in Israel
Probe
09/02/2004 11:48 AMAP via ABCNEWS.com Sep 2 2004 3:52PM GMT
Hatch vs. . . . Conservatives?: Computer
Probe Inflames Activists
Hatch vs. . . . Conservatives?: Computer
Probe Inflames Activists
02/12/2004 11:18 AMWashington Post Feb 12 2004 3:31PM GMT
Beleaguered Computer Associates fires
nine employees during probe
Beleaguered Computer Associates fires
nine employees during probe
04/19/2004 04:27 PMCanadian Press via Canada.com Apr 19 2004 8:07PM GMT
Brussels seeks computer firms help in
Microsoft probe
Brussels seeks computer firms help in
Microsoft probe
11/02/2003 07:35 PMDaily Times Nov 2 2003 6:25PM ET
Four more suspended at Los Alamos lab in
probe of missing computer disks
Four more suspended at Los Alamos lab in
probe of missing computer disks
08/04/2004 08:48 PMSan Francisco Chronicle Aug 5 2004 0:47AM GMT
State drops charges against ex-Davis
aide in computer probe
State drops charges against ex-Davis
aide in computer probe
05/19/2004 03:16 AMSan Francisco Chronicle May 19 2004 7:20AM GMT
Four more on paid leave at Los Alamos
lab in probe of missing computer disks
Four more on paid leave at Los Alamos
lab in probe of missing computer disks
08/04/2004 09:56 PMSan Francisco Chronicle Aug 5 2004 1:44AM GMT
German police raid homes in Sasser
computer worm probe
German police raid homes in Sasser
computer worm probe
05/12/2004 11:16 PMGerman police raid homes in Sasser
computer worm probe (AFP)
German police raid homes in Sasser
computer worm probe (AFP)
05/12/2004 09:51 AMAFP - German police have raided the homes of five people who had been
in contact with a teenager arrested last week on suspicion of creating
the Sasser computer worm, a spokesman said.
Corruption concerns raised as probe into
Toronto computer deal nears end
Corruption concerns raised as probe into
Toronto computer deal nears end
04/24/2004 02:32 PMCanadian Press via Canada.com Apr 24 2004 5:45PM GMT
Computer Associates' top exec Kumar
resigns amid accounting probe
Computer Associates' top exec Kumar
resigns amid accounting probe
04/21/2004 06:30 PMNational Post Apr 21 2004 8:54PM GMT
Japan begins probe into computer chip
imports from South Korea's Hynix
Japan begins probe into computer chip
imports from South Korea's Hynix
08/03/2004 09:15 AMNational Post Aug 3 2004 1:06PM GMT
New Gameboy includes Bluetooth
New Gameboy includes Bluetooth
05/11/2004 03:04 PMPMN Publications May 11 2004 5:28PM GMT
Mac OS X Patch Includes IDN Browser Fix
Mac OS X Patch Includes IDN Browser Fix
03/22/2005 09:55 PMApple releases a security update to correct "highly critical"
vulnerabilities in its flagship operating system, some affecting Web
browsers.
Using PHP Includes for MT Search Results
Using PHP Includes for MT Search Results
07/04/2004 03:28 PMA lot of people want to roll their own search with Movable Type. Us, for instance
— Gadgetopia has a two-tiered search system based on whether the
search term appears in the title, keywords, or body of the entry (see
this post for more information).
Our search is done in with SQL and PHP, abandoning the MT search
system completely. The probem with this method is rendering the
search results. If you don't use MT, then you lose two things:
(1) Auto-creation of the permalink. The URL isn't stored
anywhere in the database, so you have to recreate it. If your URLs
are just based on the entry ID, then it's not hard. However, look at
our URLs — they're a conglomoration of the date and the entry
title. We'd have to create a PHP function to recreate this scheme
— and if we ever changed the URL structure from within MT, we'd
have to change the PHP function separately.
(2) Text filters. If you're just converting line breaks,
the text filter is not so hard to re-produce. However, if you're
using Textile or some other plug-in to
filter your text, you're going to have to reproduce that in PHP as
well so the previews render correctly.
You can avoid all this, however, by simply using PHP includes and
an extra Individual Entry Archive. The result is an elegant solution
that blends PHP and MT to eliminate the tedium of recreating MT
functionality in PHP.
To do this, create a new Individual Entry Archive in MT called
"search_fragment." This template should contain the just HTML to
present a single search result. Like this:
<tr class="title">
<td class="title">
<a
href="<MTEntryPermalink>"><MTEntryTitle></a>
</td>
<td class="date">
<MTEntryDate format="%m/%d/%Y">
</td>
</tr>
<tr
class="excerpt">
<td colspan="2">
<MTEntryExcerpt>
</td>
</td>
Configure this template to generate a file in a "search_fragments"
directory named for the entry ID only. You don't even have to add an
extention, though you can if you like (if so, you'll need the change
the PHP code listed below). So the entry in the archiving
configuration would be something like:
search_fragments/<MTEntryID>
Now when an entry rebuilds, it will create two files: (1) its
normal archive file, and (2) a search result fragment file called "1",
"2", "348", etc. in the search_fragments directory. Notice that since
we're using standard MT templates to create the fragment, the
permalink will be created by MT, and the excerpt text will be
formatted according to the text filter the entry is using.
Now, when you use your SQL to get your search results, just SELECT
the entry ID, then spin through those and use PHP to include the
matching search fragment file. Like this:
<table>
<?php
while ($r =
mysql_fetch_assoc($keywordResults)) {
@include "search_fragments/" .
$r['entry_id'];
}
?>
</table>
This will dump the contents of each search fragment file in the
table. Since each file contained two rows, the resulting table will
be valid HTML. Notice we're surpressing any errors on the inclusion
line just in case a file is missing for some reason.
We've be using this system here for months, and it works
great.
Click here to comment on this entry
warbl0ggers' world includes only
themselves
warbl0ggers' world includes only
themselves
12/02/2003 01:53 AMCommonwealth of Blogosphere States .. way too much free time .. Weird
Weblog Map .. Politburo's map .. seaside port .. inside jokes ..
neighbors .. map
acepilots.com/images/comblog.html
track this
site | 11 links
One Way To Use Server Side Includes
One Way To Use Server Side Includes
10/26/2002 12:48 PMStickysauce Oct 26 2002 10:22AM ET
My Canada includes AccordionGuy
My Canada includes AccordionGuy
05/26/2004 09:11 AM
Joey "AccordionGuy" DeVilla, a Filipino-born Canadian, has written a
spirited editorial in response to a jackass racist blogger who asserts
that the Canadians who died in the Boer War (!) and elsewhere
certainly didn't intend for Toronto to be annexed by the "Third
World," and says that the non-whites of Canada are less Canadian, with
"no knowledge or affection for the old Canada, in either their hearts
or minds."
Joey's response: "Fuck you, eh." And the banner, above.
Link
SCO Includes OS Products In OpenServer 6
SCO Includes OS Products In OpenServer 6
06/24/2005 06:17 PMRed Hat Linux 7 includes MySQL
Red Hat Linux 7 includes MySQL
06/12/2002 06:22 AM"MySQL is already the most used database in the Linux world, and we
expect the Red Hat Linux 7 release to strengthen our position even
more", says Michael "Monty" Widenius, CTO of MySQL AB.
Postcard from the Future (and It
Includes RSS)
Postcard from the Future (and It
Includes RSS)
06/30/2004 01:15 AMA Brief Message about Why My TiVo and Treo, Rule
"This is the confirmation email I received from TiVo after I:
- Heard that Michael Moore was going to be on 60 Minutes
- Was miles from home and wished I could somehow schedule my TiVo to
record this show
- Turned to my trusty Treo
600, and pointed the browser to Tivo Central Online to sign-in and
schedule this recording
- Return home to find 60 Minutes recorded perfectly per my
request.
I know I live in the future a bit, being an early adopter and all,
but the future is grand - and highly recommended." [shellen dot com, via buzz
machine]
I'm going to start using that last line everywhere! I'll have to
try to use my Treo 600 to access MyReplayTV to see if I
can schedule a recording on one of my ReplayTVs!
Tangent: check out this great quote from Jeff Jarvis:
"Feeding me -- sending me any kind of content anytime anywhere
on any device -- is the promise of this medium in an
ever-connected world and RSS will be at the core of that. This is just
the beginning."
Sounds familiar, doesn't it? ;-)
Interestingly, I was interviewed by a reporter this morning for a
Redeye article about RSS.
Let's hope this is the first sign of a clue over at the Tribune Company!
XP SP2 seminar includes disabling MSJVM
XP SP2 seminar includes disabling MSJVM
07/22/2004 04:37 PMFollowing on that Microsoft XP SP2 partner seminar I just pointed to.
One element of the two-day program is titled, "Disabling the MSJVM."
As far as I know, the Microsoft Java Virtual Machine has never been a
great source of...
Dangers of register_globals and remote
includes
Dangers of register_globals and remote
includes
07/10/2004 06:14 AMSimple Solution for Php Includes -
IFrames
Simple Solution for Php Includes -
IFrames
07/08/2004 11:45 PMWebDevInfo Jul 9 2004 3:49AM GMT
The Hard Stuff Now Includes Wine
The Hard Stuff Now Includes Wine
04/12/2005 08:31 PMAmong California producers and those who follow wine closely,
high-alcohol wines have provoked sharp debate.
graph-includes 0.3 (Default branch)
graph-includes 0.3 (Default branch)
04/14/2005 07:39 PM
Graph-includes creates a graph of dependencies
between source files and/or groups of source
files, with an emphasis on getting readable and
usable graphs even for large projects. Usability
of the dependency graphs are currently improved by
customizable grouping of several source files into
a single node, and transitive reduction of the graph.
Changes:
A bug causing some dependencies to be ignored has been fixed. A
command line option to produce printable graphs has been added, as
well as more documentation.
graph-includes 0.1 (Default branch)
graph-includes 0.1 (Default branch)
03/28/2005 11:48 PMGraph-includes creates a graph of dependencies
between source files and/or groups of source
files, with an emphasis on getting readable and
usable graphs even for large projects. Usability
of the dependency graphs are currently improved by
customizable grouping of several source files into
a single node, and transitive reduction of the graph.
graph-includes 0.4 (Default branch)
graph-includes 0.4 (Default branch)
04/17/2005 07:33 PM
Graph-includes creates a graph of dependencies
between source files and/or groups of source
files, with an emphasis on getting readable and
usable graphs even for large projects. Usability
of the dependency graphs are currently improved by
customizable grouping of several source files into
a single node, and transitive reduction of the graph.
Changes:
The processing of #include statements has been made similar to the
standard C preprocessor behaviour.
graph-includes 0.2 (Default branch)
graph-includes 0.2 (Default branch)
03/31/2005 07:54 PM
Graph-includes creates a graph of dependencies
between source files and/or groups of source
files, with an emphasis on getting readable and
usable graphs even for large projects. Usability
of the dependency graphs are currently improved by
customizable grouping of several source files into
a single node, and transitive reduction of the graph.
Changes:
New features including stripping a common prefix from all filenames,
the ability to specify excuses for abusive dependencies, and automatic
generation of default level 2 groups in the default project class.
Bugfixes for --output, --focus, and --showdropped, which were all
completely broken in 0.1.
Grok Description matches for DCF probe includes look at Regier's computer
GrokA matches for DCF probe includes look at Regier's computer
DCF probe includes look at Regier's computer