Skip to content

Instantly share code, notes, and snippets.

@tanimislam
Last active January 16, 2020 06:57
Show Gist options
  • Save tanimislam/305f551f09ceaffff2b8e142dd8c5e31 to your computer and use it in GitHub Desktop.
Save tanimislam/305f551f09ceaffff2b8e142dd8c5e31 to your computer and use it in GitHub Desktop.
download_slashdot_by_year
# old URL: https://gist.github.com/tanimislam/305f551f09ceaffff2b8e142dd8c5e31
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# MS word and latex extensions
*.bak
*.aux
*.log
*.lng
*.out
*.pdf
# C extensions
*.so
# Distribution / packaging
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml
# Translations
*.mo
# Mr Developer
.mr.developer.cfg
.project
.pydevproject
# Rope
.ropeproject
# Django stuff:
*.log
*.pot
# Sphinx documentation
docs/_build/
#!/usr/bin/env python3
import os, sys, requests, datetime, json
import tabulate, logging, glob, textwrap
from optparse import OptionParser
from bs4 import BeautifulSoup
from urllib.parse import urljoin, urlsplit
from itertools import chain
from pathos import multiprocessing
from copy import copy
#
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
#
from optparse import OptionParser
current_year = datetime.datetime.now( ).year
_dirname = os.path.dirname( __file__ )
def _get_current_datestring( cdate = datetime.datetime.now( ).date( ) ):
return cdate.strftime( '%B %d, %Y' )
def check_bitly_access_token( bitly_access_token ):
response = requests.get(
'https://api-ssl.bitly.com/v4/groups',
headers = { 'Authorization' : 'Bearer %s' % bitly_access_token } )
return response.ok
def create_shortened_link( url, bitly_access_token,
current_dict_bitly_urls = { } ):
if url in current_dict_bitly_urls:
return current_dict_bitly_urls[ url ]
#
##
response = requests.post(
'https://api-ssl.bitly.com/v4/bitlinks',
headers = { 'Authorization' : 'Bearer %s' % bitly_access_token },
json = { 'long_url' : url } )
if response.ok:
data = response.json( )
return data[ 'link' ]
return None
def get_current_dict_bitly_urls( bitly_access_token ):
response = requests.get(
'https://api-ssl.bitly.com/v4/groups',
headers = { 'Authorization' : 'Bearer %s' % bitly_access_token } )
if not response.ok: return { }
guid = max( response.json( )['groups'] )['guid']
#
## now get dictionary of all the links associated with the user
list_of_all_links = [ ]
for page in range( 1, 1000 ):
response = requests.get(
'https://api-ssl.bitly.com/v4/groups/%s/bitlinks' % guid,
params = { 'page' : page, 'size' : 1000 },
headers = { 'Authorization' : 'Bearer %s' % bitly_access_token } )
if not response.ok: break
links = response.json( )[ 'links' ]
pagin = response.json( )[ 'pagination' ]
list_of_all_links += list(
map(lambda elem: ( elem[ 'long_url' ], elem[ 'link' ] ), links ) )
if pagin[ 'next' ].strip( ) == '': break
return dict( list_of_all_links )
def get_article_urls_by_pageno( year = 2000, pageno = 1 ):
assert( year >= 1998 and year <= current_year )
assert( pageno >= 1 )
response = requests.get(
'https://slashdot.org/archive.pl', params={
'op' : 'bytime', 'keyword' : '', 'year' : year, 'page' : pageno } )
if response.status_code != 200: return [ ]
html = BeautifulSoup( response.content, 'lxml' )
valid_elems = list(filter(
lambda elem: 'href' in elem.attrs and 'story' in elem['href'], html.find_all( 'a' ) ) )
if len( valid_elems ) == 0: return [ ]
#
def get_url_and_title( elem ):
url = urljoin( 'https:', elem['href'] )
title = elem.text.strip( )
return { 'url' : url, 'title' : title }
return list( map( get_url_and_title, valid_elems ) )
def get_all_articles_for_year( year = 2000 ):
assert( year >= 1998 and year <= current_year )
all_articles_seg = [ ]
for pageno in range(1, 100 ):
articles_by_pageno = get_article_urls_by_pageno( year = year, pageno = pageno )
if len( articles_by_pageno ) == 0: break
all_articles_seg.append( articles_by_pageno )
return list( chain.from_iterable( all_articles_seg ) )
def get_all_slashdot_articles( ):
def download_articles_year( yr ):
all_art = get_all_articles_for_year( yr )
json.dump( all_art, open( 'slashdot_stories_%d.json' % yr, 'w' ),
indent = 1 )
with pool.multiprocessing( processes = multiprocessing.cpu_count( ) ) as pool:
list( pool.map( download_articles_year, range(1998, 2020)))
def get_date_for_article( article_entry ):
url = article_entry[ 'url' ]
date_s = '/'.join( urlsplit( url ).path.split('/')[2:5] )
return datetime.datetime.strptime( date_s, '%y/%m/%d' ).date( )
def get_more_info_on_article( article_entry ):
url = article_entry[ 'url' ]
response = requests.get( url )
if response.status_code != 200: return { }
html = BeautifulSoup( response.content, 'lxml' )
extra_data_for_slashot_art = { }
#
## get number of comments
comment_elems = list(filter(
lambda elem: 'class' in elem.attrs and len( elem['class'] ) == 1 and
elem['class'][0] == 'comment-bubble', html.find_all('span')))
if len( comment_elems ) == 1:
extra_data_for_slashot_art[ 'comments' ] = int( max( comment_elems ).text )
#
## get exact datetime at which article submitted
time_elems = list(filter(
lambda elem: 'datetime' in elem.attrs, html.find_all('time')))
if len( time_elems ) == 1:
date_s = max( time_elems )['datetime']
extra_data_for_slashot_art[ 'date' ] = datetime.datetime.strptime(
date_s, 'on %A %B %d, %Y @%H:%M%p' )
#
##
for key in article_entry:
extra_data_for_slashot_art[ key ] = article_entry[ key ]
return extra_data_for_slashot_art
def get_articles_for_date( cdate = datetime.datetime.now( ).date( ),
yearsago = 10, bitly_access_token = None ):
assert( yearsago >= 1 )
try:
prevdate = datetime.date( cdate.year - yearsago, cdate.month, cdate.day )
except:
prevdate = datetime.date( cdate.year - yearsago, cdate.month, cdate.day - 1 )
#
valid_files = list(
filter(lambda fname: '%d' % prevdate.year in fname,
glob.glob( os.path.join( _dirname, 'slashdot_stories_*.json' ) ) ) )
assert( len( valid_files ) == 1 )
all_art = json.load( open( max( valid_files ), 'r' ) )
#
articles_on_date = list(
filter(lambda art: get_date_for_article( art ) == prevdate, all_art ) )
with multiprocessing.Pool( processes = multiprocessing.cpu_count( ) ) as pool:
articles_past = sorted(
pool.map( get_more_info_on_article, articles_on_date ),
key = lambda art: art['date'] )
if bitly_access_token is None: return articles_past
#
assert( check_bitly_access_token( bitly_access_token ) )
current_bitly_dict_urls = get_current_dict_bitly_urls( bitly_access_token )
def create_shorted_article_url( art_past ):
short_url = create_shortened_link(
art_past[ 'url' ], bitly_access_token, current_bitly_dict_urls )
if short_url is None:
short_url = art_past[ 'url' ]
return { 'comments' : art_past[ 'comments' ],
'date' : art_past[ 'date' ],
'title' : art_past[ 'title' ],
'url' : short_url }
return list(map(create_shorted_article_url, articles_past ) )
if __name__=='__main__':
parser = OptionParser( )
parser.add_option( '--date', dest='date', type=str, action='store',
default = _get_current_datestring( ),
help = 'The date to use, default is current date written in the following format: %s.' % _get_current_datestring( ) )
parser.add_option( '--years', dest='years', type=int, action='store',
default = 10, help = ' '.join([
'The number of years in the past to look for',
'Slashdot articles. Default is 10 years.' ]))
parser.add_option( '--bat', dest='bitly_access_token', type=str, action='store',
help = 'Optional argument. The Bit.Ly access token used to shorten URLs.' )
opts, args = parser.parse_args( )
assert( opts.years > 0 )
if opts.bitly_access_token is not None: # check we have a valid bitly access token
if check_bitly_access_token( opts.bitly_access_token ):
bat = opts.bitly_access_token
else: bat = None
try:
cdate = datetime.datetime.strptime( opts.date, '%B %d, %Y' ).date( )
articles_past = get_articles_for_date(
cdate = cdate, yearsago = opts.years,
bitly_access_token = bat )
print( 'looking for articles from %s, %d years ago.' % (
cdate.strftime( '%B %d, %Y' ), opts.years ) )
tab_data = list(
map(lambda art: ( '\n'.join( textwrap.wrap( art[ 'title' ], width = 40 ) ),
art[ 'url' ],
art[ 'comments' ],
art[ 'date' ].strftime( '%H:%M %p' ) ),
articles_past ) )
print( '%s\n' %
tabulate.tabulate(
tab_data, headers = [ 'TITLE', 'URL', 'COMMENTS', 'TIME SUBMITTED' ] ) )
except Exception as e:
logging.error("ERROR: %s." % str( e ) )
[
{
"url": "https://tech.slashdot.org/story/98/12/31/1414239/cell-phones-running-on-alcohol",
"title": "Cell phones running on alcohol"
},
{
"url": "https://linux.slashdot.org/story/98/12/31/1319239/linuxworldexpo-brochure-ready-for-download",
"title": "LinuxWorldExpo Brochure ready for download"
},
{
"url": "https://tech.slashdot.org/story/98/12/31/1314207/crackers-commence-electronic-warfare-against-iraq",
"title": "Crackers Commence Electronic Warfare Against Iraq"
},
{
"url": "https://tech.slashdot.org/story/98/12/31/1311210/nullsoft-unveils-shoutcast-free-broadcasting",
"title": "Nullsoft unveils ShoutCast-free broadcasting"
},
{
"url": "https://hardware.slashdot.org/story/98/12/31/135246/your-palmphone",
"title": "Your PalmPhone"
},
{
"url": "https://linux.slashdot.org/story/98/12/31/1247224/linux-220pre2--gnome-0991",
"title": "Linux 2.2.0pre2 / Gnome 0.99.1"
},
{
"url": "https://news.slashdot.org/story/98/12/31/1244212/random-slashdot-awards",
"title": "Random Slashdot Awards"
},
{
"url": "https://science.slashdot.org/story/98/12/31/1220224/mars-lander-to-be-launched-sunday",
"title": "Mars lander to be launched sunday"
},
{
"url": "https://slashdot.org/story/98/12/31/120240/smurfable-network-detection",
"title": "Smurfable Network Detection"
},
{
"url": "https://tech.slashdot.org/story/98/12/31/1152219/glide-wrapper-troubles",
"title": "Glide Wrapper Troubles"
},
{
"url": "https://slashdot.org/story/98/12/31/0230217/free-top-level-domain",
"title": "Free Top Level Domain"
},
{
"url": "https://linux.slashdot.org/story/98/12/31/0125254/war-not-won-says-nicholas-petreley",
"title": "War not won, says Nicholas Petreley"
},
{
"url": "https://linux.slashdot.org/story/98/12/30/198237/linux-expo-opens-non-profit-booths",
"title": "Linux Expo Opens Non-Profit Booths"
},
{
"url": "https://linux.slashdot.org/story/98/12/30/193209/linux-desktop-is-doa",
"title": "Linux Desktop is DOA?"
},
{
"url": "https://ask.slashdot.org/story/98/12/30/1627217/can-xfree86-support-multiple-pointer-devices",
"title": "Can XFree86 Support Multiple Pointer Devices?"
},
{
"url": "https://ask.slashdot.org/story/98/12/30/1618255/whats-the-best-way-to-manage-multiple-pop-accounts",
"title": "What's the Best Way to Manage Multiple POP Accounts?"
},
{
"url": "https://ask.slashdot.org/story/98/12/30/1556256/how-can-you-make-htdig-search-sites-w-international-characters",
"title": "How can you Make htdig Search Sites w/ International Characters?"
},
{
"url": "https://ask.slashdot.org/story/98/12/30/1545201/what-statistical-packages-are-available-for-linux",
"title": "What Statistical Packages are Available for Linux?"
},
{
"url": "https://ask.slashdot.org/story/98/12/30/1542226/ask-slashdot-are-there-linux-alternatives-for-aols-instant-messenger",
"title": "Ask Slashdot: Are there Linux Alternatives for AOL's Instant Messenger?"
},
{
"url": "https://linux.slashdot.org/story/98/12/30/1531234/ask-slashdot-how-do-you-start-a-users-group",
"title": "Ask Slashdot: How do you Start a User's Group?"
},
{
"url": "https://linux.slashdot.org/story/98/12/30/1511206/linus-as-robin-hood",
"title": "Linus as Robin Hood?"
},
{
"url": "https://it.slashdot.org/story/98/12/30/157258/us-relaxes-some-encryption-export-laws",
"title": "US relaxes some encryption export laws"
},
{
"url": "https://science.slashdot.org/story/98/12/30/1210235/cells-with-infinite-reproduction",
"title": "Cells with Infinite Reproduction"
},
{
"url": "https://yro.slashdot.org/story/98/12/30/125253/cda-has-been-struck-another-blow",
"title": "CDA has been struck another blow"
},
{
"url": "https://news.slashdot.org/story/98/12/30/123233/linux-databases-are-here-but-support-costs-",
"title": "Linux databases are here-but support costs $"
},
{
"url": "https://news.slashdot.org/story/98/12/30/1050201/thebazaar-trying-to-contact-developers",
"title": "thebazaar trying to contact developers"
},
{
"url": "https://tech.slashdot.org/story/98/12/30/0534220/detailed-nanotechnology-article",
"title": "Detailed Nanotechnology Article"
},
{
"url": "https://news.slashdot.org/story/98/12/30/0531230/slashnet-to-host-new-years-party",
"title": "SlashNET To Host New Years Party"
},
{
"url": "https://tech.slashdot.org/story/98/12/30/0528240/korean-mp3-wrapup-and-1999-plans",
"title": "Korean MP3 wrapup and 1999 plans"
},
{
"url": "https://linux.slashdot.org/story/98/12/30/051238/linux-220pre1-hints-plus-linuxppc-news",
"title": "Linux 2.2.0pre1 Hints (Plus LinuxPPC News)"
},
{
"url": "https://science.slashdot.org/story/98/12/29/2332205/2-week-holiday-in-space-for-25000",
"title": "2 week holiday in space for $25000"
},
{
"url": "https://tech.slashdot.org/story/98/12/29/1342204/internet-media-to-offer-wireless-t1-equivalent",
"title": "Internet Media to Offer Wireless T1-Equivalent"
},
{
"url": "https://slashdot.org/story/98/12/29/1334228/microsoft-trial-summary",
"title": "Microsoft Trial Summary"
},
{
"url": "https://linux.slashdot.org/story/98/12/29/1216242/debian-seeking-sponsorship-for-linux-expo",
"title": "Debian Seeking Sponsorship for Linux Expo"
},
{
"url": "https://hardware.slashdot.org/story/98/12/29/1211203/more-dirt-on-the-new-sgis",
"title": "More Dirt on the new SGIs"
},
{
"url": "https://slashdot.org/story/98/12/29/0946213/judge-rules-in-favor-of-student-protest-website",
"title": "Judge Rules in Favor of Student Protest Website"
},
{
"url": "https://news.slashdot.org/story/98/12/28/1745252/luring-the-lurkers",
"title": "Luring the Lurkers"
},
{
"url": "https://linux.slashdot.org/story/98/12/29/0925206/ap-story-on-red-hat",
"title": "AP Story on Red Hat"
},
{
"url": "https://linux.slashdot.org/story/98/12/29/093240/new-linux-based-imac-rival",
"title": "New Linux-based iMac Rival"
},
{
"url": "https://linux.slashdot.org/story/98/12/28/1821215/linux-220pre1",
"title": "Linux 2.2.0pre1"
},
{
"url": "https://it.slashdot.org/story/98/12/28/1533244/des-challenge-iii",
"title": "DES Challenge III"
},
{
"url": "https://hardware.slashdot.org/story/98/12/28/1531222/apply-for-free-palm-vii",
"title": "Apply for free Palm VII"
},
{
"url": "https://science.slashdot.org/story/98/12/28/1419248/microprocessor-art",
"title": "Microprocessor Art"
},
{
"url": "https://linux.slashdot.org/story/98/12/28/141225/petreley-and-a-bit-on-advocacy",
"title": "Petreley and a bit on Advocacy"
},
{
"url": "https://slashdot.org/story/98/12/28/1212219/ghost-sites-catalogs-the-dead-weba",
"title": "Ghost Sites Catalogs the Dead Weba"
},
{
"url": "https://books.slashdot.org/story/98/12/28/0922231/reviewelements-of-ml-programming",
"title": "Review:Elements of ML Programming"
},
{
"url": "https://slashdot.org/story/98/12/28/0915218/norway-says-probe-any-machine-you-want",
"title": "Norway says probe any machine you want"
},
{
"url": "https://slashdot.org/story/98/12/28/0913211/staroffice-wars---the-good-the-bad-and-the-ugly",
"title": "StarOffice Wars - the good, the bad, and the ugly"
},
{
"url": "https://linux.slashdot.org/story/98/12/28/099255/berst-has-linux-as-one-of-98s-top-stories",
"title": "Berst has Linux as one of 98's top stories."
},
{
"url": "https://news.slashdot.org/story/98/12/28/096231/china-sentences-crackers-to-death",
"title": "China Sentences Crackers To Death"
},
{
"url": "https://developers.slashdot.org/story/98/12/28/0027255/cor-blimey-a-java-spectrum-emulator",
"title": "Cor Blimey! A Java Spectrum emulator!"
},
{
"url": "https://news.slashdot.org/story/98/12/27/1930238/beastie-boys-mp3s-pulled-by-capitol",
"title": "Beastie Boys MP3s pulled by Capitol"
},
{
"url": "https://linux.slashdot.org/story/98/12/27/1928206/uk-linux-conference-slated-for-january",
"title": "UK Linux Conference slated for January"
},
{
"url": "https://bsd.slashdot.org/story/98/12/27/179236/netbsd-133",
"title": "NetBSD 1.3.3"
},
{
"url": "https://news.slashdot.org/story/98/12/27/1223247/infoworld-on-the-wintel-split-and-readers-on-linux",
"title": "InfoWorld on the Wintel split and readers on Linux"
},
{
"url": "https://slashdot.org/story/98/12/27/1220246/instantasp-for-linux-and-apache",
"title": "InstantASP for Linux and Apache"
},
{
"url": "https://science.slashdot.org/story/98/12/27/1218241/university-prepares-to-build-mars-ready-biohazard-unit",
"title": "University prepares to build Mars-ready biohazard unit"
},
{
"url": "https://hardware.slashdot.org/story/98/12/27/1137222/the-return-of-accoustic-coupled-modems",
"title": "The return of accoustic-coupled modems!"
},
{
"url": "https://slashdot.org/story/98/12/26/1234205/kill-a-furby-or-other-fun-celebs",
"title": "Kill a Furby (or other fun celebs)"
},
{
"url": "https://hardware.slashdot.org/story/98/12/26/1232204/125-terabit-ip-routers",
"title": "1.25 Terabit IP Routers"
},
{
"url": "https://news.slashdot.org/story/98/12/26/125229/phrack-54-is-out",
"title": "Phrack 54 is out"
},
{
"url": "https://hardware.slashdot.org/story/98/12/26/121213/reverse-engineering-the-lego-rcx",
"title": "Reverse Engineering the LEGO RCX"
},
{
"url": "https://tech.slashdot.org/story/98/12/26/1159257/cleartype-technology-demo",
"title": "ClearType \"Technology\" Demo"
},
{
"url": "https://tech.slashdot.org/story/98/12/25/1846246/gecko-changes-everything",
"title": "Gecko Changes Everything"
},
{
"url": "https://slashdot.org/story/98/12/25/1844241/has-microsoft-peaked",
"title": "Has Microsoft Peaked?"
},
{
"url": "https://linux.slashdot.org/story/98/12/25/1842200/linuxexpo-call-for-papers-extended",
"title": "LinuxExpo Call for papers extended"
},
{
"url": "https://slashdot.org/story/98/12/24/2344237/web-controlled-xmas-tree",
"title": "Web-controlled Xmas tree"
},
{
"url": "https://tech.slashdot.org/story/98/12/24/1347224/gob-smacking-graphics",
"title": "Gob-smacking graphics"
},
{
"url": "https://slashdot.org/story/98/12/24/1332252/xs4all-bought-by-kpn-telecom",
"title": "XS4ALL bought by KPN telecom"
},
{
"url": "https://tech.slashdot.org/story/98/12/24/1312208/cool-new-toy",
"title": "Cool new toy"
},
{
"url": "https://news.slashdot.org/story/98/12/24/127204/ggi-project-to-be-hosted-on-metalab",
"title": "GGI project to be hosted on Metalab"
},
{
"url": "https://slashdot.org/story/98/12/24/0841200/christmas-eve-quickies",
"title": "Christmas Eve Quickies"
},
{
"url": "https://books.slashdot.org/story/98/12/24/0824207/reviewxml-by-example",
"title": "Review:XML by Example"
},
{
"url": "https://slashdot.org/story/98/12/24/0822217/gimp-110-released",
"title": "Gimp-1.1.0 released"
},
{
"url": "https://tech.slashdot.org/story/98/12/24/086216/linuxpowerorg-has-e-cvs-review",
"title": "linuxpower.org has E CVS Review!"
},
{
"url": "https://linux.slashdot.org/story/98/12/24/0740204/the-linux-kernel-archives-mirror-system",
"title": "The Linux Kernel Archives Mirror System"
},
{
"url": "https://tech.slashdot.org/story/98/12/24/0737210/electronic-ink",
"title": "Electronic Ink"
},
{
"url": "https://linux.slashdot.org/story/98/12/24/0511211/linux-1998-timeline",
"title": "Linux 1998 Timeline"
},
{
"url": "https://it.slashdot.org/story/98/12/23/1919232/cookie-security-flaw-affecting-all-major-browsers",
"title": "Cookie Security Flaw Affecting All Major Browsers"
},
{
"url": "https://linux.slashdot.org/story/98/12/23/1915201/linux-in-mit-technology-review",
"title": "Linux in MIT Technology Review"
},
{
"url": "https://it.slashdot.org/story/98/12/23/1913219/new-tcp-denial-of-service-attack",
"title": "New TCP denial of service Attack"
},
{
"url": "https://tech.slashdot.org/story/98/12/23/1616234/amd-k6-3-reviewed-before-public-release",
"title": "AMD K6-3 reviewed before public release"
},
{
"url": "https://hardware.slashdot.org/story/98/12/23/133255/micromachines-and-bugs",
"title": "Micromachines and Bugs"
},
{
"url": "https://slashdot.org/story/98/12/23/0959204/the-dark-side-of-tux",
"title": "The Dark Side of Tux"
},
{
"url": "https://it.slashdot.org/story/98/12/23/0916222/interesting-crypto-story",
"title": "Interesting Crypto Story"
},
{
"url": "https://linux.slashdot.org/story/98/12/23/0913225/linux-21132",
"title": "Linux 2.1.132"
},
{
"url": "https://linux.slashdot.org/story/98/12/23/0911225/spencer-katt-takes-on-the-linux-hike",
"title": "Spencer Katt takes on the Linux Hike"
},
{
"url": "https://tech.slashdot.org/story/98/12/22/196214/unix-as-an-element-of-literacy",
"title": "Unix as an element of literacy"
},
{
"url": "https://slashdot.org/story/98/12/22/185215/christmas-stories",
"title": "Christmas stories"
},
{
"url": "https://slashdot.org/story/98/12/22/1329250/word-perfect-for-linux-is-downloadcoms-2",
"title": "Word Perfect for Linux is download.com's #2"
},
{
"url": "https://linux.slashdot.org/story/98/12/22/1232238/kdelinuxworld-apology-to-linuxworld-everyone-happy",
"title": "KDE/LinuxWorld-Apology to LinuxWorld, Everyone Happy"
},
{
"url": "https://ask.slashdot.org/story/98/12/22/1149235/is-xfree86-333-on-cd",
"title": "Is XFree86 3.3.3 on CD?"
},
{
"url": "https://ask.slashdot.org/story/98/12/22/1143236/how-do-you-get-linux-to-recognize-ata-drives-larger-than-8g",
"title": "How do you Get Linux to Recognize ATA Drives Larger than 8G?"
},
{
"url": "https://ask.slashdot.org/story/98/12/22/1137213/multiple-domains-sendmail",
"title": "Multiple Domains & Sendmail"
},
{
"url": "https://ask.slashdot.org/story/98/12/22/1126205/what-hdd-should-you-use-in-a-beowulf-cluster",
"title": "What HDD should you use in a Beowulf Cluster?"
},
{
"url": "https://tech.slashdot.org/story/98/12/22/1121254/atts-future",
"title": "AT&Ts Future"
},
{
"url": "https://ask.slashdot.org/story/98/12/22/1120255/ask-slashdot-how-do-you-start-an-open-source-project",
"title": "Ask Slashdot: How do you Start an Open Source Project?"
},
{
"url": "https://linux.slashdot.org/story/98/12/22/0911219/pcweek-article-on-linuxs-enterprise-evolution",
"title": "PCWeek Article on Linux's Enterprise Evolution"
},
{
"url": "https://linux.slashdot.org/story/98/12/22/098238/internet-world-salutes-tux",
"title": "Internet World salutes Tux"
},
{
"url": "https://tech.slashdot.org/story/98/12/22/0854254/cool-mynetscape-channels",
"title": "Cool My.Netscape Channels"
},
{
"url": "https://slashdot.org/story/98/12/22/0849235/new-virus-that-propagates-on-nt-networks",
"title": "New virus that propagates on NT networks"
},
{
"url": "https://tech.slashdot.org/story/98/12/22/0845238/gnome-user-guide-released",
"title": "Gnome User Guide Released"
},
{
"url": "https://it.slashdot.org/story/98/12/22/0114214/the-twofish-encryption-algorithm",
"title": "The Twofish Encryption Algorithm"
},
{
"url": "https://hardware.slashdot.org/story/98/12/22/0023200/palm-developer-conference-report",
"title": "Palm Developer Conference Report"
},
{
"url": "https://tech.slashdot.org/story/98/12/21/171249/the-pda-revolution-hits-infoworld",
"title": "The PDA Revolution hits InfoWorld"
},
{
"url": "https://linux.slashdot.org/story/98/12/21/1129250/linux-is-times-6-tech-story-of-98",
"title": "Linux is Time's #6 Tech Story of 98"
},
{
"url": "https://slashdot.org/story/98/12/21/1116206/msnbc-review-of-netwinder",
"title": "MSNBC review of NetWinder"
},
{
"url": "https://news.slashdot.org/story/98/12/20/1210224/the-morning-after-digital-democracy-ii",
"title": "The Morning After: Digital Democracy II"
},
{
"url": "https://linux.slashdot.org/story/98/12/21/1021216/kde-11pre-packages-in-rawhide-red-hat-linux-beta",
"title": "KDE-1.1pre packages in RawHide, Red Hat Linux beta"
},
{
"url": "https://linux.slashdot.org/story/98/12/21/0913227/new-book-linux-kernel-module-programmers-guide",
"title": "New book: Linux Kernel Module Programmer's Guide"
},
{
"url": "https://tech.slashdot.org/story/98/12/21/097223/kde-not-present-at-linuxworld",
"title": "KDE Not Present at LinuxWorld?"
},
{
"url": "https://linux.slashdot.org/story/98/12/21/092236/suse-60-beta-released",
"title": "SuSE 6.0 Beta Released"
},
{
"url": "https://tech.slashdot.org/story/98/12/21/090206/fake-grassroots-divx-support",
"title": "Fake Grassroots DivX support?"
},
{
"url": "https://linux.slashdot.org/story/98/12/21/0223225/adopt-a-penguin-or-help-save-them",
"title": "Adopt a Penguin or help save them"
},
{
"url": "https://slashdot.org/story/98/12/21/0210200/alternative-oss-bundled-by-manufacturers",
"title": "Alternative OS's bundled by Manufacturers"
},
{
"url": "https://linux.slashdot.org/story/98/12/20/2348230/good-new-search-engine-running-on-linux",
"title": "Good New Search Engine-running on Linux"
},
{
"url": "https://news.slashdot.org/story/98/12/20/2339253/debilitating-handwrist-problems",
"title": "Debilitating Hand/Wrist Problems"
},
{
"url": "https://tech.slashdot.org/story/98/12/20/2333250/kde-11-preview-out",
"title": "KDE 1.1 preview out"
},
{
"url": "https://tech.slashdot.org/story/98/12/20/2228243/new-gnome",
"title": "New Gnome"
},
{
"url": "https://slashdot.org/story/98/12/20/1938242/norad-keeps-an-eye-on-santa",
"title": "NORAD keeps an eye on Santa"
},
{
"url": "https://tech.slashdot.org/story/98/12/20/1022252/new-the-gimpwin32-available-for-linux",
"title": "New: The Gimp/Win32 available for Linux!"
},
{
"url": "https://slashdot.org/story/98/12/20/1021208/ibm-paints-linux-blue",
"title": "IBM Paints Linux Blue"
},
{
"url": "https://ask.slashdot.org/story/98/12/19/1727247/where-do-you-look-for-library-upgrades",
"title": "Where do you look for Library Upgrades?"
},
{
"url": "https://ask.slashdot.org/story/98/12/19/1719241/ask-slashdot-set-top-x-terminals",
"title": "Ask Slashdot: Set Top X terminals?"
},
{
"url": "https://ask.slashdot.org/story/98/12/19/1716219/getting-oracle-8-to-work-on-linux",
"title": "Getting Oracle 8 to work on Linux"
},
{
"url": "https://slashdot.org/story/98/12/19/1326217/a-unix-christmas",
"title": "A Unix Christmas"
},
{
"url": "https://linux.slashdot.org/story/98/12/19/130250/red-hat-announces-certification-program",
"title": "Red Hat Announces Certification Program"
},
{
"url": "https://slashdot.org/story/98/12/19/1223210/patents-and-open-source",
"title": "Patents and Open Source"
},
{
"url": "https://linux.slashdot.org/story/98/12/18/2317249/accelerated-x-for-alphalinux",
"title": "Accelerated X for AlphaLinux"
},
{
"url": "https://slashdot.org/story/98/12/18/2235223/promising-words-from-corel",
"title": "Promising Words from Corel"
},
{
"url": "https://tech.slashdot.org/story/98/12/18/2223250/gnome-099-beta-out-but-not-enlightenment-dr-015",
"title": "Gnome 0.99 beta out, but not Enlightenment DR-0.15"
},
{
"url": "https://slashdot.org/story/98/12/18/2221244/us-computer-systems-are-vulnerable",
"title": "US computer systems are vulnerable"
},
{
"url": "https://slashdot.org/story/98/12/18/225236/microsoft-puts-spin-on-its-own-history",
"title": "Microsoft Puts Spin On Its Own History"
},
{
"url": "https://slashdot.org/story/98/12/18/1612226/photography-is-phun",
"title": "photography is phun"
},
{
"url": "https://news.slashdot.org/story/98/12/18/1526226/byte-bytes-the-dust",
"title": "Byte bytes the dust"
},
{
"url": "https://linux.slashdot.org/story/98/12/18/1355249/ggi-project-needs-a-webftp-server",
"title": "GGI project needs a web/ftp server"
},
{
"url": "https://news.slashdot.org/story/98/12/18/1319204/digital-democracy-an-idea-whose-time-has-come",
"title": "Digital Democracy: An Idea Whose Time Has Come"
},
{
"url": "https://tech.slashdot.org/story/98/12/18/1230222/more-on-gimp-devel",
"title": "More on GIMP Devel"
},
{
"url": "https://hardware.slashdot.org/story/98/12/18/1226237/compaq-linux-raid-controller-support",
"title": "Compaq Linux RAID controller support"
},
{
"url": "https://science.slashdot.org/story/98/12/18/1224209/technology-advances-influenced-by-extra-terrestrials",
"title": "Technology advances influenced by extra-terrestrials?"
},
{
"url": "https://news.slashdot.org/story/98/12/18/117210/slashdot-proxy-setup",
"title": "Slashdot Proxy Setup"
},
{
"url": "https://tech.slashdot.org/story/98/12/18/116255/new-kword-screenshots",
"title": "New KWord Screenshots"
},
{
"url": "https://news.slashdot.org/story/98/12/18/1045209/assorted-important-and-not-so-slashdot-notes",
"title": "Assorted Important (and Not So) Slashdot Notes"
},
{
"url": "https://news.slashdot.org/story/98/12/18/1023212/reviewmr-bunnys-guide-to-activex",
"title": "Review:Mr. Bunny's Guide to ActiveX"
},
{
"url": "https://bsd.slashdot.org/story/98/12/18/0940222/linuxworld-freebsd-article",
"title": "LinuxWorld FreeBSD article"
},
{
"url": "https://slashdot.org/story/98/12/18/0930233/good-article-on-beos-r4-at-pc-magazine-online",
"title": "Good article on BeOS R4 at PC Magazine Online"
},
{
"url": "https://slashdot.org/story/98/12/18/0832211/riaas-encypted-music-working-with-defense-contractors",
"title": "RIAA's Encypted Music-Working with defense contractors?"
},
{
"url": "https://linux.slashdot.org/story/98/12/18/016255/it-managers-allegeance-to-microsoft-wanes",
"title": "IT managers allegeance to Microsoft wanes"
},
{
"url": "https://linux.slashdot.org/story/98/12/18/0047209/advanced-spreadsheet-at-zero-cost",
"title": "Advanced spreadsheet at zero-cost"
},
{
"url": "https://it.slashdot.org/story/98/12/17/1653241/wassenaar-agreement-not-to-apply-to-free-software",
"title": "Wassenaar agreement not to apply to free software?"
},
{
"url": "https://news.slashdot.org/story/98/12/17/1519219/mit-tech-review-article",
"title": "MIT Tech Review Article"
},
{
"url": "https://ask.slashdot.org/story/98/12/17/1517255/what-is-clustering",
"title": "What is Clustering?"
},
{
"url": "https://ask.slashdot.org/story/98/12/17/1514204/are-ide-cd-burners-supported-under-linux",
"title": "Are IDE CD-Burners Supported Under Linux?"
},
{
"url": "https://tech.slashdot.org/story/98/12/17/157201/kde-update",
"title": "KDE Update"
},
{
"url": "https://ask.slashdot.org/story/98/12/08/1152201/is-there-medical-billing-software-available",
"title": "Is there Medical Billing software Available?"
},
{
"url": "https://news.slashdot.org/story/98/12/17/151249/rob-finishes-college",
"title": "Rob Finishes College"
},
{
"url": "https://ask.slashdot.org/story/98/12/17/1453215/ask-slashdot-how-do-you-get-non-certified-ssl-keys-to-work",
"title": "Ask Slashdot: How do you get non-\"Certified\" SSL Keys to Work?"
},
{
"url": "https://games.slashdot.org/story/98/12/17/1221208/classic-video-game-crackdown",
"title": "Classic Video Game Crackdown"
},
{
"url": "https://tech.slashdot.org/story/98/12/17/129232/first-photon-chip",
"title": "First Photon Chip"
},
{
"url": "https://slashdot.org/story/98/12/17/1129256/intel-s3-in-pact-intel-gains-access-to-exponential-patents",
"title": "Intel, S3 in pact-Intel gains access to Exponential patents?"
},
{
"url": "https://slashdot.org/story/98/12/17/1121226/tax-credit-proposed-for-oss-peoples",
"title": "Tax Credit Proposed for OSS Peoples"
},
{
"url": "https://slashdot.org/story/98/12/17/0846205/women-more-likely-to-be-internet-addicts",
"title": "Women more likely to be Internet Addicts"
},
{
"url": "https://news.slashdot.org/story/98/12/17/0842242/salon-magazine-the-free-software-story",
"title": "Salon Magazine: The free software story"
},
{
"url": "https://slashdot.org/story/98/12/17/0836254/download-wordperfect-8-for-linux-today",
"title": "Download WordPerfect 8 for Linux Today"
},
{
"url": "https://ask.slashdot.org/story/98/12/17/0127229/how-do-you-build-red-hat-image-disks",
"title": "How do you build Red Hat Image Disks?"
},
{
"url": "https://linux.slashdot.org/story/98/12/16/232239/linux-growth212-for-98",
"title": "Linux Growth:212% for 98"
},
{
"url": "https://tech.slashdot.org/story/98/12/16/230218/gnome-libs-and-gnome-core-enter-feature-freeze",
"title": "Gnome-libs and Gnome-core enter Feature Freeze"
},
{
"url": "https://tech.slashdot.org/story/98/12/16/2256243/mesa-snapshot-to-be-integrated-into-xfree86",
"title": "MESA snapshot to be integrated into XFree86"
},
{
"url": "https://slashdot.org/story/98/12/16/1930206/us-and-uk-unilaterally-attack-iraq",
"title": "US and UK unilaterally attack Iraq"
},
{
"url": "https://it.slashdot.org/story/98/12/16/186248/microsoft-exchange-bug-slows-impeachment",
"title": "Microsoft Exchange bug slows impeachment"
},
{
"url": "https://tech.slashdot.org/story/98/12/16/1713249/netscape-may-cut-off-mozillaorg",
"title": "Netscape may cut off Mozilla.org"
},
{
"url": "https://ask.slashdot.org/story/98/12/16/1526236/nintendo-64-or-playstation-which-to-buy-for-xmas",
"title": "Nintendo-64 or PlayStation? Which to buy for XMas?"
},
{
"url": "https://ask.slashdot.org/story/98/12/16/159256/ask-slashdot-are-there-any-alternatives-to-mlorg",
"title": "Ask Slashdot: Are There Any Alternatives to Ml.Org?"
},
{
"url": "https://science.slashdot.org/story/98/12/16/1256254/human-cloning-on-the-way",
"title": "Human Cloning on the way"
},
{
"url": "https://slashdot.org/story/98/12/16/1254207/maquarium-g3-upgrade",
"title": "Maquarium G3 Upgrade"
},
{
"url": "https://linux.slashdot.org/story/98/12/16/1251211/linus-for-top-newsmaker-of-98",
"title": "Linus for Top Newsmaker of 98"
},
{
"url": "https://slashdot.org/story/98/12/16/0950252/microsoft-sued-over-ergomouse-for-1b",
"title": "Microsoft Sued Over ErgoMouse for $1B"
},
{
"url": "https://linux.slashdot.org/story/98/12/16/0938230/kernelorg-is-looking-for-official-mirrors",
"title": "Kernel.org is looking for Official Mirrors"
},
{
"url": "https://news.slashdot.org/story/98/12/16/0933207/assorted-slashdot-things-and-a-plug-to-vote",
"title": "Assorted Slashdot Things (And a Plug to Vote!)"
},
{
"url": "https://apple.slashdot.org/story/98/12/15/2243210/apple-to-ship-linuxppc",
"title": "Apple to Ship LinuxPPC?"
},
{
"url": "https://slashdot.org/story/98/12/15/2236217/jikes-update",
"title": "Jikes Update"
},
{
"url": "https://news.slashdot.org/story/98/12/16/0822208/review-the-aardvark-is-ready-for-war",
"title": "Review: The Aardvark is Ready for War"
},
{
"url": "https://slashdot.org/story/98/12/16/0812201/free-version-of-wordperfect-8-for-linux-tomorrow",
"title": "Free version of WordPerfect 8 for Linux tomorrow"
},
{
"url": "https://linux.slashdot.org/story/98/12/15/1324229/entirex-dcom-for-linux-released-as-free-download",
"title": "EntireX DCOM for Linux released as free Download"
},
{
"url": "https://news.slashdot.org/story/98/12/15/1319215/too-old-for-technology",
"title": "Too Old for Technology?"
},
{
"url": "https://tech.slashdot.org/story/98/12/15/1311225/programmer-gagged",
"title": "Programmer Gagged"
},
{
"url": "https://linux.slashdot.org/story/98/12/15/102232/no-linux-support-is-one-of-only-2-cons-to-jdk-1",
"title": "'No Linux Support' is one of only 2 cons to JDK 1"
},
{
"url": "https://slashdot.org/story/98/12/15/0956214/forking-gimp-devel",
"title": "Forking Gimp Devel?"
},
{
"url": "https://slashdot.org/story/98/12/15/0953212/logic-and-memory-on-the-same-die",
"title": "Logic and Memory on the Same Die"
},
{
"url": "https://news.slashdot.org/story/98/12/15/0945219/another-star-wars-trailer",
"title": "Another Star Wars Trailer"
},
{
"url": "https://slashdot.org/story/98/12/15/0937222/256-node-alpha-cluster",
"title": "256 Node Alpha Cluster"
},
{
"url": "https://apple.slashdot.org/story/98/12/15/098251/portable-imac-like-machine",
"title": "Portable iMac-like machine?"
},
{
"url": "https://slashdot.org/story/98/12/15/006232/the-end-of-the-world-as-i-know-it",
"title": "the end of the world (as I know it)"
},
{
"url": "https://slashdot.org/story/98/12/14/2258205/intel-sues-an-ex-employee-turned-spammer",
"title": "Intel Sues an Ex Employee Turned Spammer"
},
{
"url": "https://tech.slashdot.org/story/98/12/14/2253206/new-enlightenment-webpage",
"title": "New Enlightenment Webpage"
},
{
"url": "https://linux.slashdot.org/story/98/12/14/1635245/idglinuxworldexpo-response",
"title": "IDG/LinuxworldExpo Response"
},
{
"url": "https://linux.slashdot.org/story/98/12/14/1620205/zdnet-columnist-disses-linux",
"title": "ZDnet Columnist Disses Linux"
},
{
"url": "https://tech.slashdot.org/story/98/12/14/1611225/icbms-as-monster-fireworks",
"title": "ICBMs as monster fireworks"
},
{
"url": "https://linux.slashdot.org/story/98/12/14/163209/debian-adopts-a-constitution",
"title": "Debian Adopts a Constitution"
},
{
"url": "https://slashdot.org/story/98/12/14/1330207/interview-with-corel",
"title": "Interview with Corel"
},
{
"url": "https://news.slashdot.org/story/98/12/09/1722247/the-road-to-linux-first-blood",
"title": "The Road To Linux: First Blood"
},
{
"url": "https://news.slashdot.org/story/98/12/14/1222221/reviewlinux-programmers-reference",
"title": "Review:Linux Programmer's Reference"
},
{
"url": "https://news.slashdot.org/story/98/12/14/1111230/sun-and-oracle-against-nt",
"title": "Sun and Oracle against NT."
},
{
"url": "https://news.slashdot.org/story/98/12/14/0950225/boston-globe-column-on-osstim-oreilly",
"title": "Boston Globe column on OSS/Tim O'Reilly"
},
{
"url": "https://linux.slashdot.org/story/98/12/14/0938238/linuxworld-snubs-speakers",
"title": "LinuxWorld Snubs Speakers"
},
{
"url": "https://slashdot.org/story/98/12/14/0928235/ibm-releasing-open-source-mta",
"title": "IBM releasing Open Source MTA"
},
{
"url": "https://it.slashdot.org/story/98/12/14/0913200/brits-fight-back-against-crypto-proposals",
"title": "Brits Fight back against Crypto Proposals"
},
{
"url": "https://news.slashdot.org/story/98/12/13/1028244/reviewstar-trek-insurrection",
"title": "Review:Star Trek Insurrection"
},
{
"url": "https://science.slashdot.org/story/98/12/13/108246/de-coding-worm-dna",
"title": "De-coding Worm DNA"
},
{
"url": "https://games.slashdot.org/story/98/12/13/106251/from-pong-to-nintendo-64",
"title": "from Pong to Nintendo 64"
},
{
"url": "https://news.slashdot.org/story/98/12/12/1632242/impeachment-and-the-internet",
"title": "Impeachment and the Internet"
},
{
"url": "https://science.slashdot.org/story/98/12/12/163259/more-mars-missions",
"title": "More Mars Missions"
},
{
"url": "https://linux.slashdot.org/story/98/12/12/161221/acer-plans-linux-server-for-educational-market",
"title": "Acer plans Linux server for educational market"
},
{
"url": "https://slashdot.org/story/98/12/12/1143221/church-of-mentos",
"title": "Church of Mentos"
},
{
"url": "https://news.slashdot.org/story/98/12/12/1129235/mp3-conference-announcement",
"title": "MP3 Conference Announcement"
},
{
"url": "https://tech.slashdot.org/story/98/12/12/1121217/cbs-article-on-netscape-open-source-success",
"title": "CBS Article on Netscape open source success"
},
{
"url": "https://tech.slashdot.org/story/98/12/12/1115221/new-gnome-eyecandy",
"title": "New Gnome Eyecandy"
},
{
"url": "https://news.slashdot.org/story/98/12/11/2343253/car-alarm-flame-thrower",
"title": "Car Alarm Flame Thrower"
},
{
"url": "https://news.slashdot.org/story/98/12/11/2341232/riaa-to-launch-secure-digital-music-initiative",
"title": "RIAA to launch Secure Digital Music Initiative"
},
{
"url": "https://slashdot.org/story/98/12/11/2338244/furby-autopsies",
"title": "Furby Autopsies"
},
{
"url": "https://tech.slashdot.org/story/98/12/11/2337205/salon-scoop-on-sendmail",
"title": "Salon Scoop on Sendmail"
},
{
"url": "https://slashdot.org/story/98/12/11/2333230/sun-on-jini-linux",
"title": "Sun on Jini & Linux"
},
{
"url": "https://news.slashdot.org/story/98/12/11/235253/quicky-dump",
"title": "Quicky-dump"
},
{
"url": "https://slashdot.org/story/98/12/11/1514232/jikes-open-source-issues-a-report-from-osi",
"title": "Jikes Open-Source Issues... a report from OSI"
},
{
"url": "https://tech.slashdot.org/story/98/12/11/1454208/omnigroup-releases-source-code",
"title": "Omnigroup Releases source code"
},
{
"url": "https://science.slashdot.org/story/98/12/11/1236240/nasa-seeks-to-verify-gravity-shield",
"title": "NASA seeks to verify Gravity shield"
},
{
"url": "https://news.slashdot.org/story/98/12/11/1115238/webdav-approved-as-ietf-standard",
"title": "WebDAV approved as IETF Standard"
},
{
"url": "https://hardware.slashdot.org/story/98/12/11/1056234/palmpilot-for-kids",
"title": "PalmPilot for kids?"
},
{
"url": "https://science.slashdot.org/story/98/12/11/1052217/computings-holy-grail",
"title": "Computing's Holy Grail"
},
{
"url": "https://news.slashdot.org/story/98/12/11/106211/featuregeek-gifts",
"title": "Feature:Geek Gifts"
},
{
"url": "https://linux.slashdot.org/story/98/12/11/0950247/followup-for-mitsubishicompaq-supercomputer-story",
"title": "Followup for Mitsubishi/Compaq Supercomputer Story"
},
{
"url": "https://slashdot.org/story/98/12/11/0941204/suns-ultrapenguin-takes-flight",
"title": "Sun's UltraPenguin Takes Flight"
},
{
"url": "https://news.slashdot.org/story/98/12/11/0921232/hacker-on-the-loose-says-washington-post",
"title": "\"Hacker\" on the Loose says Washington Post"
},
{
"url": "https://news.slashdot.org/story/98/12/11/0916216/cnn-on-mp3",
"title": "CNN on MP3"
},
{
"url": "https://games.slashdot.org/story/98/12/11/098250/gldoom-released",
"title": "GLDoom Released"
},
{
"url": "https://news.slashdot.org/story/98/12/11/096211/star-trek-insurrection",
"title": "Star Trek Insurrection"
},
{
"url": "https://ask.slashdot.org/story/98/12/10/1834241/are-there-rpms-for-xfree86-333",
"title": "Are there RPMs for XFree86-3.3.3"
},
{
"url": "https://ask.slashdot.org/story/98/12/10/1822225/whats-a-good-motherboard-for-smp-linux",
"title": "What's a good motherboard for SMP Linux"
},
{
"url": "https://ask.slashdot.org/story/98/12/10/1819200/how-can-you-connect-a-playstation-controller-to-a-linux-box",
"title": "How can you Connect a Playstation Controller to a Linux Box?"
},
{
"url": "https://linux.slashdot.org/story/98/12/10/1619202/compaq-selling-linux-supercomputer",
"title": "Compaq Selling Linux Supercomputer"
},
{
"url": "https://linux.slashdot.org/story/98/12/10/1458226/predictions-for-next-year",
"title": "Predictions for next year"
},
{
"url": "https://linux.slashdot.org/story/98/12/10/1438247/pair-of-linuxworld-stories",
"title": "Pair of LinuxWorld Stories"
},
{
"url": "https://slashdot.org/story/98/12/10/1426244/internic-teams-up-with-realnames",
"title": "Internic teams up with RealNames"
},
{
"url": "https://slashdot.org/story/98/12/10/147253/trooper-clerks",
"title": "Trooper Clerks"
},
{
"url": "https://hardware.slashdot.org/story/98/12/10/1150212/2gig-floppies-for-30",
"title": "2Gig floppies for $30?"
},
{
"url": "https://news.slashdot.org/story/98/12/10/1126205/mysql-wins-cnets-best-affordable-database",
"title": "MySQL wins CNET's best affordable database."
},
{
"url": "https://news.slashdot.org/story/98/12/10/0812216/slashdot-1-on-distributed-key-processing",
"title": "Slashdot #1 on Distributed Key Processing"
},
{
"url": "https://tech.slashdot.org/story/98/12/10/087253/sgi-details-new-wintel-machines",
"title": "SGI details new Wintel machines"
},
{
"url": "https://slashdot.org/story/98/12/10/0628228/cringley-thinks-ms-will-win-lawsuit",
"title": "Cringley thinks MS will win lawsuit"
},
{
"url": "https://linux.slashdot.org/story/98/12/10/0622216/tucows-to-carry-linux-software",
"title": "Tucows to carry Linux software"
},
{
"url": "https://tech.slashdot.org/story/98/12/10/0510202/unix-inventors-win-technology-medal",
"title": "Unix inventors win technology medal"
},
{
"url": "https://slashdot.org/story/98/12/09/2130228/vitamins-are-gud-for-me",
"title": "vitamins are gud for me."
},
{
"url": "https://news.slashdot.org/story/98/12/09/2056243/canada-to-imposing-taxes-on-blank-cds",
"title": "Canada to imposing Taxes on Blank CDs?"
},
{
"url": "https://linux.slashdot.org/story/98/12/09/2053225/wwwalphalinuxorg---is-your-penguin-64-bit",
"title": "www.AlphaLinux.org - Is your Penguin 64-bit?"
},
{
"url": "https://slashdot.org/story/98/12/09/1453206/jikes-licensing-problems",
"title": "Jikes licensing problems"
},
{
"url": "https://news.slashdot.org/story/98/12/09/1314247/linuxbizcom",
"title": "linuxbiz.com?"
},
{
"url": "https://hardware.slashdot.org/story/98/12/09/139241/the-mouse-turns-30",
"title": "The Mouse Turns 30"
},
{
"url": "https://slashdot.org/story/98/12/09/1233220/request-for-geek-gift-ideas-for-feature",
"title": "Request for Geek Gift Ideas For Feature"
},
{
"url": "https://news.slashdot.org/story/98/12/09/1140216/star-wars-lego",
"title": "Star Wars Lego"
},
{
"url": "https://slashdot.org/story/98/12/09/1134246/dvorak-thinks-aolnetscape-bad-idea",
"title": "Dvorak thinks AOL/Netscape Bad Idea"
},
{
"url": "https://linux.slashdot.org/story/98/12/09/0910234/pcweek-reviews-redhat-52",
"title": "PCWeek reviews RedHat 5.2"
},
{
"url": "https://games.slashdot.org/story/98/12/09/0811207/raven-needs-help-to-port-heretic-ii-to-linux",
"title": "Raven needs help to port Heretic II to Linux!"
},
{
"url": "https://slashdot.org/story/98/12/09/086238/rob-begs-for-christmas-presents",
"title": "Rob Begs for Christmas Presents"
},
{
"url": "https://linux.slashdot.org/story/98/12/09/080211/six-lies-about-linux",
"title": "\"Six Lies About Linux\""
},
{
"url": "https://developers.slashdot.org/story/98/12/09/0113252/partial-javaworld-awards-report",
"title": "Partial JavaWorld Awards report"
},
{
"url": "https://slashdot.org/story/98/12/08/2336205/beos-and-linux-arent-at-war-declares-zdnet",
"title": "BeOS and Linux aren't at war declares ZDNET"
},
{
"url": "https://developers.slashdot.org/story/98/12/08/0828234/sun-renames-jdk12-and-moves-closer-to-oss",
"title": "SUN Renames JDK1.2 and moves closer to OSS"
},
{
"url": "https://tech.slashdot.org/story/98/12/08/2310202/silicon-graphics-officially-supports-samba",
"title": "Silicon Graphics officially supports Samba"
},
{
"url": "https://slashdot.org/story/98/12/08/2253234/fdic-to-track-you",
"title": "FDIC to track you"
},
{
"url": "https://developers.slashdot.org/story/98/12/08/208222/sun-does-not-plan-to-enforce-the-benchmark-clause",
"title": "SUN does not plan to enforce the benchmark clause"
},
{
"url": "https://apple.slashdot.org/story/98/12/08/1950244/usb-linux-on-the-imac",
"title": "USB Linux on the iMac"
},
{
"url": "https://tech.slashdot.org/story/98/12/08/1943259/netscape-prototype-is-one-fast-browser",
"title": "Netscape Prototype is one fast Browser"
},
{
"url": "https://slashdot.org/story/98/12/08/1942252/sun-products-to-work-with-linux",
"title": "Sun Products To Work With Linux"
},
{
"url": "https://news.slashdot.org/story/98/12/08/1937209/san-francisco-power-down",
"title": "San Francisco Power Down"
},
{
"url": "https://games.slashdot.org/story/98/12/08/1758216/loki-to-port-games",
"title": "Loki to port Games"
},
{
"url": "https://tech.slashdot.org/story/98/12/08/1647204/novell-not-opening-code-tomorrow",
"title": "Novell NOT opening code tomorrow"
},
{
"url": "https://tech.slashdot.org/story/98/12/08/156212/erlang-becomes-open-source",
"title": "Erlang becomes Open Source"
},
{
"url": "https://slashdot.org/story/98/12/08/1347221/att-buy-up-ibms-global-network-business",
"title": "AT&T buy up IBM's Global Network Business"
},
{
"url": "https://ask.slashdot.org/story/98/12/08/1247235/why-do-intel-x86-chips-run-so-hot",
"title": "Why do Intel x86 Chips Run so Hot?"
},
{
"url": "https://ask.slashdot.org/story/98/12/08/129259/can-ciscos-isl-run-over-an-sonet-ring",
"title": "Can Cisco's ISL Run Over an SONET ring?"
},
{
"url": "https://ask.slashdot.org/story/98/12/08/122237/christmas-card-making-using-free-software",
"title": "Christmas Card Making Using Free Software?"
},
{
"url": "https://news.slashdot.org/story/98/12/08/1125244/thebazaar-update",
"title": "thebazaar update"
},
{
"url": "https://slashdot.org/story/98/12/08/0921239/nasdaq-to-switch-to-nt",
"title": "NASDAQ to switch to NT"
},
{
"url": "https://slashdot.org/story/98/12/08/0855216/silly-dialog-boxes",
"title": "Silly Dialog Boxes"
},
{
"url": "https://news.slashdot.org/story/98/12/08/0845256/reviewunix-network-programming-vol-1",
"title": "Review:Unix Network Programming, Vol. 1"
},
{
"url": "https://news.slashdot.org/story/98/12/06/2341228/the-secrets-of-linux-first-steps",
"title": "The Secrets of Linux: First Steps"
},
{
"url": "https://linux.slashdot.org/story/98/12/08/0821211/is-linus-the-best-dressed-guy-at-the-palace",
"title": "Is Linus the best dressed guy at the Palace?"
},
{
"url": "https://news.slashdot.org/story/98/12/08/0813227/space-station-construction-being-documented-in-imax",
"title": "Space station Construction being Documented in IMAX"
},
{
"url": "https://tech.slashdot.org/story/98/12/08/086230/kosh---kommunity-operating-system-hardware",
"title": "KOSH - Kommunity Operating System & Hardware"
},
{
"url": "https://slashdot.org/story/98/12/07/208211/db2-beta-released-for-linux",
"title": "DB2 Beta released for Linux"
},
{
"url": "https://developers.slashdot.org/story/98/12/05/1216225/jikes-released-as-open-source",
"title": "Jikes released as Open Source"
},
{
"url": "https://news.slashdot.org/story/98/12/07/1241225/open-source-book-out-february",
"title": "Open Source Book out February"
},
{
"url": "https://slashdot.org/story/98/12/07/1234228/upside-article-on-the-onion",
"title": "Upside article on The Onion"
},
{
"url": "https://slashdot.org/story/98/12/07/1229203/webpad-fan-club",
"title": "WebPAD fan club?"
},
{
"url": "https://tech.slashdot.org/story/98/12/07/1140254/is-cleartype-a-20-year-old-apple-ii-tech",
"title": "Is ClearType a 20-year old Apple II Tech?"
},
{
"url": "https://tech.slashdot.org/story/98/12/07/1130259/floppy-screens",
"title": "Floppy Screens"
},
{
"url": "https://games.slashdot.org/story/98/12/07/1123239/xmame-gets-a-new-homepage",
"title": "Xmame gets a new Homepage"
},
{
"url": "https://slashdot.org/story/98/12/07/1058244/sony-throws-its-weight-at-digital-music-distributi",
"title": "Sony throws its weight at digital music distributi"
},
{
"url": "https://ask.slashdot.org/story/98/12/07/097228/ask-slashdot-is-there-a-cc-code-repository",
"title": "Ask Slashdot: Is there a C/C++ Code Repository?"
},
{
"url": "https://linux.slashdot.org/story/98/12/06/2346233/x11amp-update",
"title": "x11amp update"
},
{
"url": "https://tech.slashdot.org/story/98/12/06/2232207/nglayout-now-called-gecko-to-be-released-this-week",
"title": "NGLayout now called Gecko to be released this week"
},
{
"url": "https://linux.slashdot.org/story/98/12/06/2219200/applixware-to-make-some-source-open",
"title": "Applixware to make some source open"
},
{
"url": "https://games.slashdot.org/story/98/12/06/2159225/interplay-and-carmageddon-2",
"title": "Interplay and Carmageddon 2"
},
{
"url": "https://developers.slashdot.org/story/98/12/06/1720245/sun-bans-java-benchmarking",
"title": "Sun bans Java benchmarking"
},
{
"url": "https://slashdot.org/story/98/12/06/1524241/fcc-to-rule-local-calls-to-isp-count-as-ld",
"title": "FCC to rule local calls to ISP count as LD?"
},
{
"url": "https://news.slashdot.org/story/98/12/06/1035249/lego-mindstorms-ir-communications-protocol",
"title": "Lego MindStorms IR Communications Protocol"
},
{
"url": "https://slashdot.org/story/98/12/06/1034207/proprietary-mp3s",
"title": "Proprietary MP3s"
},
{
"url": "https://linux.slashdot.org/story/98/12/06/1029209/mklinux-stopped",
"title": "MkLinux Stopped?"
},
{
"url": "https://linux.slashdot.org/story/98/12/05/2233213/clown-greetings-from-the-512-node-linux-cluster",
"title": "CLOWN: Greetings from the 512-node Linux-Cluster."
},
{
"url": "https://developers.slashdot.org/story/98/12/05/2220246/java-infringes-upon-a-patent",
"title": "Java infringes upon a patent?"
},
{
"url": "https://tech.slashdot.org/story/98/12/05/1434201/avant-finishes-polaris-port",
"title": "Avant! finishes Polaris port"
},
{
"url": "https://developers.slashdot.org/story/98/12/05/1419238/the-java-lobby-should-sun-make-java-open-source",
"title": "The Java Lobby: Should Sun make Java Open Source?"
},
{
"url": "https://tech.slashdot.org/story/98/12/05/1351240/should-gnustep-and-gnome-work-together",
"title": "Should GNUStep and GNOME work together?"
},
{
"url": "https://linux.slashdot.org/story/98/12/05/1339252/worlds-penguins-are-in-peril",
"title": "World's penguins are in peril"
},
{
"url": "https://news.slashdot.org/story/98/12/05/1026204/star-wars-as-religion",
"title": "Star Wars as Religion?"
},
{
"url": "https://news.slashdot.org/story/98/12/05/1017227/review-of-bunny",
"title": "Review of 'Bunny'"
},
{
"url": "https://tech.slashdot.org/story/98/12/05/0943204/description-of-pixar-render-farm",
"title": "Description of Pixar Render farm"
},
{
"url": "https://linux.slashdot.org/story/98/12/05/0927218/zdnet-article-on-delay-of-22-kernel",
"title": "ZDnet article on \"Delay\" of 2.2 kernel"
},
{
"url": "https://slashdot.org/story/98/12/05/0922256/hotmail-bug-clogging-up-the-net",
"title": "Hotmail Bug Clogging up the Net"
},
{
"url": "https://slashdot.org/story/98/12/05/0916216/palmpilot-interface-for-netwinder-admin",
"title": "PalmPilot Interface for NetWinder Admin"
},
{
"url": "https://linux.slashdot.org/story/98/12/05/0914208/linux-cluster-worldrecord-attempt",
"title": "Linux Cluster Worldrecord Attempt"
},
{
"url": "https://slashdot.org/story/98/12/04/1830254/sun-to-support-linux",
"title": "Sun to Support Linux"
},
{
"url": "https://linux.slashdot.org/story/98/12/04/1530208/sgi-joins-linux-international",
"title": "SGI joins Linux International"
},
{
"url": "https://news.slashdot.org/story/98/12/04/1249205/public-enemy-forced-to-remove-mp3",
"title": "Public Enemy forced to remove MP3"
},
{
"url": "https://slashdot.org/story/98/12/04/1245241/ld-style-pricing-on-broadband-access",
"title": "LD-style pricing on Broadband access?"
},
{
"url": "https://news.slashdot.org/story/98/12/04/1158251/featureethical-programmers-guild",
"title": "Feature:Ethical Programmers Guild"
},
{
"url": "https://linux.slashdot.org/story/98/12/04/1151233/mainstream-article-on-ldp",
"title": "Mainstream Article on LDP"
},
{
"url": "https://tech.slashdot.org/story/98/12/04/1140230/marc-andreesens-future-at-netscape",
"title": "Marc Andreesen's Future at Netscape"
},
{
"url": "https://slashdot.org/story/98/12/04/1132244/china-trial-of-net-dissident",
"title": "China: Trial of Net Dissident"
},
{
"url": "https://tech.slashdot.org/story/98/12/04/1118229/xerox-announces-19-flat-panel-display",
"title": "Xerox announces 19\" flat panel display"
},
{
"url": "https://slashdot.org/story/98/12/04/115202/e-petition-the-govt-to-eval-open-source",
"title": "E-Petition the Gov't to Eval Open Source"
},
{
"url": "https://linux.slashdot.org/story/98/12/04/1055258/suns-take-on-linux-vs-solaris",
"title": "Suns take on Linux vs Solaris"
},
{
"url": "https://games.slashdot.org/story/98/12/04/1052255/interview-with-zoid-about-linux",
"title": "Interview with Zoid about Linux"
},
{
"url": "https://ask.slashdot.org/story/98/12/04/0156202/ask-slashdot-is-there-a-secure-nfs",
"title": "Ask Slashdot: Is there a secure NFS?"
},
{
"url": "https://ask.slashdot.org/story/98/12/04/0138201/what-is-adm-grace-hoppers-rope-trick",
"title": "What is Adm. Grace Hopper's \"Rope Trick\"?"
},
{
"url": "https://ask.slashdot.org/story/98/12/04/0123203/how-do-i-get-an-x-only-console-using-linux",
"title": "How do I get an X only console using Linux?"
},
{
"url": "https://ask.slashdot.org/story/98/12/04/011230/help-needed-w-sony-superstation-tape-drive",
"title": "Help Needed w/ Sony Superstation Tape Drive"
},
{
"url": "https://news.slashdot.org/story/98/12/03/2310251/huge-flood-of-quickees",
"title": "Huge Flood of Quickees"
},
{
"url": "https://tech.slashdot.org/story/98/12/03/2019227/new-qpl-qt",
"title": "New QPL & QT"
},
{
"url": "https://it.slashdot.org/story/98/12/03/1814201/wassenaar-arrangement-signed",
"title": "Wassenaar Arrangement Signed"
},
{
"url": "https://hardware.slashdot.org/story/98/12/03/1758241/steal-cars-with-a-palmpilot",
"title": "Steal Cars With a PalmPilot?"
},
{
"url": "https://news.slashdot.org/story/98/12/03/0951230/idiots-guide-to-installing-hurd",
"title": "\"Idiot's Guide to Installing Hurd\""
},
{
"url": "https://slashdot.org/story/98/12/03/0949257/tim-oreilly-on-open-source",
"title": "Tim O'Reilly on Open Source"
},
{
"url": "https://apple.slashdot.org/story/98/12/03/0942243/next-generation-mac-details-leaked",
"title": "Next generation Mac details Leaked"
},
{
"url": "https://news.slashdot.org/story/98/12/03/0935259/slashdot-nominated-for-cool-site-of-the-year",
"title": "Slashdot Nominated for Cool Site of the Year"
},
{
"url": "https://news.slashdot.org/story/98/12/03/0929256/washington-post-on-esr",
"title": "Washington Post on ESR"
},
{
"url": "https://slashdot.org/story/98/12/03/0922226/mlorg-shutting-down",
"title": "ml.org shutting down"
},
{
"url": "https://tech.slashdot.org/story/98/12/03/0848230/gigabyte-dram",
"title": "Gigabyte DRAM"
},
{
"url": "https://linux.slashdot.org/story/98/12/03/050210/linux-21131-released",
"title": "Linux 2.1.131 released"
},
{
"url": "https://tech.slashdot.org/story/98/12/02/1837252/gnome-window-manager-compliance-spec",
"title": "GNOME Window Manager Compliance Spec"
},
{
"url": "https://news.slashdot.org/story/98/12/02/1647215/diamond-files-suit-against-riaa",
"title": "Diamond files suit against RIAA"
},
{
"url": "https://linux.slashdot.org/story/98/12/02/1644237/linuxbierwanderungthe-linux-beer-hike",
"title": "Linuxbierwanderung:The Linux Beer Hike"
},
{
"url": "https://games.slashdot.org/story/98/12/02/1631224/on-the-father-of-mario-and-zelda",
"title": "On the Father of Mario and Zelda..."
},
{
"url": "https://linux.slashdot.org/story/98/12/02/1628241/performance-computing-launches-maddog-column",
"title": "Performance Computing launches MadDog Column"
},
{
"url": "https://hardware.slashdot.org/story/98/12/02/1622238/palmos-going-open-source",
"title": "PalmOS going Open Source"
},
{
"url": "https://hardware.slashdot.org/story/98/12/02/1454240/palm-vii",
"title": "Palm VII"
},
{
"url": "https://news.slashdot.org/story/98/12/02/1132217/abisource-switches-to-the-gpl",
"title": "AbiSource switches to the GPL"
},
{
"url": "https://linux.slashdot.org/story/98/12/02/0925201/newscom-on-linux",
"title": "News.com On Linux"
},
{
"url": "https://tech.slashdot.org/story/98/12/02/0846228/nvidia-obfuscates-source-in-xfree86",
"title": "nVidia obfuscates source in XFree86"
},
{
"url": "https://hardware.slashdot.org/story/98/12/02/0841239/oreilly-palm-programming-contest",
"title": "O'Reilly Palm Programming Contest"
},
{
"url": "https://slashdot.org/story/98/12/02/0814233/ibm-brings-enterprise-and-web-file-sharing-to-linux",
"title": "IBM Brings Enterprise and Web File Sharing to Linux"
},
{
"url": "https://linux.slashdot.org/story/98/12/02/0810229/updated-howtos-at-ldp",
"title": "Updated HOWTOs at LDP"
},
{
"url": "https://tech.slashdot.org/story/98/12/02/085247/netscape-vs-netscapesuckscom",
"title": "Netscape vs Netscapesucks.com"
},
{
"url": "https://news.slashdot.org/story/98/12/02/0759250/transmeta-news",
"title": "Transmeta News"
},
{
"url": "https://slashdot.org/story/98/12/02/0441205/a-future-for-the-demoscene",
"title": "A future for the DemoScene"
},
{
"url": "https://bsd.slashdot.org/story/98/12/01/130249/openbsd-24-released",
"title": "OpenBSD 2.4 Released"
},
{
"url": "https://ask.slashdot.org/story/98/12/01/130207/are-there-problem-reporting-systems-for-linux",
"title": "Are There Problem Reporting Systems for Linux"
},
{
"url": "https://ask.slashdot.org/story/98/12/01/1251248/zip-avatar-syquest-which-portable-drive-is-a-good-deal",
"title": "Zip? Avatar? Syquest? Which Portable Drive is a Good Deal?"
},
{
"url": "https://ask.slashdot.org/story/98/12/01/1246227/christmas-shopping-on-the-net",
"title": "Christmas Shopping on the Net?"
},
{
"url": "https://hardware.slashdot.org/story/98/12/01/1223240/the-future-of-pilots",
"title": "The Future of Pilots"
},
{
"url": "https://linux.slashdot.org/story/98/12/01/129201/linux-gazette",
"title": "Linux Gazette"
},
{
"url": "https://news.slashdot.org/story/98/12/01/121200/sunsiteuncedu-becomes-metalabuncedu",
"title": "SunSITE.unc.edu becomes MetaLab.unc.edu"
},
{
"url": "https://games.slashdot.org/story/98/12/01/1157229/quake-2-now-is-a-spectator-sport",
"title": "Quake 2 Now is a Spectator Sport"
},
{
"url": "https://slashdot.org/story/98/12/01/1127219/the-internet-and-music-industry",
"title": "The Internet and Music Industry"
},
{
"url": "https://slashdot.org/story/98/12/01/1124207/first-gnu-software-for-eda",
"title": "First GNU Software for EDA"
},
{
"url": "https://slashdot.org/story/98/12/01/1110258/new-netwinder-versions",
"title": "New NetWinder Versions"
},
{
"url": "https://linux.slashdot.org/story/98/12/01/0919240/red-hat-in-talks-with-ibm",
"title": "Red Hat in talks with IBM?"
},
{
"url": "https://news.slashdot.org/story/98/12/01/0917214/eu-proposed-legislation",
"title": "EU Proposed Legislation"
},
{
"url": "https://hardware.slashdot.org/story/98/12/01/0914204/600-mhz-alpha-chip-coming",
"title": "600 mHz Alpha chip coming"
},
{
"url": "https://linux.slashdot.org/story/98/12/01/0912237/adaptec-to-provide-ultra2-support-to-red-hat",
"title": "Adaptec to Provide Ultra2 Support to Red Hat"
},
{
"url": "https://bsd.slashdot.org/story/98/11/30/1920211/freebsd-228-released",
"title": "FreeBSD 2.2.8 Released"
},
{
"url": "https://linux.slashdot.org/story/98/11/30/1634257/new-linux-telephony-website",
"title": "New Linux Telephony Website"
},
{
"url": "https://news.slashdot.org/story/98/11/30/1426228/the-ultimate-tv-gadget",
"title": "The ultimate TV gadget?"
},
{
"url": "https://linux.slashdot.org/story/98/11/30/142209/worm-strikes-linux",
"title": "Worm strikes Linux"
},
{
"url": "https://linux.slashdot.org/story/98/11/30/1312218/linuxworldexpo-press-info-out",
"title": "LinuxWorldExpo Press Info Out"
},
{
"url": "https://slashdot.org/story/98/11/30/1156253/new-playstation-console-uses-gnu-tools",
"title": "New Playstation Console Uses GNU Tools"
},
{
"url": "https://news.slashdot.org/story/98/11/29/238216/featurehamlet-in-cyberspace",
"title": "Feature:Hamlet In Cyberspace"
},
{
"url": "https://slashdot.org/story/98/11/30/1153208/voxml---voice-on-the-web",
"title": "VoxML - Voice on the web"
},
{
"url": "https://slashdot.org/story/98/11/30/1139207/corel-pushes-ahead-with-linux-os",
"title": "Corel Pushes ahead with Linux OS"
},
{
"url": "https://news.slashdot.org/story/98/11/30/1015241/novell-to-open-parts-of-nds-source-code",
"title": "Novell to open parts of NDS source code"
},
{
"url": "https://linux.slashdot.org/story/98/11/30/0920220/mexico-chooses-linux-for-schools",
"title": "Mexico chooses Linux for schools"
},
{
"url": "https://hardware.slashdot.org/story/98/11/30/0916259/another-rio-review",
"title": "Another Rio Review"
},
{
"url": "https://linux.slashdot.org/story/98/11/30/092255/linuxppc-release-5-beta-its-alive",
"title": "LinuxPPC Release 5 beta: It's alive!"
},
{
"url": "https://slashdot.org/story/98/11/30/090257/lego-death-scenes",
"title": "Lego Death Scenes"
},
{
"url": "https://ask.slashdot.org/story/98/11/30/0348201/ask-slashdot-are-there-nt-specific-viruses",
"title": "Ask Slashdot: Are there NT specific Viruses?"
},
{
"url": "https://games.slashdot.org/story/98/11/29/206228/tom-clancys-ruthlesscom-and-oss",
"title": "Tom Clancy's ruthless.com and OSS"
},
{
"url": "https://ask.slashdot.org/story/98/11/29/148238/how-do-you-produce-bus-errors",
"title": "How do you produce BUS errors?"
},
{
"url": "https://ask.slashdot.org/story/98/11/29/143218/getting-remote-ir-mice-support-under-linux",
"title": "Getting Remote IR Mice Support Under Linux"
},
{
"url": "https://ask.slashdot.org/story/98/11/29/1349234/whats-the-best-agp-3d-card-for-linux-and-x",
"title": "What's the Best AGP 3D Card for Linux (and X)?"
},
{
"url": "https://ask.slashdot.org/story/98/11/29/1340257/looking-for-old-hardware-suppliers",
"title": "Looking For Old HardWare Suppliers"
},
{
"url": "https://linux.slashdot.org/story/98/11/29/1339220/suse-60-will-ship-soon",
"title": "S.u.S.E. 6.0 will ship soon"
},
{
"url": "https://ask.slashdot.org/story/98/11/29/1338231/ask-slashdot-what-can-non-coders-do-for-the-oss-movement",
"title": "Ask Slashdot: What can non-coders do for the OSS Movement?"
},
{
"url": "https://tech.slashdot.org/story/98/11/29/124233/more-wearable-pc",
"title": "More Wearable PC"
},
{
"url": "https://hardware.slashdot.org/story/98/11/29/1118205/palm-iv-delayed",
"title": "Palm IV Delayed"
},
{
"url": "https://news.slashdot.org/story/98/11/29/1036247/hackers-suicide-questioned",
"title": "Hacker's \"suicide\" Questioned"
},
{
"url": "https://linux.slashdot.org/story/98/11/29/1033251/pre-installed-linux-better-than-the-imac",
"title": "Pre-installed Linux better than the iMac"
},
{
"url": "https://linux.slashdot.org/story/98/11/29/1030244/singapore-linux-conference-1999",
"title": "Singapore Linux Conference 1999"
},
{
"url": "https://news.slashdot.org/story/98/11/28/1458254/t-shirt-update",
"title": "T-Shirt Update"
},
{
"url": "https://news.slashdot.org/story/98/11/28/1028209/reviewa-bugs-life",
"title": "Review:A Bugs Life"
},
{
"url": "https://it.slashdot.org/story/98/11/27/1934255/a-bugs-life---the-technical-side-on-zdnn",
"title": "A Bugs life - the technical side on ZDNN"
},
{
"url": "https://slashdot.org/story/98/11/27/1523252/nationwide-deployment-of-dsl",
"title": "Nationwide deployment of DSL"
},
{
"url": "https://developers.slashdot.org/story/98/11/27/1217207/virtual-fish-tank",
"title": "Virtual Fish Tank"
},
{
"url": "https://slashdot.org/story/98/11/27/1216217/suns-outlook-on-the-netscape-deal",
"title": "Sun's outlook on the Netscape deal"
},
{
"url": "https://news.slashdot.org/story/98/11/26/1841245/rootfest-99",
"title": "RootFest 99"
},
{
"url": "https://slashdot.org/story/98/11/26/1833259/mozilla-statement-from-steve-case",
"title": "Mozilla statement from Steve Case"
},
{
"url": "https://linux.slashdot.org/story/98/11/26/1831227/linux-21130",
"title": "Linux 2.1.130"
},
{
"url": "https://slashdot.org/story/98/11/26/1432233/sun-ending-netscapes-flirtation-with-linux",
"title": "Sun ending Netscape's \"flirtation\" with Linux?"
},
{
"url": "https://linux.slashdot.org/story/98/11/26/1225214/sap-r3-on-linux",
"title": "SAP R/3 on Linux"
},
{
"url": "https://news.slashdot.org/story/98/11/26/1219244/giving-thanks-for-geeks",
"title": "Giving Thanks for Geeks"
},
{
"url": "https://tech.slashdot.org/story/98/11/26/1153200/open-letter-to-aol",
"title": "Open Letter to AOL"
},
{
"url": "https://slashdot.org/story/98/11/26/1145212/quicken-for-linux",
"title": "Quicken for Linux"
},
{
"url": "https://science.slashdot.org/story/98/11/25/1636220/ds1-ion-engine-works-again",
"title": "DS1 Ion Engine Works Again"
},
{
"url": "https://tech.slashdot.org/story/98/11/25/163218/xfree86-333-released",
"title": "XFree86 3.3.3 Released"
},
{
"url": "https://linux.slashdot.org/story/98/11/25/1555252/yellow-dog-linux-for-macs",
"title": "Yellow Dog Linux for Macs"
},
{
"url": "https://slashdot.org/story/98/11/25/1133255/netwinders-to-ship-with-kde",
"title": "Netwinders to Ship with KDE"
},
{
"url": "https://slashdot.org/story/98/11/25/0928234/fsf-on-halloween-ms",
"title": "FSF on Halloween & MS"
},
{
"url": "https://slashdot.org/story/98/11/25/0923213/scott-mcnealy-on-intellectual-property",
"title": "Scott McNealy on Intellectual Property"
},
{
"url": "https://linux.slashdot.org/story/98/11/25/0812206/free-jitterbug-for-open-source-projects",
"title": "Free Jitterbug for Open Source Projects"
},
{
"url": "https://tech.slashdot.org/story/98/11/25/0810205/a-few-mp3rio-links",
"title": "A Few MP3/Rio Links"
},
{
"url": "https://news.slashdot.org/story/98/11/25/084216/nerds-201-on-pbs-tonight",
"title": "Nerds 2.0.1 on PBS Tonight"
},
{
"url": "https://tech.slashdot.org/story/98/11/24/2341251/aol-eventually-to-use-netscapes-browser",
"title": "AOL eventually to use Netscape's browser"
},
{
"url": "https://tech.slashdot.org/story/98/11/24/2320252/harmony-project-in-difficulty",
"title": "Harmony project in difficulty"
},
{
"url": "https://slashdot.org/story/98/11/24/2259244/aol-has-its-own-open-source-projects",
"title": "AOL has its own Open Source projects"
},
{
"url": "https://linux.slashdot.org/story/98/11/24/1547254/spi-discusses-open-source-trademark",
"title": "SPI Discusses \"Open Source\" Trademark"
},
{
"url": "https://linux.slashdot.org/story/98/11/24/1531242/linux-in-china",
"title": "Linux in China"
},
{
"url": "https://slashdot.org/story/98/11/24/1524239/mozillaorg-on-netscapeaol",
"title": "Mozilla.org on Netscape/AOL"
},
{
"url": "https://slashdot.org/story/98/11/24/1523234/ibm-to-port-afs-to-linux",
"title": "IBM to port AFS to Linux"
},
{
"url": "https://tech.slashdot.org/story/98/11/24/1520205/blender-15-released",
"title": "Blender 1.5 Released"
},
{
"url": "https://linux.slashdot.org/story/98/11/24/1512218/macromedia-to-support-linux",
"title": "Macromedia to support Linux"
},
{
"url": "https://news.slashdot.org/story/98/11/24/1457222/post-script-conquering-the-internet",
"title": "Post Script: \"Conquering The Internet\""
},
{
"url": "https://tech.slashdot.org/story/98/11/24/1449230/aol-to-renew-microsoft-ie-contract",
"title": "AOL to renew Microsoft IE contract"
},
{
"url": "https://tech.slashdot.org/story/98/11/24/101217/universal-networking-language",
"title": "Universal Networking Language"
},
{
"url": "https://tech.slashdot.org/story/98/11/24/0956225/cyrixs-new-web-toy",
"title": "Cyrix's New Web Toy"
},
{
"url": "https://linux.slashdot.org/story/98/11/24/0947245/linux-and-the-consumer-market",
"title": "Linux and the Consumer Market"
},
{
"url": "https://news.slashdot.org/story/98/11/24/0941201/featurefemale-geeks",
"title": "Feature:Female Geeks"
},
{
"url": "https://news.slashdot.org/story/98/11/24/0933227/oracle-posts-challenge",
"title": "Oracle Posts Challenge"
},
{
"url": "https://news.slashdot.org/story/98/11/24/0918231/quick-review-of-the-rio",
"title": "Quick Review of the Rio"
},
{
"url": "https://tech.slashdot.org/story/98/11/24/0914237/aol-and-netscape-merger-confirmed",
"title": "AOL and Netscape merger confirmed"
},
{
"url": "https://yro.slashdot.org/story/98/11/23/2115234/library-censorware-unconstitutional",
"title": "Library Censorware Unconstitutional"
},
{
"url": "https://linux.slashdot.org/story/98/11/23/2113205/an-annotated-response-to-abcnewscoms-fred-moody",
"title": "An annotated response to ABCnews.com's Fred Moody"
},
{
"url": "https://slashdot.org/story/98/11/23/2058206/international-badass-machines",
"title": "International Badass Machines"
},
{
"url": "https://linux.slashdot.org/story/98/11/23/2056205/linux-nothing-to-worry-about",
"title": "\"Linux: Nothing to worry about?\""
},
{
"url": "https://slashdot.org/story/98/11/23/1919258/chips-and-chrisps",
"title": "chips and chrisps"
},
{
"url": "https://games.slashdot.org/story/98/11/23/193241/zelda64-is-released-today",
"title": "Zelda64 is Released Today!"
},
{
"url": "https://slashdot.org/story/98/11/23/1337214/comdex-98-report-and-pictures",
"title": "Comdex 98 report and Pictures"
},
{
"url": "https://news.slashdot.org/story/98/11/23/1248251/the-netscape-tragedy",
"title": "The Netscape Tragedy"
},
{
"url": "https://news.slashdot.org/story/98/11/23/097222/open-source-initiative-formally-launched",
"title": "Open Source Initiative formally Launched"
},
{
"url": "https://slashdot.org/story/98/11/23/0855208/larry-vs-mssql7",
"title": "Larry vs MSSQL7"
},
{
"url": "https://linux.slashdot.org/story/98/11/23/0851256/22-kernel-coming",
"title": "2.2 Kernel Coming"
},
{
"url": "https://news.slashdot.org/story/98/11/23/0850235/slashdot-moves-up-rc5-ranking",
"title": "Slashdot moves up RC5 ranking"
},
{
"url": "https://news.slashdot.org/story/98/11/23/0846248/v10-of-sane-out",
"title": "v1.0 of S.A.N.E out"
},
{
"url": "https://linux.slashdot.org/story/98/11/23/0844204/abcnews-fud-on-linux",
"title": "ABCNEWS FUD on Linux"
},
{
"url": "https://slashdot.org/story/98/11/22/2332215/art-chicks-automobiles-and-fear",
"title": "art chicks, automobiles and fear"
},
{
"url": "https://tech.slashdot.org/story/98/11/22/1949214/aol-in-talks-to-buy-netscape",
"title": "AOL in talks to buy Netscape"
},
{
"url": "https://news.slashdot.org/story/98/11/22/1722253/adventures-at-home-depot",
"title": "Adventures at Home Depot"
},
{
"url": "https://tech.slashdot.org/story/98/11/22/1036207/new-gnustep-progress",
"title": "New GNUStep Progress"
},
{
"url": "https://hardware.slashdot.org/story/98/11/22/1035200/amd-k6-laptops",
"title": "AMD K6 laptops"
},
{
"url": "https://slashdot.org/story/98/11/22/1034243/geek-partying",
"title": "Geek Partying"
},
{
"url": "https://slashdot.org/story/98/11/22/1032239/webring-bought-by-geocities",
"title": "Webring Bought By Geocities"
},
{
"url": "https://apple.slashdot.org/story/98/11/22/1031237/apple-loyalists-view-of-linux",
"title": "Apple loyalist's view of Linux"
},
{
"url": "https://slashdot.org/story/98/11/22/1029225/rms-accepts-the-qt-qpl-as-free-software",
"title": "RMS accepts the QT QPL as Free Software"
},
{
"url": "https://linux.slashdot.org/story/98/11/22/1028200/businessweek-on-linux-no-big-deal",
"title": "BusinessWeek on Linux: No Big Deal"
},
{
"url": "https://ask.slashdot.org/story/98/11/21/155242/hp-9000-system-needs-cpu-and-os",
"title": "HP 9000 System needs CPU and OS"
},
{
"url": "https://ask.slashdot.org/story/98/11/21/1455204/weird-ppp-dialup-problems",
"title": "Weird PPP Dialup Problems"
},
{
"url": "https://ask.slashdot.org/story/98/11/21/1451226/are-there-unicode-string-literals-in-gcc",
"title": "Are there UNICODE String Literals in GCC?"
},
{
"url": "https://ask.slashdot.org/story/98/11/21/1444210/how-rugged-are-hds",
"title": "How rugged are HDs?"
},
{
"url": "https://hardware.slashdot.org/story/98/11/21/1435235/ask-slashdot-linux-and-tv-tuner-cards",
"title": "Ask Slashdot: Linux and TV Tuner Cards"
},
{
"url": "https://science.slashdot.org/story/98/11/21/1023212/zarya-animations",
"title": "Zarya Animations"
},
{
"url": "https://tech.slashdot.org/story/98/11/21/1017257/bright-thin-screens",
"title": "Bright thin Screens"
},
{
"url": "https://hardware.slashdot.org/story/98/11/21/0958242/palm-pilots-can-copy-car-keys",
"title": "Palm Pilots Can Copy Car Keys"
},
{
"url": "https://games.slashdot.org/story/98/11/21/0956243/is-tetris-copyrighted",
"title": "Is Tetris \"copyrighted\"?"
},
{
"url": "https://news.slashdot.org/story/98/11/21/0955204/linux-expo-vs-star-wars-episode-i",
"title": "Linux Expo vs. Star Wars Episode I"
},
{
"url": "https://slashdot.org/story/98/11/21/0945250/microsoft-drops-java-support-for-mac-unix",
"title": "Microsoft drops Java Support for Mac, Unix"
},
{
"url": "https://slashdot.org/story/98/11/20/1914257/sun-to-loosen-grip-on-java-licensing",
"title": "Sun to loosen grip on Java licensing"
},
{
"url": "https://slashdot.org/story/98/11/20/1821240/microsoft-considered-buying-amd-and-cyrix",
"title": "Microsoft considered buying AMD and Cyrix"
},
{
"url": "https://slashdot.org/story/98/11/20/1619235/more-comdex-buzz",
"title": "More Comdex Buzz"
},
{
"url": "https://linux.slashdot.org/story/98/11/20/166203/fuji-photo-company-to-make-own-linux-distribution",
"title": "Fuji Photo Company to make own Linux Distribution"
},
{
"url": "https://slashdot.org/story/98/11/20/160244/the-motley-fool-predicts-a-weakening-of-windows",
"title": "The Motley Fool predicts a weakening of Windows"
},
{
"url": "https://news.slashdot.org/story/98/11/20/1244218/recommendation-technology-techno-boon-or-nightmare",
"title": "Recommendation Technology: Techno-Boon or Nightmare?"
},
{
"url": "https://news.slashdot.org/story/98/11/20/109225/oreilly-reponse-to-open-source-books",
"title": "O'Reilly reponse to \"Open Source\" Books"
},
{
"url": "https://news.slashdot.org/story/98/11/20/0956254/linux-bails-out-microsoft",
"title": "Linux Bails out Microsoft?"
},
{
"url": "https://news.slashdot.org/story/98/11/20/0952250/fud-101",
"title": "FUD 101"
},
{
"url": "https://slashdot.org/story/98/11/20/0941228/gpl-program-wins-best-of-comdex",
"title": "GPL program wins best of COMDEX"
},
{
"url": "https://news.slashdot.org/story/98/11/20/0937227/random-prequel-hubbub",
"title": "Random Prequel Hubbub"
},
{
"url": "https://news.slashdot.org/story/98/11/20/0920259/reviewconcurrent-programming-in-java-design-principles-and-patternscit",
"title": "Review:Concurrent Programming in Java: Design Principles and Patterns"
},
{
"url": "https://slashdot.org/story/98/11/20/0915233/opensourced-netwinder",
"title": "Opensourced Netwinder?"
},
{
"url": "https://linux.slashdot.org/story/98/11/20/0855231/distributednet-goes-linux",
"title": "Distributed.net goes Linux"
},
{
"url": "https://science.slashdot.org/story/98/11/20/0013214/space-station-to-be-launched-in-about-an-hour",
"title": "Space Station to be launched in about an hour"
},
{
"url": "https://yro.slashdot.org/story/98/11/19/2359227/cda-ii-blocked-for-the-moment",
"title": "CDA II blocked for the moment"
},
{
"url": "https://linux.slashdot.org/story/98/11/19/2345258/linux-database-software-gets-germans-interested",
"title": "Linux database software gets Germans interested"
},
{
"url": "https://slashdot.org/story/98/11/19/2327216/microsoft-considering-annual-fee-for-windows",
"title": "Microsoft considering annual fee for Windows"
},
{
"url": "https://tech.slashdot.org/story/98/11/19/2252218/disneys-squeak-project",
"title": "Disney's Squeak Project"
},
{
"url": "https://news.slashdot.org/story/98/11/19/2248203/dynamic-monolith-in-trouble",
"title": "Dynamic Monolith in Trouble"
},
{
"url": "https://news.slashdot.org/story/98/11/19/197238/project-heresy-on-cnet-radio",
"title": "Project Heresy on C|Net Radio"
},
{
"url": "https://slashdot.org/story/98/11/19/1736236/comdex-rumours",
"title": "Comdex RUMOURS"
},
{
"url": "https://slashdot.org/story/98/11/19/170229/openbios-project-gets-real",
"title": "OpenBIOS project gets real"
},
{
"url": "https://apple.slashdot.org/story/98/11/19/1655256/macos-x-on-linux",
"title": "MacOS X on Linux?"
},
{
"url": "https://slashdot.org/story/98/11/19/1639225/open-source-community-is-very-trusting",
"title": "Open Source community is very trusting"
},
{
"url": "https://news.slashdot.org/story/98/11/19/1635209/star-wars-trailer-information",
"title": "Star Wars Trailer Information"
},
{
"url": "https://slashdot.org/story/98/11/19/1620239/ibm-responds-to-microsofts-sql-server-announcement",
"title": "IBM responds to Microsoft's SQL Server announcement"
},
{
"url": "https://slashdot.org/story/98/11/19/166246/the-motley-fool-on-microsoft",
"title": "The Motley Fool on Microsoft"
},
{
"url": "https://linux.slashdot.org/story/98/11/19/1351201/linux-21129",
"title": "Linux 2.1.129"
},
{
"url": "https://news.slashdot.org/story/98/11/19/1154205/the-gasbag-stays----exclusive-poll-results",
"title": "The Gasbag Stays -- Exclusive Poll Results!"
},
{
"url": "https://slashdot.org/story/98/11/19/1029258/software-giant-vs-single-programmer",
"title": "Software Giant vs. Single Programmer"
},
{
"url": "https://linux.slashdot.org/story/98/11/19/1020250/red-hat-moving-to-bigger-offices",
"title": "Red Hat Moving to Bigger Offices"
},
{
"url": "https://hardware.slashdot.org/story/98/11/19/1015256/linux-automotive-mp3-player",
"title": "Linux Automotive MP3 Player"
},
{
"url": "https://news.slashdot.org/story/98/11/19/0950219/final-episode-of-bab-5",
"title": "Final Episode of Bab 5"
},
{
"url": "https://linux.slashdot.org/story/98/11/19/0941215/alternative-oss-are-cnets-1-top-trend-for-1998",
"title": "Alternative OSs are Cnet's #1 Top Trend for 1998"
},
{
"url": "https://news.slashdot.org/story/98/11/18/2129250/evening-quickies",
"title": "Evening Quickies"
},
{
"url": "https://linux.slashdot.org/story/98/11/18/200213/how-the-australian-business-breakfast-went",
"title": "How the australian business breakfast went"
},
{
"url": "https://slashdot.org/story/98/11/18/1954207/intel-convinced-hp-to-make-mckinley-a-joint-project",
"title": "Intel convinced HP to make McKinley a joint project"
},
{
"url": "https://slashdot.org/story/98/11/18/1934237/microsoft-divesting-from-realnetworks",
"title": "Microsoft divesting from RealNetworks"
},
{
"url": "https://games.slashdot.org/story/98/11/18/1911204/david-braben-wonders-whether-to-port-v2000",
"title": "David Braben wonders whether to port V2000"
},
{
"url": "https://ask.slashdot.org/story/98/11/18/1628238/ask-slashdot-middleware-and-transaction-processing",
"title": "Ask Slashdot: Middleware and Transaction Processing"
},
{
"url": "https://slashdot.org/story/98/11/18/1618234/ibm-db2-beta-on-december-7",
"title": "IBM DB2 beta on December 7"
},
{
"url": "https://linux.slashdot.org/story/98/11/18/1546258/linux-in-france-and-germany",
"title": "Linux in France and Germany"
},
{
"url": "https://news.slashdot.org/story/98/11/18/130255/red-hat-opens-contrib-network",
"title": "Red Hat Opens Contrib Network"
},
{
"url": "https://news.slashdot.org/story/98/11/18/1235258/slashdot-needs-advertisers-blatant-plug",
"title": "Slashdot Needs Advertisers (Blatant Plug!)"
},
{
"url": "https://news.slashdot.org/story/98/11/18/0837247/oracle-offer-1-million-dollars-for-benchmarks",
"title": "Oracle offer 1 million dollars for Benchmarks"
},
{
"url": "https://tech.slashdot.org/story/98/11/18/0819250/netscape-buys-newhoo",
"title": "Netscape buys NewHoo"
},
{
"url": "https://tech.slashdot.org/story/98/11/18/0812213/new-copy-protected-audio-format",
"title": "New Copy-Protected Audio Format?"
},
{
"url": "https://linux.slashdot.org/story/98/11/18/087220/us-news-on-linux",
"title": "U.S. News on Linux"
},
{
"url": "https://news.slashdot.org/story/98/11/18/084216/oreilly-announces-open-source-conference",
"title": "O'Reilly announces Open Source conference"
},
{
"url": "https://news.slashdot.org/story/98/11/18/0751258/star-wars-prequel-photos-and-trailer-online",
"title": "Star Wars Prequel Photos and Trailer Online"
},
{
"url": "https://news.slashdot.org/story/98/11/18/0742200/qt-goes-opensource",
"title": "QT Goes OpenSource"
},
{
"url": "https://slashdot.org/story/98/11/18/0037203/comdex-hot-on-speech-technologies",
"title": "Comdex hot on Speech Technologies"
},
{
"url": "https://tech.slashdot.org/story/98/11/18/0016241/kdeqt-news",
"title": "KDE/QT News?"
},
{
"url": "https://slashdot.org/story/98/11/17/2049249/sun-granted-injunction",
"title": "Sun Granted Injunction"
},
{
"url": "https://slashdot.org/story/98/11/17/1636224/reports-from-the-comdex-floor",
"title": "Reports from the Comdex floor"
},
{
"url": "https://linux.slashdot.org/story/98/11/17/1630253/mike-cowpland-of-corel-interview",
"title": "Mike Cowpland of Corel Interview"
},
{
"url": "https://tech.slashdot.org/story/98/11/17/1624254/microsoft-programmers-on-porting-to-x",
"title": "Microsoft programmers on porting to X"
},
{
"url": "https://yro.slashdot.org/story/98/11/17/1613258/cda-ii-lawsuit-begins-thursday",
"title": "CDA II Lawsuit begins Thursday"
},
{
"url": "https://slashdot.org/story/98/11/17/1544206/intel-follows-cyrix-down-integration-path",
"title": "Intel follows Cyrix down integration path"
},
{
"url": "https://slashdot.org/story/98/11/17/1536209/be-gets-25-million-funding",
"title": "Be gets $25 million funding"
},
{
"url": "https://slashdot.org/story/98/11/17/1318235/smartsuite-sj-mercury-says-open-it",
"title": "SmartSuite: SJ Mercury says open it!"
},
{
"url": "https://developers.slashdot.org/story/98/11/17/135221/java-lobby-asks-sun-to-open-java-process",
"title": "Java Lobby asks Sun to open Java process"
},
{
"url": "https://news.slashdot.org/story/98/11/17/1149256/reviewthe-man-who-loved-only-numbers",
"title": "Review:The Man Who Loved Only Numbers"
},
{
"url": "https://linux.slashdot.org/story/98/11/17/1144227/suse-and-linuxcare-to-offer-commercial-support",
"title": "SuSE and LinuxCare to offer Commercial Support"
},
{
"url": "https://slashdot.org/story/98/11/17/1111200/corel-office-2000-suite-free-to-linux-users",
"title": "Corel Office 2000 suite Free to Linux users"
},
{
"url": "https://news.slashdot.org/story/98/11/17/1057213/new-cgi-short-bunny",
"title": "New CGI Short \"Bunny\""
},
{
"url": "https://news.slashdot.org/story/98/11/16/184223/an-interactive-experiment-dump-the-jerk",
"title": "An Interactive Experiment: Dump The Jerk?"
},
{
"url": "https://news.slashdot.org/story/98/11/17/0944236/goodnoise-releases-freeamp-10-under-gpl",
"title": "Goodnoise releases FreeAmp 1.0 under GPL"
},
{
"url": "https://slashdot.org/story/98/11/17/0921233/happy-birthday-user-friendly",
"title": "Happy Birthday User Friendly!"
},
{
"url": "https://news.slashdot.org/story/98/11/17/0841240/star-wars-trailer-see-it-today",
"title": "Star Wars Trailer-See it Today!"
},
{
"url": "https://slashdot.org/story/98/11/16/1644250/att-tci-deal-may-fall",
"title": "AT&T, TCI deal may fall"
},
{
"url": "https://news.slashdot.org/story/98/11/16/1631223/israel-developing-ethnic-weapon",
"title": "Israel developing ethnic weapon"
},
{
"url": "https://linux.slashdot.org/story/98/11/16/1549250/compaq-and-intel-still-on-linux-track",
"title": "Compaq and Intel still on Linux track"
},
{
"url": "https://slashdot.org/story/98/11/16/1531211/linux-powered-soviet-shuttle-project",
"title": "Linux-powered Soviet Shuttle Project"
},
{
"url": "https://linux.slashdot.org/story/98/11/16/1514220/linux-at-supercomputing-98",
"title": "Linux at Supercomputing '98"
},
{
"url": "https://science.slashdot.org/story/98/11/16/1512201/ion-rocket-fails",
"title": "Ion Rocket Fails"
},
{
"url": "https://news.slashdot.org/story/98/11/16/1446250/open-source-and-change",
"title": "Open Source and Change"
},
{
"url": "https://science.slashdot.org/story/98/11/16/1419214/chaos-in-the-machine",
"title": "Chaos in the Machine"
},
{
"url": "https://hardware.slashdot.org/story/98/11/16/144229/voodoo-3",
"title": "Voodoo 3"
},
{
"url": "https://linux.slashdot.org/story/98/11/16/1351216/red-hatcomdex",
"title": "Red Hat@Comdex"
},
{
"url": "https://hardware.slashdot.org/story/98/11/16/1338256/amd-400mhz-k6-2",
"title": "AMD 400Mhz K6-2"
},
{
"url": "https://ask.slashdot.org/story/98/11/16/1230242/ask-slashdot-gimp-and-cmyk",
"title": "Ask Slashdot: GIMP and CMYK"
},
{
"url": "https://slashdot.org/story/98/11/16/1222235/gnu-m4-development-restarting",
"title": "GNU M4 Development Restarting"
},
{
"url": "https://slashdot.org/story/98/11/16/1124224/microsoft-invents-antialiasing",
"title": "Microsoft Invents Antialiasing?"
},
{
"url": "https://news.slashdot.org/story/98/11/16/113237/oracle-and-the-commodity-os",
"title": "Oracle and the Commodity OS"
},
{
"url": "https://hardware.slashdot.org/story/98/11/16/1045245/overview-chip-challange-and-progress",
"title": "Overview, Chip challange and Progress"
},
{
"url": "https://news.slashdot.org/story/98/11/16/0813258/free-open-source-project-webspace",
"title": "Free Open Source project Webspace"
},
{
"url": "https://slashdot.org/story/98/11/16/0810240/apple-say-hello-to-chiamac",
"title": "Apple: \"Say hello to chiaMac\""
},
{
"url": "https://linux.slashdot.org/story/98/11/16/0757206/linux-2036-released",
"title": "Linux 2.0.36 Released"
},
{
"url": "https://slashdot.org/story/98/11/16/0028250/bill-invests-20m-to-ensure-copyright-enforced",
"title": "Bill Invests $20M to ensure copyright enforced"
},
{
"url": "https://slashdot.org/story/98/11/15/2216216/linux-at-comdex",
"title": "Linux at Comdex"
},
{
"url": "https://tech.slashdot.org/story/98/11/15/1516241/unix-on-a-billion-desktops",
"title": "Unix on a Billion desktops"
},
{
"url": "https://tech.slashdot.org/story/98/11/15/1144210/compression-algorithm-harnesses-entropy",
"title": "Compression algorithm Harnesses Entropy"
},
{
"url": "https://slashdot.org/story/98/11/15/1120246/operation-desert-slash",
"title": "Operation Desert Slash"
},
{
"url": "https://science.slashdot.org/story/98/11/15/1117221/the-leonids-live",
"title": "The Leonids, Live!"
},
{
"url": "https://slashdot.org/story/98/11/15/1116239/russian-space-shuttle-for-sale",
"title": "Russian Space Shuttle For Sale"
},
{
"url": "https://tech.slashdot.org/story/98/11/15/1114215/gtkmozilla-screenshots",
"title": "GTK/Mozilla Screenshots"
},
{
"url": "https://slashdot.org/story/98/11/14/2033214/escena-announces-new-g3-powerpc-boards",
"title": "ESCENA Announces New G3 PowerPC Boards"
},
{
"url": "https://news.slashdot.org/story/98/11/14/2014209/gnu-cash-website-closing",
"title": "GNU Cash Website Closing"
},
{
"url": "https://ask.slashdot.org/story/98/11/14/1417209/digital-cameras-and-unix",
"title": "Digital Cameras and UNIX"
},
{
"url": "https://ask.slashdot.org/story/98/11/14/1412241/on-the-euro-and-keyboard-mappings",
"title": "On the Euro and Keyboard Mappings"
},
{
"url": "https://ask.slashdot.org/story/98/11/14/145225/relisys-infinity-scorpio-scanner-support-and-red-hat",
"title": "Relisys Infinity Scorpio Scanner Support and Red Hat"
},
{
"url": "https://linux.slashdot.org/story/98/11/14/1358225/ask-slashdot-linux-and-handicapped-access",
"title": "Ask Slashdot: Linux and Handicapped Access"
},
{
"url": "https://news.slashdot.org/story/98/11/14/1122204/softway-considering-adding-linux-interface-to-nt",
"title": "Softway considering adding Linux interface to NT"
},
{
"url": "https://hardware.slashdot.org/story/98/11/14/1050204/iomega-comes-with-new-drive",
"title": "Iomega comes with new Drive"
},
{
"url": "https://news.slashdot.org/story/98/11/14/1025237/cringely-responds-to-dtv-show-criticism",
"title": "Cringely Responds to DTV Show Criticism"
},
{
"url": "https://slashdot.org/story/98/11/14/1022246/pump-up-the-volume",
"title": "pump up the volume"
},
{
"url": "https://linux.slashdot.org/story/98/11/14/0948231/linux-support-company",
"title": "Linux Support Company"
},
{
"url": "https://hardware.slashdot.org/story/98/11/14/0945246/classic-computers",
"title": "Classic Computers"
},
{
"url": "https://games.slashdot.org/story/98/11/14/0035255/monolith-to-port-lithtech-games-to-linux",
"title": "Monolith to port Lithtech games to Linux"
},
{
"url": "https://tech.slashdot.org/story/98/11/14/0025209/amigaos-kernel-partner-is-qnx",
"title": "AmigaOS kernel partner is QNX!"
},
{
"url": "https://slashdot.org/story/98/11/14/001257/cyrix-to-show-webpad-at-comdex",
"title": "Cyrix to show WebPad at Comdex"
},
{
"url": "https://linux.slashdot.org/story/98/11/13/2153215/linux-expo-99",
"title": "Linux Expo '99"
},
{
"url": "https://slashdot.org/story/98/11/13/1945227/robert-brown-on-the-un-suability-of-oss",
"title": "Robert Brown on the un-suability of OSS."
},
{
"url": "https://games.slashdot.org/story/98/11/13/1935227/linuxpower-has-a-golgotha-forever-interview",
"title": "Linuxpower has a Golgotha Forever Interview"
},
{
"url": "https://slashdot.org/story/98/11/13/1927226/redhat-support-organization-to-be-announced",
"title": "Redhat support organization to be announced"
},
{
"url": "https://apple.slashdot.org/story/98/11/13/1923256/new-powerpc-g4s",
"title": "New PowerPC G4s"
},
{
"url": "https://linux.slashdot.org/story/98/11/13/1215243/zdnet-on-linux-vs-windows-2000",
"title": "ZDnet on Linux vs. Windows 2000"
},
{
"url": "https://news.slashdot.org/story/98/11/13/1152240/for-washington-a-nightmare-from-cyberspace",
"title": "For Washington, a Nightmare From Cyberspace"
},
{
"url": "https://tech.slashdot.org/story/98/11/13/1112242/staroffice-5-offers-kde-integration",
"title": "StarOffice 5 Offers KDE Integration"
},
{
"url": "https://news.slashdot.org/story/98/11/13/111245/slashdot-penguins-t-shirts-return",
"title": "Slashdot & Penguins T-Shirts Return"
},
{
"url": "https://linux.slashdot.org/story/98/11/13/1043254/reports-from-the-silicon-valley-tea-party",
"title": "Reports from the Silicon Valley Tea Party"
},
{
"url": "https://games.slashdot.org/story/98/11/13/1019256/featurelinux-game-development",
"title": "Feature:Linux Game Development"
},
{
"url": "https://slashdot.org/story/98/11/13/0936232/for-all-your-shopping-needs",
"title": "for all your shopping needs"
},
{
"url": "https://tech.slashdot.org/story/98/11/13/0933259/fontsgtk-themesorg",
"title": "Fonts/GTK @themes.org"
},
{
"url": "https://tech.slashdot.org/story/98/11/13/0921227/wine-moves-forward",
"title": "Wine Moves Forward"
},
{
"url": "https://apple.slashdot.org/story/98/11/13/0915240/apple-shipping-2-button-mice",
"title": "Apple Shipping 2 Button Mice?"
},
{
"url": "https://news.slashdot.org/story/98/11/13/092244/reviewa-practical-guide-to-linux",
"title": "Review:A Practical Guide to Linux"
},
{
"url": "https://ask.slashdot.org/story/98/11/12/2324219/looking-for-x-servers-on-winnt",
"title": "Looking for X Servers on WinNT"
},
{
"url": "https://games.slashdot.org/story/98/11/12/2319238/technology-for-the-next-playstation",
"title": "Technology for the next Playstation"
},
{
"url": "https://slashdot.org/story/98/11/12/2315211/geeks-with-bandwidth",
"title": "geeks with bandwidth"
},
{
"url": "https://ask.slashdot.org/story/98/11/12/2314259/linux-kali-and-ip-masquerading",
"title": "Linux, Kali and IP Masquerading"
},
{
"url": "https://ask.slashdot.org/story/98/11/12/2256247/ask-slashdot-linux-and-online-shopping",
"title": "Ask Slashdot: Linux and Online Shopping"
},
{
"url": "https://slashdot.org/story/98/11/12/2243242/another-microsoft-eee-effort-bites-the-dust",
"title": "Another Microsoft EEE effort bites the dust"
},
{
"url": "https://news.slashdot.org/story/98/11/12/2110251/thursday-quickee-spree",
"title": "Thursday Quickee Spree"
},
{
"url": "https://linux.slashdot.org/story/98/11/12/211209/bob-young-vs-ed-muth",
"title": "Bob Young vs Ed Muth"
},
{
"url": "https://slashdot.org/story/98/11/12/2054252/intel-invests-in-be",
"title": "Intel Invests in Be"
},
{
"url": "https://tech.slashdot.org/story/98/11/12/1935212/summary-of-the-transmeta-patent",
"title": "Summary of The Transmeta Patent"
},
{
"url": "https://news.slashdot.org/story/98/11/12/1928256/va-gets-investors",
"title": "VA Gets Investors"
},
{
"url": "https://linux.slashdot.org/story/98/11/12/1913208/lotus-domino-running-under-linux",
"title": "Lotus Domino running under Linux"
},
{
"url": "https://linux.slashdot.org/story/98/11/12/199217/linux-kernel-21128",
"title": "Linux Kernel 2.1.128"
},
{
"url": "https://slashdot.org/story/98/11/12/1451208/x86org-domain-on-hold",
"title": "x86.org domain on hold"
},
{
"url": "https://slashdot.org/story/98/11/12/1447209/government-customer-stamps-fud-out-of-consultant",
"title": "Government customer stamps FUD out of consultant"
},
{
"url": "https://tech.slashdot.org/story/98/11/12/1441235/patent-issued-to-transmeta",
"title": "Patent issued to Transmeta"
},
{
"url": "https://slashdot.org/story/98/11/12/1153209/rms-interview-in-the-guardian",
"title": "RMS interview in The Guardian"
},
{
"url": "https://slashdot.org/story/98/11/12/1050201/linux-is-more-geeky",
"title": "Linux is More Geeky"
},
{
"url": "https://linux.slashdot.org/story/98/11/12/1014233/amigalinux-51-and-slackware-36",
"title": "AmigaLinux 5.1 and Slackware 3.6"
},
{
"url": "https://hardware.slashdot.org/story/98/11/12/0958221/wearable-linux-computer",
"title": "Wearable Linux Computer"
},
{
"url": "https://it.slashdot.org/story/98/11/12/0941259/network-associates-rejoins-key-recovery-alliance",
"title": "Network Associates rejoins Key Recovery Alliance"
},
{
"url": "https://linux.slashdot.org/story/98/11/12/096209/linus-story-in-salon",
"title": "Linus Story in Salon"
},
{
"url": "https://linux.slashdot.org/story/98/11/11/184234/svlug-tea-party",
"title": "SVLUG Tea Party"
},
{
"url": "https://news.slashdot.org/story/98/11/11/1552252/democratize-software",
"title": "Democratize Software?"
},
{
"url": "https://slashdot.org/story/98/11/11/1545211/windows-programmers-not-all-party-members",
"title": "Windows programmers: not all party-members"
},
{
"url": "https://slashdot.org/story/98/11/11/1527246/robert-x-cringley-caught-claiming-stanford-phd",
"title": "Robert X. Cringley caught claiming Stanford Ph.D"
},
{
"url": "https://tech.slashdot.org/story/98/11/11/1515251/gnome-team-interview",
"title": "GNOME team interview"
},
{
"url": "https://linux.slashdot.org/story/98/11/11/158255/oss-and-the-end-of-capitalism",
"title": "OSS, and the End of Capitalism"
},
{
"url": "https://linux.slashdot.org/story/98/11/11/152250/firehunter-hp-supports-red-hat",
"title": "Firehunter (HP) supports Red Hat"
},
{
"url": "https://linux.slashdot.org/story/98/11/11/1212234/linuxppc-lite-announced",
"title": "LinuxPPC Lite Announced"
},
{
"url": "https://news.slashdot.org/story/98/11/11/1050224/star-wars-episode-1-teaser-sheets",
"title": "Star Wars: Episode 1 Teaser Sheets"
},
{
"url": "https://tech.slashdot.org/story/98/11/11/1037203/broadway-releases-code-to-drivers",
"title": "Broadway Releases code to Drivers"
},
{
"url": "https://hardware.slashdot.org/story/98/11/11/1011216/ibm-announces-a-25-gigger",
"title": "IBM announces a 25 gigger"
},
{
"url": "https://linux.slashdot.org/story/98/11/11/109207/interview-with-bob-young",
"title": "Interview with Bob Young"
},
{
"url": "https://tech.slashdot.org/story/98/11/11/086216/netscape-gets-thinner-and-standards-based",
"title": "Netscape Gets Thinner and Standards Based"
},
{
"url": "https://hardware.slashdot.org/story/98/11/11/084205/petition-for-ati-tv-tuner-specifications",
"title": "Petition for ATI TV Tuner Specifications"
},
{
"url": "https://slashdot.org/story/98/11/11/0044248/patents-how-do-we-keep-software-free",
"title": "Patents: how do we keep software free?"
},
{
"url": "https://slashdot.org/story/98/11/11/003202/average-joe-user-still-the-target",
"title": "Average Joe User still the target"
},
{
"url": "https://news.slashdot.org/story/98/11/10/2119244/building-the-world-again",
"title": "Building the World Again"
},
{
"url": "https://news.slashdot.org/story/98/11/10/190243/perl-platform-usage-survey",
"title": "Perl Platform Usage Survey"
},
{
"url": "https://hardware.slashdot.org/story/98/11/10/1858222/dvorak-on-transmeta",
"title": "Dvorak on Transmeta"
},
{
"url": "https://linux.slashdot.org/story/98/11/10/1855239/new-red-hat-products",
"title": "New Red Hat Products"
},
{
"url": "https://news.slashdot.org/story/98/11/10/1646226/reviewthe-essential-clientserver-survival-guide",
"title": "Review:The Essential Client/Server Survival Guide"
},
{
"url": "https://linux.slashdot.org/story/98/11/10/1618208/linux-on-tv-in-sverige",
"title": "Linux on TV in Sverige"
},
{
"url": "https://slashdot.org/story/98/11/10/1615217/economist-article-on-home-broadband-access",
"title": "Economist article on home broadband access."
},
{
"url": "https://ask.slashdot.org/story/98/11/10/1527232/cache-and-ram-limitations",
"title": "Cache and RAM Limitations"
},
{
"url": "https://tech.slashdot.org/story/98/11/10/157210/hidden-costs-of-code-reuse",
"title": "Hidden Costs of Code Reuse?"
},
{
"url": "https://tech.slashdot.org/story/98/11/10/138244/sgis-new-most-super-supercomputer",
"title": "SGIs New Most-Super Supercomputer"
},
{
"url": "https://tech.slashdot.org/story/98/11/10/133244/unix-vs-nt-organization",
"title": "Unix vs NT Organization"
},
{
"url": "https://slashdot.org/story/98/11/10/1256232/amazon-vs-barnes-noble-descends-into-silliness",
"title": "Amazon vs Barnes & Noble Descends into Silliness"
},
{
"url": "https://ask.slashdot.org/story/98/11/10/1242214/ask-slashdot-contract-programming",
"title": "Ask Slashdot: Contract Programming"
},
{
"url": "https://linux.slashdot.org/story/98/11/10/1218253/another-pro-linux-article-on-cnn",
"title": "Another Pro-Linux Article on CNN"
},
{
"url": "https://hardware.slashdot.org/story/98/11/10/124206/samsung-mp3-players-in-america",
"title": "Samsung MP3 Players in America?"
},
{
"url": "https://news.slashdot.org/story/98/11/10/1148241/featurereflections-on-free-software",
"title": "Feature:Reflections on Free Software"
},
{
"url": "https://news.slashdot.org/story/98/11/10/0951244/nerds-201-coming-nov-25th-to-pbs",
"title": "Nerds 2.01 Coming Nov 25th to PBS"
},
{
"url": "https://linux.slashdot.org/story/98/11/10/0947206/more-forbes-on-linux",
"title": "More Forbes on Linux"
},
{
"url": "https://slashdot.org/story/98/11/09/2125211/stop-procrastinating-you-dumbass",
"title": "stop procrastinating you dumbass"
},
{
"url": "https://news.slashdot.org/story/98/11/09/1938204/beware-of-the-quickees",
"title": "Beware of the Quickees"
},
{
"url": "https://linux.slashdot.org/story/98/11/09/1858201/hot-web-site-sw-released-as-open-source",
"title": "Hot Web Site SW released as Open Source"
},
{
"url": "https://tech.slashdot.org/story/98/11/09/1718257/netscape-and-the-mac",
"title": "Netscape and the Mac"
},
{
"url": "https://slashdot.org/story/98/11/09/1638235/sun-opens-up-java-api-process-a-little",
"title": "Sun opens up Java API process, a little"
},
{
"url": "https://tech.slashdot.org/story/98/11/09/1611232/interview-with-kalle-of-kde",
"title": "Interview with Kalle of KDE"
},
{
"url": "https://linux.slashdot.org/story/98/11/09/1541252/oracle-announcement-coming-soon",
"title": "Oracle Announcement coming soon?"
},
{
"url": "https://apple.slashdot.org/story/98/11/09/1337207/imac-falls-flat-vs-pii-machines",
"title": "iMac falls flat vs. PII machines..."
},
{
"url": "https://linux.slashdot.org/story/98/11/09/1328245/macromedia-testing-linux-flash-and-shockwave",
"title": "Macromedia Testing Linux Flash and Shockwave?"
},
{
"url": "https://tech.slashdot.org/story/98/11/09/1233200/fred-moody-speaks-about-amigas-past-and-future",
"title": "Fred Moody speaks about Amigas past and future"
},
{
"url": "https://slashdot.org/story/98/11/09/1224222/corel-hacks-wine",
"title": "Corel hacks WINE"
},
{
"url": "https://linux.slashdot.org/story/98/11/09/1221202/ask-slashdot-serious-sony-serial-situation",
"title": "Ask Slashdot: Serious Sony Serial Situation!"
},
{
"url": "https://news.slashdot.org/story/98/11/09/1124251/welcome-to-slashdot",
"title": "Welcome to Slashdot"
},
{
"url": "https://science.slashdot.org/story/98/11/09/107254/nanotech-is-on-the-way",
"title": "NanoTech is on the way"
},
{
"url": "https://news.slashdot.org/story/98/11/09/084234/leftover-halloween-links",
"title": "Leftover Halloween Links"
},
{
"url": "https://news.slashdot.org/story/98/11/09/0755233/star-wars-episode-i-trailer-nov-20",
"title": "Star Wars Episode I Trailer Nov. 20"
},
{
"url": "https://slashdot.org/story/98/11/09/0753210/new-type-of-search-engine",
"title": "New(?) type of search engine."
},
{
"url": "https://slashdot.org/story/98/11/09/0021229/woohoo-were-famous",
"title": "Woohoo we're famous!"
},
{
"url": "https://linux.slashdot.org/story/98/11/09/0015256/people-who-challenge-bill-gates",
"title": "People who challenge Bill Gates"
},
{
"url": "https://news.slashdot.org/story/98/11/08/2237251/slashdot-comment-fun-continues",
"title": "Slashdot Comment fun Continues"
},
{
"url": "https://slashdot.org/story/98/11/08/222206/observer-review-says-gates-should-release-nt-code",
"title": "Observer Review says: Gates should release NT code"
},
{
"url": "https://tech.slashdot.org/story/98/11/08/2114254/why-is-silicon-valley-so-darn-successful",
"title": "Why is Silicon Valley so darn successful?"
},
{
"url": "https://slashdot.org/story/98/11/08/2029253/gimp-contest-returns",
"title": "GIMP Contest Returns"
},
{
"url": "https://slashdot.org/story/98/11/08/1820248/you-call-this-crap-art",
"title": "you call this crap art?"
},
{
"url": "https://news.slashdot.org/story/98/11/08/1153226/free-software-and-capitalism",
"title": "Free Software and Capitalism"
},
{
"url": "https://hardware.slashdot.org/story/98/11/08/1137203/review-of-69-dec-multia",
"title": "Review of $69 Dec Multia"
},
{
"url": "https://linux.slashdot.org/story/98/11/08/1124242/cringely-critiques-linux-community",
"title": "Cringely Critiques Linux Community"
},
{
"url": "https://news.slashdot.org/story/98/11/08/1118254/unsigned-artists-mp3-distribution",
"title": "Unsigned Artists MP3 Distribution"
},
{
"url": "https://news.slashdot.org/story/98/11/08/1110253/slashnet-forum-log",
"title": "SlashNET Forum Log"
},
{
"url": "https://yro.slashdot.org/story/98/11/08/006219/da-trial",
"title": "Da Trial"
},
{
"url": "https://linux.slashdot.org/story/98/11/07/2333227/linux-for-business-in-store-demo",
"title": "Linux for business in store demo"
},
{
"url": "https://linux.slashdot.org/story/98/11/07/2327232/linus-portrait",
"title": "Linus portrait"
},
{
"url": "https://linux.slashdot.org/story/98/11/07/1524213/linux-21127-released",
"title": "Linux 2.1.127 Released"
},
{
"url": "https://slashdot.org/story/98/11/07/1437248/how-did-all-that-crap-get-in-there",
"title": "how did all that crap get in there?"
},
{
"url": "https://slashdot.org/story/98/11/07/1259212/ms-ponders-fighting-linux-with-the-law",
"title": "MS Ponders Fighting Linux with the Law"
},
{
"url": "https://slashdot.org/story/98/11/07/1248238/mac-os-x-screamshot-solution",
"title": "Mac OS X Screamshot Solution"
},
{
"url": "https://news.slashdot.org/story/98/11/07/1232231/slashnet-forum-and-important-comments-note",
"title": "SlashNET Forum (And Important Comments Note)"
},
{
"url": "https://hardware.slashdot.org/story/98/11/07/1213210/former-palmpilot-duos-new-company",
"title": "Former Palmpilot Duo's New Company"
},
{
"url": "https://tech.slashdot.org/story/98/11/07/1210219/dave-taylor-accepts-job-at-transmeta",
"title": "Dave Taylor accepts job at Transmeta"
},
{
"url": "https://ask.slashdot.org/story/98/11/07/0116225/keyboard-spraypainting-tips-wanted",
"title": "Keyboard Spraypainting Tips Wanted"
},
{
"url": "https://ask.slashdot.org/story/98/11/07/017214/ask-slashdot-music-sequencers-for-linux",
"title": "Ask Slashdot: Music Sequencers for Linux?"
},
{
"url": "https://linux.slashdot.org/story/98/11/06/2244210/another-commercial-rdbms-ported-to-linux",
"title": "Another commercial rdbms ported to Linux"
},
{
"url": "https://linux.slashdot.org/story/98/11/06/2213248/linuxs-status-in-education",
"title": "Linux's status in Education"
},
{
"url": "https://linux.slashdot.org/story/98/11/06/2156204/project-heresy-continues",
"title": "Project Heresy continues..."
},
{
"url": "https://news.slashdot.org/story/98/11/06/166258/jon-katz-discovers-slashdot",
"title": "Jon Katz discovers Slashdot"
},
{
"url": "https://science.slashdot.org/story/98/11/06/1528242/carbon-lattice-on-glass-for-bigger-flat-screens",
"title": "Carbon Lattice on Glass for Bigger Flat Screens"
},
{
"url": "https://slashdot.org/story/98/11/06/1527240/linus-comments-on-the-halloween-document",
"title": "Linus comments on the Halloween document"
},
{
"url": "https://news.slashdot.org/story/98/11/06/1523243/biggest-linux-supercomputer",
"title": "Biggest Linux Supercomputer?"
},
{
"url": "https://it.slashdot.org/story/98/11/06/1522250/ssh-confirms-buffer-overflow",
"title": "Ssh Confirms Buffer Overflow"
},
{
"url": "https://linux.slashdot.org/story/98/11/06/1510200/omg-refutes-allegations",
"title": "OMG refutes allegations"
},
{
"url": "https://linux.slashdot.org/story/98/11/06/155234/sun-loans-debian-ultra30s",
"title": "Sun Loans Debian Ultra30s"
},
{
"url": "https://books.slashdot.org/story/98/11/06/0955235/reviewstructure-and-interpretation-of-computer-programs",
"title": "Review:Structure and Interpretation of Computer Programs"
},
{
"url": "https://slashdot.org/story/98/11/06/0945229/halloween-iii",
"title": "Halloween III"
},
{
"url": "https://slashdot.org/story/98/11/06/0931247/aol-vs-efnet",
"title": "AOL vs efnet"
},
{
"url": "https://linux.slashdot.org/story/98/11/06/0854212/linuxorg-breathes-again",
"title": "Linux.org Breathes Again"
},
{
"url": "https://slashdot.org/story/98/11/06/0036228/ibm-to-build-largest-academic-research-computer",
"title": "IBM To Build Largest Academic Research Computer"
},
{
"url": "https://linux.slashdot.org/story/98/11/06/0029202/get-back-to-hacking",
"title": "Get back to hacking!"
},
{
"url": "https://news.slashdot.org/story/98/11/05/2040257/slashdot-mugs",
"title": "Slashdot Mugs"
},
{
"url": "https://ask.slashdot.org/story/98/11/05/2224241/diamond-netcommander-isdnec-support-for-linux",
"title": "Diamond Netcommander ISDN/EC Support for Linux"
},
{
"url": "https://ask.slashdot.org/story/98/11/05/2219259/mac-printing-problems-on-a-fiery-si-5750",
"title": "Mac Printing Problems on a Fiery SI 5750"
},
{
"url": "https://ask.slashdot.org/story/98/11/05/2021215/ask-slashdot-spanning-networked-disks",
"title": "Ask Slashdot: Spanning Networked Disks?"
},
{
"url": "https://slashdot.org/story/98/11/05/2016257/isps-must-register-to-prevent-copyright-violation",
"title": "ISPs Must Register to Prevent Copyright Violation"
},
{
"url": "https://news.slashdot.org/story/98/11/05/1950217/avalon-114-in-top-500",
"title": "Avalon 114 in top 500"
},
{
"url": "https://slashdot.org/story/98/11/05/1738230/microsoft-to-buy-linkexchange",
"title": "Microsoft to buy LinkExchange"
},
{
"url": "https://linux.slashdot.org/story/98/11/05/1657237/star-office-50-personal-edition",
"title": "Star Office 5.0 Personal Edition"
},
{
"url": "https://slashdot.org/story/98/11/05/1517205/who-are-those-halloween-people",
"title": "Who are those Halloween people?"
},
{
"url": "https://news.slashdot.org/story/98/11/05/1343248/webdav-apache-module",
"title": "WebDAV Apache Module"
},
{
"url": "https://slashdot.org/story/98/11/05/1245252/halloween-ii",
"title": "Halloween II!"
},
{
"url": "https://tech.slashdot.org/story/98/11/05/1045233/wearable-computing-central",
"title": "Wearable Computing Central"
},
{
"url": "https://news.slashdot.org/story/98/11/05/1024212/slashnet-forum-on-saturday-with-cmdrtaco",
"title": "SlashNET Forum on Saturday with CmdrTaco?"
},
{
"url": "https://games.slashdot.org/story/98/11/05/105224/red-hat-not-interested-in-publishing-id-games",
"title": "Red Hat not Interested in Publishing Id Games"
},
{
"url": "https://tech.slashdot.org/story/98/11/05/0952206/lego-for-linux",
"title": "Lego for Linux"
},
{
"url": "https://science.slashdot.org/story/98/11/04/2341226/mind-over-matter-patented",
"title": "Mind Over Matter Patented"
},
{
"url": "https://news.slashdot.org/story/98/11/04/2148206/heapin-healpin-o-quickie-fun",
"title": "Heapin Healpin o Quickie Fun"
},
{
"url": "https://slashdot.org/story/98/11/04/2143242/sun-claims-workshop-cc-compiler-outperforms-gnu",
"title": "Sun claims WorkShop C/C++ compiler outperforms GNU"
},
{
"url": "https://slashdot.org/story/98/11/04/2121233/the-geeks-of-gh20",
"title": "the geeks of GH2.0"
},
{
"url": "https://news.slashdot.org/story/98/11/04/1850230/freedos-beta-2-released",
"title": "FreeDOS Beta 2 Released"
},
{
"url": "https://slashdot.org/story/98/11/04/1551246/new-beos",
"title": "New BeOS"
},
{
"url": "https://slashdot.org/story/98/11/04/1537235/tim-oreillys-open-letter-to-microsoft",
"title": "Tim O'Reilly's Open Letter to Microsoft"
},
{
"url": "https://slashdot.org/story/98/11/04/1527215/important-note-for-earthlings",
"title": "Important Note for Earthlings"
},
{
"url": "https://science.slashdot.org/story/98/11/04/1127233/analog-vs-digital-computers",
"title": "Analog vs Digital Computers"
},
{
"url": "https://news.slashdot.org/story/98/11/04/1123235/i2o-spec-opens-up",
"title": "I2O Spec Opens Up!"
},
{
"url": "https://tech.slashdot.org/story/98/11/04/0959259/ecos-released",
"title": "eCos released"
},
{
"url": "https://news.slashdot.org/story/98/11/04/0954216/star-wars-ii-iii-to-be-filmed-in-sydney",
"title": "Star Wars II & III to be filmed in Sydney"
},
{
"url": "https://news.slashdot.org/story/98/11/04/0939200/major-record-label-to-support-mp3",
"title": "Major Record Label To Support MP3"
},
{
"url": "https://news.slashdot.org/story/98/11/04/093240/history-of-hackers-from-rms-to-kevin-mitnick",
"title": "History of Hackers (from RMS to Kevin Mitnick)"
},
{
"url": "https://slashdot.org/story/98/11/04/090206/a-standard-for-site-organization",
"title": "A Standard for Site Organization"
},
{
"url": "https://hardware.slashdot.org/story/98/11/04/0851256/50-gb-drives-from-seagate",
"title": "50 Gb drives from Seagate"
},
{
"url": "https://news.slashdot.org/story/98/11/04/0851244/reviewhandbook-of-applied-cryptography",
"title": "Review:Handbook of Applied Cryptography"
},
{
"url": "https://slashdot.org/story/98/11/04/0059214/jpegs-from-memory-lane",
"title": "jpegs from memory lane"
},
{
"url": "https://games.slashdot.org/story/98/11/03/2330231/the-demise-of-crackcom",
"title": "The demise of Crack.com"
},
{
"url": "https://linux.slashdot.org/story/98/11/03/205200/controversial-linux-world-article",
"title": "Controversial Linux World article"
},
{
"url": "https://slashdot.org/story/98/11/03/1947245/buying-into-microsoft-standards-not-job-safe",
"title": "Buying into Microsoft Standards: not job-safe"
},
{
"url": "https://linux.slashdot.org/story/98/11/03/1938227/corba-well-supported-on-linux",
"title": "CORBA well-supported on Linux"
},
{
"url": "https://linux.slashdot.org/story/98/11/03/164245/linux-cluster-off-the-shelf-supercomputers",
"title": "Linux Cluster: Off The Shelf Supercomputers"
},
{
"url": "https://ask.slashdot.org/story/98/11/03/163229/nt-domain-management-utilities-under-linux",
"title": "NT Domain Management Utilities under Linux"
},
{
"url": "https://slashdot.org/story/98/11/03/160212/microsoft-blows-it-again-with-windows-2000-name",
"title": "Microsoft blows it again with Windows 2000 name"
},
{
"url": "https://ask.slashdot.org/story/98/11/03/1556232/unix-postscript-conversion-utilities",
"title": "UNIX Postscript Conversion Utilities"
},
{
"url": "https://ask.slashdot.org/story/98/11/03/1550231/linux-and-mirrored-drive-solutions",
"title": "Linux and Mirrored Drive Solutions"
},
{
"url": "https://hardware.slashdot.org/story/98/11/03/129243/ask-slashdot-multiple-monitor-fun",
"title": "Ask Slashdot: Multiple Monitor Fun"
},
{
"url": "https://linux.slashdot.org/story/98/11/03/1019210/red-hat-gets-new-president",
"title": "Red Hat Gets New President."
},
{
"url": "https://it.slashdot.org/story/98/11/03/108202/remembering-the-worm",
"title": "Remembering the Worm"
},
{
"url": "https://slashdot.org/story/98/11/03/102224/the-altima-project",
"title": "The Altima Project"
},
{
"url": "https://linux.slashdot.org/story/98/11/03/0940237/linuxppc-50-announcement",
"title": "LinuxPPC 5.0 Announcement"
},
{
"url": "https://games.slashdot.org/story/98/11/03/0930257/carmack-speaks-on-quake-3-arena-and-linux",
"title": "Carmack speaks on Quake 3: Arena and Linux"
},
{
"url": "https://bsd.slashdot.org/story/98/11/03/0924230/new-issue-of-daemon-news",
"title": "New Issue of Daemon News"
},
{
"url": "https://slashdot.org/story/98/11/02/2110220/crimes-against-humanity",
"title": "Crimes Against Humanity"
},
{
"url": "https://linux.slashdot.org/story/98/11/02/1955241/freshmeat-and-32bitsonline-team-up",
"title": "Freshmeat and 32BitsOnline team up"
},
{
"url": "https://slashdot.org/story/98/11/02/1721255/microsoft-admits-vinodv-memo-is-authentic",
"title": "Microsoft admits VinodV memo is authentic"
},
{
"url": "https://linux.slashdot.org/story/98/11/02/1659247/significance-french-educations-linux-move",
"title": "Significance French Education's Linux move"
},
{
"url": "https://slashdot.org/story/98/11/02/1641201/sun-announces-450mhz-ultrasparc",
"title": "Sun Announces 450MHz UltraSPARC"
},
{
"url": "https://hardware.slashdot.org/story/98/11/02/1612212/9900-dec-alpha-boxes",
"title": "$99.00 DEC Alpha Boxes"
},
{
"url": "https://news.slashdot.org/story/98/11/02/1232238/sco-claims-to-support-linux-development",
"title": "SCO claims to support Linux Development!"
},
{
"url": "https://developers.slashdot.org/story/98/11/02/1228230/sun-commits-to-linux-users-for-jdk-12",
"title": "Sun Commits to Linux Users for JDK 1.2"
},
{
"url": "https://news.slashdot.org/story/98/11/02/124258/comedy-central-losens-copyright-grip-on-south-park",
"title": "Comedy Central Losens Copyright grip on South Park"
},
{
"url": "https://linux.slashdot.org/story/98/11/02/1144221/redhat-52-is-definitely-out",
"title": "RedHat 5.2 is Definitely Out"
},
{
"url": "https://it.slashdot.org/story/98/11/02/1131218/rootshell-hackssh-is-vulnerable",
"title": "Rootshell hack:ssh is vulnerable"
},
{
"url": "https://news.slashdot.org/story/98/11/02/1120257/slashdot-overload",
"title": "Slashdot Overload!"
},
{
"url": "https://news.slashdot.org/story/98/11/02/1026215/reviewunix-system-administration",
"title": "Review:Unix System Administration"
},
{
"url": "https://slashdot.org/story/98/11/01/205212/internal-microsoft-oss-memo",
"title": "Internal Microsoft OSS Memo"
},
{
"url": "https://news.slashdot.org/story/98/11/01/1711243/mp3-hardware-mailing-list",
"title": "MP3 Hardware Mailing List"
},
{
"url": "https://bsd.slashdot.org/story/98/11/01/177215/freebsd-sets-new-bandwidth-record",
"title": "FreeBSD sets new Bandwidth Record"
},
{
"url": "https://slashdot.org/story/98/11/01/170250/gasoline",
"title": "gasoline?"
},
{
"url": "https://linux.slashdot.org/story/98/11/01/1148234/linuxworld-expos-website-now-online",
"title": "LinuxWorld Expo's Website now Online"
},
{
"url": "https://tech.slashdot.org/story/98/11/01/1141241/unix-vendors-find-allies-in-linux",
"title": "Unix Vendors Find Allies in Linux"
},
{
"url": "https://news.slashdot.org/story/98/11/01/1133226/white-hat-hacking",
"title": "White Hat Hacking"
},
{
"url": "https://linux.slashdot.org/story/98/11/01/1125252/rh52-hits-the-wire",
"title": "RH5.2 hits the Wire"
},
{
"url": "https://it.slashdot.org/story/98/10/31/2332224/virtual-private-network-adapter-for-linux",
"title": "Virtual Private Network Adapter for Linux"
},
{
"url": "https://news.slashdot.org/story/98/10/31/2329209/rootshell-and-ssh",
"title": "Rootshell and SSH"
},
{
"url": "https://tech.slashdot.org/story/98/10/31/2325243/whats-related-security-fuss",
"title": "What's Related Security Fuss"
},
{
"url": "https://slashdot.org/story/98/10/31/2321203/meta-searching-gets-easier",
"title": "Meta Searching Gets Easier"
},
{
"url": "https://linux.slashdot.org/story/98/10/31/2313208/linuxorg-disappearance-plot-thickens",
"title": "Linux.org Disappearance Plot Thickens"
},
{
"url": "https://slashdot.org/story/98/10/31/1729243/intel-provides-some-online-support-for-linux",
"title": "Intel provides some online support for Linux"
},
{
"url": "https://tech.slashdot.org/story/98/10/31/1321233/the-future-of-x",
"title": "The future of X"
},
{
"url": "https://linux.slashdot.org/story/98/10/31/1227232/lotus-to-port-smartsuite-and-notesdomino-to-linux",
"title": "Lotus to port SmartSuite and Notes/Domino to Linux"
},
{
"url": "https://slashdot.org/story/98/10/31/1138230/imac-sillyness",
"title": "iMac Sillyness"
},
{
"url": "https://news.slashdot.org/story/98/10/31/1134254/geeks-with-guns",
"title": "Geeks With Guns!"
},
{
"url": "https://news.slashdot.org/story/98/10/31/1131225/mp3-bands-together",
"title": "MP3 Bands Together"
},
{
"url": "https://linux.slashdot.org/story/98/10/30/2357226/macromedia-to-support-linux",
"title": "Macromedia to support Linux?"
},
{
"url": "https://news.slashdot.org/story/98/10/30/2334243/assorted-slashdot-notes",
"title": "Assorted Slashdot Notes"
},
{
"url": "https://slashdot.org/story/98/10/30/2332224/os-counter-at-risk",
"title": "OS counter at risk"
},
{
"url": "https://news.slashdot.org/story/98/10/30/1955200/text-description-of-new-star-wars-trailer",
"title": "Text description of new Star Wars Trailer"
},
{
"url": "https://tech.slashdot.org/story/98/10/30/1948209/corel-to-commit-developers-to-wine",
"title": "Corel To Commit Developers to WINE"
},
{
"url": "https://slashdot.org/story/98/10/30/1653236/windows-nt-crashes-us-dept-of-labor-nationwide",
"title": "Windows NT crashes U.S. Dept. of Labor Nationwide"
},
{
"url": "https://linux.slashdot.org/story/98/10/30/1647224/aful-to-support-french-schools-which-use-linux",
"title": "AFUL to support French schools which use Linux"
},
{
"url": "https://games.slashdot.org/story/98/10/30/1551241/ritual-entertainment-releases-sin",
"title": "Ritual Entertainment releases SIN."
},
{
"url": "https://linux.slashdot.org/story/98/10/30/1527257/gartner-group-survey",
"title": "Gartner Group survey"
},
{
"url": "https://slashdot.org/story/98/10/30/1312246/intel-inside-homers-head",
"title": "Intel Inside Homer's Head?"
},
{
"url": "https://developers.slashdot.org/story/98/10/30/139233/webtv-to-drop-java-support",
"title": "WebTV to drop Java Support"
},
{
"url": "https://news.slashdot.org/story/98/10/30/1132220/reviewbeginning-linux-programming",
"title": "Review:Beginning Linux Programming"
},
{
"url": "https://slashdot.org/story/98/10/30/1123206/another-example-of-the-web-overload",
"title": "Another Example of the Web Overload"
},
{
"url": "https://linux.slashdot.org/story/98/10/30/1120203/yet-another-project-heresy-report",
"title": "Yet Another Project Heresy Report"
},
{
"url": "https://slashdot.org/story/98/10/30/1113238/kmfdm-parody-takes-aim-at-microsoft",
"title": "KMFDM Parody Takes Aim at Microsoft"
},
{
"url": "https://slashdot.org/story/98/10/30/119210/internet-music-getting-hit-again",
"title": "Internet music getting hit again"
},
{
"url": "https://bsd.slashdot.org/story/98/10/30/0939204/the-freebsd-mall",
"title": "The FreeBSD Mall"
},
{
"url": "https://linux.slashdot.org/story/98/10/30/0934249/linuxorg-down",
"title": "Linux.org down"
},
{
"url": "https://slashdot.org/story/98/10/29/2357220/x86-to-stay-at-least-until-2003",
"title": "x86 to stay at least until 2003"
},
{
"url": "https://linux.slashdot.org/story/98/10/29/1835253/red-hat-wins-best-of-show-award",
"title": "Red Hat wins Best Of Show Award"
},
{
"url": "https://apple.slashdot.org/story/98/10/29/171203/microsoft-invested-in-apple-not-true",
"title": "Microsoft Invested In Apple: Not true"
},
{
"url": "https://linux.slashdot.org/story/98/10/29/1650249/dm-30000-us-20000-reward-for-nt-rdp-client",
"title": "DM 30.000 (~US $20.000) reward for NT RDP client"
},
{
"url": "https://slashdot.org/story/98/10/29/1647212/time-for-project-oxygen-on-our-planet",
"title": "Time for Project Oxygen on Our Planet"
},
{
"url": "https://slashdot.org/story/98/10/29/1643244/talk-on-open-software-as-a-weapon-against-abuse",
"title": "Talk on open software as a weapon against abuse"
},
{
"url": "https://science.slashdot.org/story/98/10/29/1638209/shannons-law-revisted",
"title": "Shannon's law revisted"
},
{
"url": "https://science.slashdot.org/story/98/10/29/1625256/possible-radio-signal-from-outer-space",
"title": "possible radio signal from outer space"
},
{
"url": "https://tech.slashdot.org/story/98/10/29/1137222/nglayout-explained",
"title": "NGLayout Explained"
},
{
"url": "https://linux.slashdot.org/story/98/10/29/1040230/open-letter-from-corel-to-debian",
"title": "Open Letter from Corel to Debian"
},
{
"url": "https://news.slashdot.org/story/98/10/29/0946225/staroffice-for-free",
"title": "Staroffice for Free"
},
{
"url": "https://linux.slashdot.org/story/98/10/29/0937205/linux-mp3cd-home-stereo",
"title": "Linux MP3CD Home Stereo"
},
{
"url": "https://linux.slashdot.org/story/98/10/29/0931254/ask-slashdotlinux-scanners-and-pcmcia-scsi",
"title": "Ask Slashdot:Linux Scanners (and PCMCIA SCSI)"
},
{
"url": "https://slashdot.org/story/98/10/29/0859212/ibm-working-on-new-fastest-supercomputer",
"title": "IBM Working on New Fastest SuperComputer"
},
{
"url": "https://games.slashdot.org/story/98/10/29/0847252/43-of-quake-servers-run-linux",
"title": "43% of Quake Servers Run Linux"
},
{
"url": "https://books.slashdot.org/story/98/10/29/082236/the-computational-beauty-of-nature",
"title": "The Computational Beauty of Nature"
},
{
"url": "https://news.slashdot.org/story/98/10/28/228210/rootshell-hacked",
"title": "Rootshell Hacked"
},
{
"url": "https://slashdot.org/story/98/10/28/1939233/bladeenc-source-to-be-released-under-the-gpl",
"title": "BladeEnc source to be released under the GPL"
},
{
"url": "https://slashdot.org/story/98/10/28/1923205/original-netscape-mosaic-v-093-beta",
"title": "Original Netscape Mosaic v 0.93 Beta!"
},
{
"url": "https://linux.slashdot.org/story/98/10/28/1920237/os-guerillas",
"title": "OS Guerillas"
},
{
"url": "https://tech.slashdot.org/story/98/10/28/1337211/more-x86-developments",
"title": "More x86 developments"
},
{
"url": "https://linux.slashdot.org/story/98/10/28/1330220/pacific-hitech-to-enter-us-linux-market",
"title": "Pacific HiTech to enter US Linux Market"
},
{
"url": "https://news.slashdot.org/story/98/10/28/107205/icpf-programming-contest-results",
"title": "ICPF Programming Contest Results"
},
{
"url": "https://linux.slashdot.org/story/98/10/28/103237/512-node-linux-cluster",
"title": "512 Node Linux Cluster"
},
{
"url": "https://linux.slashdot.org/story/98/10/28/100257/red-hat-52-out-soon",
"title": "Red Hat 5.2 out soon"
},
{
"url": "https://tech.slashdot.org/story/98/10/28/0949239/amiga4-news",
"title": "Amiga4 News"
},
{
"url": "https://slashdot.org/story/98/10/28/0943253/the-nightmare-screenshot",
"title": "The Nightmare Screenshot"
},
{
"url": "https://linux.slashdot.org/story/98/10/28/0924214/linux-porting-site-opens-door",
"title": "Linux Porting Site Opens Door"
},
{
"url": "https://tech.slashdot.org/story/98/10/27/2334210/unix-market-share-at-427-up-from-36",
"title": "Unix market share at 42.7%, up from 36%"
},
{
"url": "https://slashdot.org/story/98/10/27/2324252/solaris-7-available-for-10",
"title": "Solaris 7 available for $10"
},
{
"url": "https://tech.slashdot.org/story/98/10/27/2218256/nvidia-xfree-patches-now-available",
"title": "Nvidia XFree patches now available"
},
{
"url": "https://slashdot.org/story/98/10/27/229220/microsoft-targets-medical-industry",
"title": "Microsoft targets medical industry?"
},
{
"url": "https://tech.slashdot.org/story/98/10/27/1914200/mexico-goes-gnome",
"title": "Mexico Goes GNOME"
},
{
"url": "https://linux.slashdot.org/story/98/10/27/1837230/wwwalphalinuxorg-opens",
"title": "www.alphalinux.org opens"
},
{
"url": "https://news.slashdot.org/story/98/10/27/1811222/turbolinux-outsells-macos-in-japanese-retail",
"title": "TurboLinux outsells MacOS in Japanese Retail"
},
{
"url": "https://slashdot.org/story/98/10/27/1643200/nt-5-officially-windows-2000",
"title": "NT 5 officially 'Windows 2000'"
},
{
"url": "https://slashdot.org/story/98/10/27/1635234/taking-the-capitol-out-of-venture-capital",
"title": "Taking the Capitol out of Venture Capital"
},
{
"url": "https://linux.slashdot.org/story/98/10/27/164206/linus-interview-in-ee-times",
"title": "Linus Interview in EE-Times"
},
{
"url": "https://slashdot.org/story/98/10/27/1557215/sun-does-not-consider-linux-a-threat",
"title": "Sun does not consider Linux a threat"
},
{
"url": "https://slashdot.org/story/98/10/27/1549240/the-outlawing-of-technology-and-research",
"title": "The outlawing of technology and research."
},
{
"url": "https://linux.slashdot.org/story/98/10/27/1546248/market-research-firm-expects-linux-to-grow",
"title": "Market research firm expects Linux to grow"
},
{
"url": "https://science.slashdot.org/story/98/10/27/1524213/danish-scientists-develop-atom-sized-memory-cell",
"title": "Danish Scientists develop atom-sized memory-cell"
},
{
"url": "https://apple.slashdot.org/story/98/10/27/155238/replacing-nt-with-mklinux",
"title": "Replacing NT with MKLinux"
},
{
"url": "https://yro.slashdot.org/story/98/10/27/1420229/china-cracked",
"title": "China cracked!"
},
{
"url": "https://tech.slashdot.org/story/98/10/27/142239/cell-phone-manufacturers-acknowledge-risk",
"title": "Cell Phone Manufacturers acknowledge risk"
},
{
"url": "https://linux.slashdot.org/story/98/10/27/1357231/x11amp-is-dead-not",
"title": "x11amp is dead... not"
},
{
"url": "https://slashdot.org/story/98/10/27/1259212/free-cpu-coming-soon",
"title": "Free CPU coming soon"
},
{
"url": "https://slashdot.org/story/98/10/27/1245257/name-games",
"title": "Name-Games"
},
{
"url": "https://books.slashdot.org/story/98/10/27/1141213/reviewmore-effective-c",
"title": "Review:More Effective C++"
},
{
"url": "https://tech.slashdot.org/story/98/10/27/1122251/nix-write-up",
"title": "*nix write-up"
},
{
"url": "https://linux.slashdot.org/story/98/10/27/1120217/applixware-for-linuxppc-need-user-feedback",
"title": "Applixware for LinuxPPC: Need user feedback"
},
{
"url": "https://slashdot.org/story/98/10/27/1116238/corel-and-red-hat-announce-linux-partnership",
"title": "Corel and Red Hat Announce Linux Partnership"
},
{
"url": "https://tech.slashdot.org/story/98/10/27/0934228/mpeg-camera-now-available",
"title": "MPEG Camera now available"
},
{
"url": "https://news.slashdot.org/story/98/10/27/0916243/nyse-computers-crash",
"title": "NYSE Computers Crash"
},
{
"url": "https://tech.slashdot.org/story/98/10/27/0836220/nglayout-for-mozilla-50",
"title": "NGLayout for Mozilla 5.0"
},
{
"url": "https://news.slashdot.org/story/98/10/26/213204/riaas-injunction-against-diamond-lifted",
"title": "RIAAs Injunction Against Diamond Lifted"
},
{
"url": "https://linux.slashdot.org/story/98/10/26/210228/lsb-updates",
"title": "LSB Updates"
},
{
"url": "https://tech.slashdot.org/story/98/10/26/2058208/zapme-free-pcs-with-advertising",
"title": "ZapMe Free PCs, with Advertising?"
},
{
"url": "https://slashdot.org/story/98/10/26/2049217/demotivational-posters",
"title": "Demotivational Posters"
},
{
"url": "https://slashdot.org/story/98/10/26/2046209/geek-houses",
"title": "Geek Houses?"
},
{
"url": "https://tech.slashdot.org/story/98/10/26/2038225/american-megatrends-adds-linux-system",
"title": "American Megatrends Adds Linux System"
},
{
"url": "https://apple.slashdot.org/story/98/10/26/1921225/macos-clustering",
"title": "MacOS Clustering"
},
{
"url": "https://slashdot.org/story/98/10/26/196227/support-room-comic",
"title": "Support Room Comic"
},
{
"url": "https://games.slashdot.org/story/98/10/26/191245/golgotha-followup",
"title": "Golgotha Followup"
},
{
"url": "https://tech.slashdot.org/story/98/10/26/1615235/new-x86-kid-on-the-block",
"title": "New x86 kid on the block"
},
{
"url": "https://linux.slashdot.org/story/98/10/26/1449214/als-wrapup",
"title": "ALS Wrapup"
},
{
"url": "https://slashdot.org/story/98/10/26/0912220/ibm-sco-and-sequent-to-develop-new-unix",
"title": "IBM, SCO and Sequent to develop new Unix"
},
{
"url": "https://linux.slashdot.org/story/98/10/25/2325228/universal-printer-driver",
"title": "Universal Printer Driver"
},
{
"url": "https://tech.slashdot.org/story/98/10/25/2317232/knuths-new-word-wyde",
"title": "Knuth's new word: wyde!"
},
{
"url": "https://tech.slashdot.org/story/98/10/25/236233/netscapes-whats-related-is-xml",
"title": "Netscape's What's Related is XML"
},
{
"url": "https://news.slashdot.org/story/98/10/25/165225/lowrentorg-opens-doors",
"title": "LowRent.org Opens Doors"
},
{
"url": "https://slashdot.org/story/98/10/25/1419218/worker-shortages-short-term-and-long-term",
"title": "Worker shortages: short-term and long-term"
},
{
"url": "https://linux.slashdot.org/story/98/10/25/142216/opera-linux-stalled",
"title": "Opera Linux stalled."
},
{
"url": "https://ask.slashdot.org/story/98/10/25/1348246/ask-slashdot-the-search-for-the-perfect-chassis",
"title": "Ask Slashdot: The Search for the Perfect Chassis"
},
{
"url": "https://science.slashdot.org/story/98/10/25/1340245/star-trek-deep-space-i",
"title": "Star Trek: Deep Space I"
},
{
"url": "https://linux.slashdot.org/story/98/10/25/1332225/sap-to-support-linux",
"title": "SAP to support Linux?"
},
{
"url": "https://ask.slashdot.org/story/98/10/24/1845205/ir-wireless-networks-for-laptops",
"title": "IR Wireless Networks for Laptops?"
},
{
"url": "https://ask.slashdot.org/story/98/10/24/1756224/full-text-search-engines",
"title": "Full Text Search Engines"
},
{
"url": "https://yro.slashdot.org/story/98/10/24/1749257/ask-slashdot-ip-and-patent-law-questions",
"title": "Ask Slashdot: IP and Patent Law Questions"
},
{
"url": "https://ask.slashdot.org/story/98/10/24/1735216/moutning-nt-shares-on-solaris-irix-and-other-unixen",
"title": "Moutning NT Shares on Solaris, Irix and Other Unixen"
},
{
"url": "https://slashdot.org/story/98/10/24/170225/jdk-12-licensed-to-linux-porting-team-by-sun",
"title": "JDK 1.2 licensed to Linux Porting Team by Sun"
},
{
"url": "https://linux.slashdot.org/story/98/10/24/1653203/oracle-reaffirms-linux-commitment",
"title": "Oracle reaffirms Linux commitment"
},
{
"url": "https://linux.slashdot.org/story/98/10/24/1412250/als-pictures",
"title": "ALS Pictures"
},
{
"url": "https://news.slashdot.org/story/98/10/24/1321236/als-live-webcam",
"title": "ALS Live webcam"
},
{
"url": "https://slashdot.org/story/98/10/24/1241203/flamewar-central",
"title": "Flamewar Central?"
},
{
"url": "https://slashdot.org/story/98/10/24/125214/crackers-in-the-service-of-murderers",
"title": "Crackers in the service of Murderers"
},
{
"url": "https://slashdot.org/story/98/10/24/1159259/telcos-lose--net-wins",
"title": "Telcos lose- Net wins"
},
{
"url": "https://linux.slashdot.org/story/98/10/24/1125225/news-from-als",
"title": "News from ALS"
},
{
"url": "https://linux.slashdot.org/story/98/10/24/0922245/linux-21126-released",
"title": "Linux 2.1.126 Released"
},
{
"url": "https://yro.slashdot.org/story/98/10/24/0911238/spoof-on-the-doj-trial",
"title": "Spoof on the DOJ Trial"
},
{
"url": "https://tech.slashdot.org/story/98/10/24/099220/girl-games-girl-friendly-computing",
"title": "Girl Games: Girl-friendly computing"
},
{
"url": "https://yro.slashdot.org/story/98/10/23/2120224/privacy-vs-free-speech-in-sweden",
"title": "Privacy vs. Free Speech in Sweden"
},
{
"url": "https://tech.slashdot.org/story/98/10/23/2114213/new-window-maker",
"title": "New Window Maker"
},
{
"url": "https://slashdot.org/story/98/10/23/215213/corel-to-give-away-word-perfect-8",
"title": "Corel to give away Word Perfect 8"
},
{
"url": "https://it.slashdot.org/story/98/10/23/1541225/washington-sues-spammer",
"title": "Washington Sues Spammer"
},
{
"url": "https://news.slashdot.org/story/98/10/23/1236237/eda-users-moving-away-from-nt",
"title": "EDA users moving away from NT"
},
{
"url": "https://news.slashdot.org/story/98/10/23/1234243/cdnown2k-to-merge",
"title": "CdNow/N2k to merge"
},
{
"url": "https://linux.slashdot.org/story/98/10/23/1048254/als-webcam",
"title": "ALS WebCam"
},
{
"url": "https://science.slashdot.org/story/98/10/23/1036236/teleportation-at-last",
"title": "Teleportation at Last"
},
{
"url": "https://linux.slashdot.org/story/98/10/23/0149227/british-mp3-player-runs-on-linux",
"title": "British MP3 player runs on Linux"
},
{
"url": "https://games.slashdot.org/story/98/10/23/0135218/crackcom-closes-shop",
"title": "Crack.com closes shop"
},
{
"url": "https://linux.slashdot.org/story/98/10/23/0113222/hp-thinking-of-including-linux-in-product-plans",
"title": "HP thinking of including Linux in product plans"
},
{
"url": "https://it.slashdot.org/story/98/10/23/017228/bug-in-unix-navigator",
"title": "Bug in Unix Navigator"
},
{
"url": "https://slashdot.org/story/98/10/23/0057216/transmeta-working-with-ibm",
"title": "Transmeta working with IBM?"
},
{
"url": "https://news.slashdot.org/story/98/10/22/1742258/linux-in-the-press",
"title": "Linux in the Press"
},
{
"url": "https://linux.slashdot.org/story/98/10/22/0841207/off-to-als",
"title": "Off to ALS"
},
{
"url": "https://slashdot.org/story/98/10/22/0835234/snippets-of-c",
"title": "Snippets of C"
},
{
"url": "https://it.slashdot.org/story/98/10/22/0832225/uk-government-unveils-crypto-escrow-legislation",
"title": "UK Government Unveils Crypto Escrow Legislation"
},
{
"url": "https://news.slashdot.org/story/98/10/22/0830225/scientists-scramble-web-pages-in-protest",
"title": "Scientists Scramble Web Pages in Protest"
},
{
"url": "https://slashdot.org/story/98/10/22/0735233/clinton-signs-cda-ii-into-law",
"title": "Clinton signs CDA II into law"
},
{
"url": "https://linux.slashdot.org/story/98/10/21/1951213/techweb-story-about-the-linux-kernel",
"title": "TechWeb Story about the Linux kernel"
},
{
"url": "https://slashdot.org/story/98/10/21/1937222/the-webs-unelected-government",
"title": "The Web's Unelected Government"
},
{
"url": "https://news.slashdot.org/story/98/10/21/1933252/new-life-for-old-code",
"title": "New Life For Old Code?"
},
{
"url": "https://tech.slashdot.org/story/98/10/21/194242/18mb-cd-rom-business-card",
"title": "18MB CD-ROM Business Card"
},
{
"url": "https://linux.slashdot.org/story/98/10/21/1843217/linus-in-time-magazine",
"title": "Linus in TIME Magazine"
},
{
"url": "https://linux.slashdot.org/story/98/10/21/1454228/linux-mandrake-updates",
"title": "Linux-Mandrake Updates"
},
{
"url": "https://slashdot.org/story/98/10/21/1311253/slashdot-may-use-ibms-logo-again",
"title": "Slashdot may use IBM's logo again"
},
{
"url": "https://news.slashdot.org/story/98/10/21/111252/thebazaarorg-opens-the-gates",
"title": "thebazaar.org opens the gates"
},
{
"url": "https://news.slashdot.org/story/98/10/21/1040229/stuff-you-can-make-in-your-kitchen",
"title": "Stuff you can make in your Kitchen"
},
{
"url": "https://tech.slashdot.org/story/98/10/21/1035230/more-cheap-pdas-on-the-loose",
"title": "More Cheap PDAs on the Loose"
},
{
"url": "https://slashdot.org/story/98/10/21/1022252/artist-turns-dreams-into-cartoons",
"title": "Artist turns dreams into Cartoons"
},
{
"url": "https://features.slashdot.org/story/98/10/21/0030212/microsofts-os-is-an-integral-part-of-your-pc",
"title": "Microsoft's OS is an integral part of your PC"
},
{
"url": "https://linux.slashdot.org/story/98/10/20/2057238/ask-slashdot-kiosking-linux",
"title": "Ask Slashdot: 'Kiosking' Linux"
},
{
"url": "https://ask.slashdot.org/story/98/10/20/2048226/floating-windows-in-x",
"title": "'Floating Windows' in X"
},
{
"url": "https://ask.slashdot.org/story/98/10/20/2015202/linux-support-for-newer-hp-deskjet-models",
"title": "Linux Support for Newer HP Deskjet Models"
},
{
"url": "https://tech.slashdot.org/story/98/10/20/1540205/samsung-announces-mp3-players",
"title": "Samsung Announces MP3 Players"
},
{
"url": "https://tech.slashdot.org/story/98/10/20/1427224/faster-trans-oceanic-fiber",
"title": "Faster trans-oceanic fiber"
},
{
"url": "https://tech.slashdot.org/story/98/10/20/1425245/enlightenment-today-and-tomorrow",
"title": "Enlightenment: Today and Tomorrow"
},
{
"url": "https://slashdot.org/story/98/10/20/1132212/european-net-surveillance",
"title": "European Net Surveillance"
},
{
"url": "https://hardware.slashdot.org/story/98/10/20/1114208/microsoft-doesnt-buy-palmos",
"title": "Microsoft Doesn't Buy PalmOS"
},
{
"url": "https://features.slashdot.org/story/98/10/20/116240/featurewhatever-happened-to-andf",
"title": "Feature:Whatever Happened to ANDF?"
},
{
"url": "https://linux.slashdot.org/story/98/10/20/1014247/open-code-frees-up-the-net",
"title": "Open Code Frees up the Net"
},
{
"url": "https://slashdot.org/story/98/10/20/0956219/diary-of-fall-internet-world-98",
"title": "Diary of Fall Internet World 98"
},
{
"url": "https://news.slashdot.org/story/98/10/19/2141203/is-your-kid-a-hacker",
"title": "Is Your Kid a Hacker?"
},
{
"url": "https://linux.slashdot.org/story/98/10/19/2137224/gimp-and-red-hat-linux-win-awards",
"title": "Gimp and Red Hat Linux win awards"
},
{
"url": "https://games.slashdot.org/story/98/10/19/2134215/play-unreal-under-linux",
"title": "Play Unreal Under Linux?"
},
{
"url": "https://slashdot.org/story/98/10/19/1825219/pokey-the-penguin-hits-200-episodes",
"title": "Pokey the Penguin hits 200 Episodes"
},
{
"url": "https://tech.slashdot.org/story/98/10/19/1822252/programming-in-gtk-the-novel",
"title": "Programming in GTK, The Novel"
},
{
"url": "https://slashdot.org/story/98/10/19/1543219/fraunhofers-response-to-free-mp3-encoder-writers",
"title": "Fraunhofer's response to free MP3 encoder writers"
},
{
"url": "https://linux.slashdot.org/story/98/10/19/1344219/coldfusion-for-linux",
"title": "Coldfusion for Linux"
},
{
"url": "https://slashdot.org/story/98/10/19/1240212/themes-for-beos",
"title": "Themes for BeOS"
},
{
"url": "https://tech.slashdot.org/story/98/10/19/1134211/rio-mp3-player-on-hold",
"title": "Rio MP3 Player On Hold"
},
{
"url": "https://slashdot.org/story/98/10/19/1119203/colgate-palmolive-lawsuit-dropped",
"title": "Colgate-Palmolive Lawsuit Dropped"
},
{
"url": "https://linux.slashdot.org/story/98/10/19/1047246/linux-22-preview",
"title": "Linux 2.2 Preview"
},
{
"url": "https://science.slashdot.org/story/98/10/19/102206/clones-of-clones",
"title": "Clones of Clones"
},
{
"url": "https://ask.slashdot.org/story/98/10/19/0211255/flat-screens-and-linux",
"title": "Flat Screens and Linux"
},
{
"url": "https://ask.slashdot.org/story/98/10/19/020237/jdk-12-on-linux",
"title": "JDK 1.2 on Linux?"
},
{
"url": "https://linux.slashdot.org/story/98/10/19/0157204/ask-slashdot-linux-in-the-corporation",
"title": "Ask Slashdot: Linux in the Corporation"
},
{
"url": "https://ask.slashdot.org/story/98/10/19/0150249/56k-modems-that-work-with-linux",
"title": "56K modems that work with Linux?"
},
{
"url": "https://news.slashdot.org/story/98/10/18/225249/techies-slaving-away",
"title": "Techies Slaving Away"
},
{
"url": "https://slashdot.org/story/98/10/18/2033254/not-by-the-hair-on-my-chiny-chin-chin",
"title": "not by the hair on my chiny chin chin"
},
{
"url": "https://it.slashdot.org/story/98/10/18/1451259/microsoft-support-so-good-zd-net-helps-out",
"title": "Microsoft support so good ZD-NET helps out"
},
{
"url": "https://news.slashdot.org/story/98/10/18/1444231/xerox-parcs-ilu-is-now-free-software",
"title": "Xerox PARC's ILU is now Free Software"
},
{
"url": "https://games.slashdot.org/story/98/10/18/1435212/linux-game-breeding",
"title": "Linux Game Breeding"
},
{
"url": "https://tech.slashdot.org/story/98/10/18/1434226/a-real-wearable",
"title": "A Real Wearable?"
},
{
"url": "https://linux.slashdot.org/story/98/10/18/1416224/linux-cartoons",
"title": "Linux Cartoons"
},
{
"url": "https://slashdot.org/story/98/10/18/1410241/bud-uglly-design",
"title": "Bud Uglly design"
},
{
"url": "https://slashdot.org/story/98/10/18/1315246/jon-postel-dies",
"title": "Jon Postel dies"
},
{
"url": "https://tech.slashdot.org/story/98/10/17/181229/in-dash-mp3-player",
"title": "In-Dash MP3 Player"
},
{
"url": "https://tech.slashdot.org/story/98/10/17/1753259/xi-graphics-supports-3d-hardware-acceleration",
"title": "Xi Graphics supports 3D hardware acceleration."
},
{
"url": "https://tech.slashdot.org/story/98/10/17/1746242/new-mozilla-status-report",
"title": "New Mozilla Status Report"
},
{
"url": "https://slashdot.org/story/98/10/17/1735251/aol-dns-cracked",
"title": "AOL DNS Cracked"
},
{
"url": "https://linux.slashdot.org/story/98/10/17/1459235/linuxworld-hits-the-net",
"title": "LinuxWorld Hits the Net"
},
{
"url": "https://slashdot.org/story/98/10/17/138211/thank-you-microsoft",
"title": "Thank you Microsoft"
},
{
"url": "https://news.slashdot.org/story/98/10/17/1148204/mp3-virus-is-a-hoax",
"title": "MP3 virus is a hoax"
},
{
"url": "https://tech.slashdot.org/story/98/10/17/0049228/aliaswavefront-maya-poll",
"title": "Alias/Wavefront Maya Poll"
},
{
"url": "https://linux.slashdot.org/story/98/10/16/2347254/eda-taking-off-on-linux",
"title": "EDA taking off on Linux"
},
{
"url": "https://tech.slashdot.org/story/98/10/16/2337203/microprocessor-forum-wrap-up",
"title": "Microprocessor Forum wrap-up"
},
{
"url": "https://slashdot.org/story/98/10/16/2251226/die-paperclip-die",
"title": "Die, Paperclip, Die!"
},
{
"url": "https://tech.slashdot.org/story/98/10/16/2231202/netscape-communicator-45-released",
"title": "Netscape Communicator 4.5 Released"
},
{
"url": "https://news.slashdot.org/story/98/10/16/2225251/riaa-granted-injunction",
"title": "RIAA Granted Injunction"
},
{
"url": "https://linux.slashdot.org/story/98/10/16/1616238/als-breaks-exhibitors-record",
"title": "ALS Breaks Exhibitors Record"
},
{
"url": "https://news.slashdot.org/story/98/10/16/168255/iwa-discovers-mpeg-audio-virus",
"title": "IWA Discovers MPEG Audio Virus"
},
{
"url": "https://bsd.slashdot.org/story/98/10/16/161233/freebsd-30-release",
"title": "FreeBSD 3.0-Release"
},
{
"url": "https://slashdot.org/story/98/10/16/1336213/intel-infridges-on-s3-patent",
"title": "Intel Infridges on s3 Patent?"
},
{
"url": "https://slashdot.org/story/98/10/16/1324245/caldera-review-on-pc-magazine",
"title": "Caldera review on PC Magazine"
},
{
"url": "https://linux.slashdot.org/story/98/10/16/132217/linux-on-pa-risc",
"title": "Linux on PA-RISC"
},
{
"url": "https://tech.slashdot.org/story/98/10/16/1256208/kde-11-due-in-mid-november",
"title": "KDE 1.1 due in mid-November"
},
{
"url": "https://tech.slashdot.org/story/98/10/16/1029238/tom-thinks-amd-may-finally-beat-intel",
"title": "Tom thinks AMD may finally beat Intel"
},
{
"url": "https://news.slashdot.org/story/98/10/16/1020232/huge-technical-research-paper-archive",
"title": "Huge Technical Research Paper Archive"
},
{
"url": "https://tech.slashdot.org/story/98/10/16/1016255/the-ultimate-workstation",
"title": "The Ultimate Workstation?"
},
{
"url": "https://news.slashdot.org/story/98/10/16/1012242/why-girls-dislike-technology",
"title": "Why girls dislike technology"
},
{
"url": "https://slashdot.org/story/98/10/16/106240/ugandan-rats-eat-wiring-students-lose-grades",
"title": "Ugandan Rats Eat Wiring, Students Lose Grades"
},
{
"url": "https://linux.slashdot.org/story/98/10/16/007243/new-bitkeeper-software-to-help-linus",
"title": "New BitKeeper software to help Linus"
},
{
"url": "https://tech.slashdot.org/story/98/10/15/2318222/netscape-pulls-in-front-in-corporate-market",
"title": "Netscape pulls in front in corporate market"
},
{
"url": "https://ask.slashdot.org/story/98/10/15/2026210/linux-in-japanese",
"title": "Linux in Japanese?"
},
{
"url": "https://ask.slashdot.org/story/98/10/15/2022219/workstation-recommendations-anyone",
"title": "Workstation Recommendations, Anyone?"
},
{
"url": "https://ask.slashdot.org/story/98/10/15/2012228/weird-fat32-partition-types",
"title": "Weird FAT32 Partition Types"
},
{
"url": "https://ask.slashdot.org/story/98/10/15/1958238/postscript-printing-with-canonbjc620s",
"title": "Postscript Printing with CanonBJC620s"
},
{
"url": "https://ask.slashdot.org/story/98/10/15/1949230/castelle-print-server-woes",
"title": "Castelle Print Server Woes"
},
{
"url": "https://ask.slashdot.org/story/98/10/15/1742220/ask-slashdot-unix-business-accounting-programs",
"title": "Ask Slashdot: Unix Business Accounting Programs?"
},
{
"url": "https://slashdot.org/story/98/10/15/1520254/initio-violating-the-gpl",
"title": "Initio Violating the GPL?"
},
{
"url": "https://science.slashdot.org/story/98/10/15/1437257/brain-implants-control-computers",
"title": "Brain Implants Control Computers"
},
{
"url": "https://linux.slashdot.org/story/98/10/15/1237216/staroffice-50-for-linux-soon",
"title": "StarOffice 5.0 for Linux Soon"
},
{
"url": "https://slashdot.org/story/98/10/15/1045208/ibm-beefs-up-apache-package",
"title": "IBM beefs up Apache package"
},
{
"url": "https://tech.slashdot.org/story/98/10/15/1041237/powerpc-g4-information",
"title": "PowerPC G4 Information"
},
{
"url": "https://linux.slashdot.org/story/98/10/15/1032244/abcnewscom-talks-linux",
"title": "ABCNews.com talks Linux"
},
{
"url": "https://news.slashdot.org/story/98/10/15/1022240/whats-that-jobs-link",
"title": "What's that 'Jobs' Link?"
},
{
"url": "https://news.slashdot.org/story/98/10/15/1011208/call-for-papers",
"title": "Call For Papers"
},
{
"url": "https://linux.slashdot.org/story/98/10/15/0948251/debian-21-feature-freeze-tonight",
"title": "Debian 2.1 Feature Freeze Tonight"
},
{
"url": "https://tech.slashdot.org/story/98/10/15/0122216/hp-to-embed-epic-and-more-amd-details",
"title": "HP to embed EPIC and more AMD details"
},
{
"url": "https://tech.slashdot.org/story/98/10/15/0053247/cyrix-next-generation",
"title": "Cyrix' next generation"
},
{
"url": "https://slashdot.org/story/98/10/15/003250/microsoft-spasms",
"title": "Microsoft spasms"
},
{
"url": "https://linux.slashdot.org/story/98/10/14/2344233/compaq-to-offer-linux-support",
"title": "Compaq to offer Linux support"
},
{
"url": "https://slashdot.org/story/98/10/14/2038201/intel-details-merced-chip",
"title": "Intel details Merced chip"
},
{
"url": "https://slashdot.org/story/98/10/14/1725253/nt-gets-facelift-with--unix",
"title": "NT gets facelift with ... Unix"
},
{
"url": "https://tech.slashdot.org/story/98/10/14/178238/netscape-might-not-put-suns-jvm-on-mozilla",
"title": "Netscape might not put Sun's JVM on Mozilla"
},
{
"url": "https://hardware.slashdot.org/story/98/10/14/1443249/oreilly-needs-palm-pilot-unix-people",
"title": "O'Reilly needs Palm Pilot UNIX People"
},
{
"url": "https://slashdot.org/story/98/10/14/1127224/colgate-goes-after-ajaxorg",
"title": "Colgate Goes After Ajax.org"
},
{
"url": "https://slashdot.org/story/98/10/14/1117202/south-park-meets-babylon-5",
"title": "South Park meets Babylon 5"
},
{
"url": "https://slashdot.org/story/98/10/14/118244/microsoft-cites-linux-in-doj-defense",
"title": "Microsoft Cites Linux in DOJ Defense?"
},
{
"url": "https://apple.slashdot.org/story/98/10/14/111244/apple--linux--perfection",
"title": "Apple + Linux = Perfection"
},
{
"url": "https://slashdot.org/story/98/10/14/0823254/expensive-certified-e-mail",
"title": "Expensive Certified E-Mail"
},
{
"url": "https://linux.slashdot.org/story/98/10/14/0821249/suse-shipment-of-linux-office-suite-99-delayed",
"title": "SUSE: Shipment of Linux Office Suite 99 Delayed"
},
{
"url": "https://science.slashdot.org/story/98/10/14/0818232/new-technologies--coming-soon",
"title": "New Technologies--Coming Soon"
},
{
"url": "https://linux.slashdot.org/story/98/10/14/088212/lsa-domains-on-hold-web-sites-vanish-film-at-11",
"title": "LSA domains On Hold; web sites vanish; film at 11"
},
{
"url": "https://slashdot.org/story/98/10/13/2233216/humour-quickies",
"title": "Humour Quickies"
},
{
"url": "https://slashdot.org/story/98/10/13/2210228/big-brother-lives-in-your-webtv",
"title": "Big Brother lives in your WebTV"
},
{
"url": "https://news.slashdot.org/story/98/10/13/2128258/slashdot-notes",
"title": "Slashdot Notes"
},
{
"url": "https://slashdot.org/story/98/10/13/1926258/ibm-and-samsung-to-supply-compaq-with-alphas",
"title": "IBM and Samsung to supply Compaq with Alphas"
},
{
"url": "https://tech.slashdot.org/story/98/10/13/169233/more-amd-k7-details",
"title": "More AMD K7 details"
},
{
"url": "https://bsd.slashdot.org/story/98/10/13/1520219/the-irish-times-likes-free-unix",
"title": "The Irish Times likes Free Unix"
},
{
"url": "https://slashdot.org/story/98/10/13/1448255/novell-directory-services-for-linux",
"title": "Novell Directory Services for Linux"
},
{
"url": "https://news.slashdot.org/story/98/10/13/1423253/featurecathedrals-bazaars-and-the-town-council",
"title": "Feature:Cathedrals, Bazaars and the Town Council"
},
{
"url": "https://tech.slashdot.org/story/98/10/13/1252206/rise-announces-3-way-superscalar-x86",
"title": "Rise announces 3-way superscalar x86"
},
{
"url": "https://slashdot.org/story/98/10/13/1032239/real-silicon-artwork",
"title": "Real Silicon Artwork"
},
{
"url": "https://games.slashdot.org/story/98/10/13/1025235/awesome-quake-arena-pictures",
"title": "Awesome Quake Arena Pictures"
},
{
"url": "https://slashdot.org/story/98/10/13/1014245/new-root-nameservers",
"title": "New Root Nameservers"
},
{
"url": "https://tech.slashdot.org/story/98/10/13/109241/browsing-by-phone",
"title": "Browsing by Phone"
},
{
"url": "https://news.slashdot.org/story/98/10/13/0956219/larry-wall-in-salon",
"title": "Larry Wall in Salon"
},
{
"url": "https://tech.slashdot.org/story/98/10/13/0137227/themesorg-poll--new-theme",
"title": "themes.org: Poll + New theme"
},
{
"url": "https://yro.slashdot.org/story/98/10/12/1541221/fbi-wants-to-wiretap-phones-without-court-order",
"title": "FBI wants to wiretap phones without court order"
},
{
"url": "https://news.slashdot.org/story/98/10/12/1535230/slashdot-mentioned-in-british-national-newspaper",
"title": "Slashdot mentioned in British national newspaper"
},
{
"url": "https://tech.slashdot.org/story/98/10/12/1530209/gnome-and-inprise-on-techweb",
"title": "GNOME and Inprise on Techweb"
},
{
"url": "https://slashdot.org/story/98/10/12/1519258/leaked-confident-microsoft-memo",
"title": "Leaked confident Microsoft memo"
},
{
"url": "https://tech.slashdot.org/story/98/10/12/1439217/beta-x-server-for-tnt-available",
"title": "Beta X-server for TNT available!"
},
{
"url": "https://slashdot.org/story/98/10/12/1348228/rms-and-red-hat",
"title": "RMS and Red Hat"
},
{
"url": "https://linux.slashdot.org/story/98/10/12/1135214/debian-boots-on-netwinders",
"title": "Debian Boots on NetWinders"
},
{
"url": "https://books.slashdot.org/story/98/10/12/0839201/the-deadline",
"title": "The Deadline"
},
{
"url": "https://linux.slashdot.org/story/98/10/12/0824257/linux-cold-fusion-interest",
"title": "Linux-Cold Fusion Interest"
},
{
"url": "https://hardware.slashdot.org/story/98/10/12/082217/oracle-lite-for-the-pilot",
"title": "Oracle Lite for the Pilot?"
},
{
"url": "https://linux.slashdot.org/story/98/10/12/0746217/cool-linux-clusters",
"title": "Cool Linux Clusters"
},
{
"url": "https://linux.slashdot.org/story/98/10/11/1927200/linus-suffers-ego-burp",
"title": "Linus suffers ego-burp"
},
{
"url": "https://slashdot.org/story/98/10/11/1750248/weapons-of-war",
"title": "Weapons of War?"
},
{
"url": "https://linux.slashdot.org/story/98/10/11/1521259/linux-and-intel-implications",
"title": "Linux and Intel: implications?"
},
{
"url": "https://hardware.slashdot.org/story/98/10/11/1056201/clear-palm-iii-cases-and-universal-remotes",
"title": "Clear Palm III Cases and Universal Remotes"
},
{
"url": "https://linux.slashdot.org/story/98/10/11/0349216/russian-linux-users-need-help",
"title": "Russian Linux users need help"
},
{
"url": "https://slashdot.org/story/98/10/11/0327233/geek-oppression-site",
"title": "Geek Oppression Site"
},
{
"url": "https://slashdot.org/story/98/10/11/0316201/electric-goes-gnu-",
"title": "Electric goes GNU ..."
},
{
"url": "https://slashdot.org/story/98/10/11/0247217/free-software-award",
"title": "Free Software Award"
},
{
"url": "https://tech.slashdot.org/story/98/10/11/0059241/themesorg-quickies",
"title": "Themes.org quickies"
},
{
"url": "https://news.slashdot.org/story/98/10/10/2018206/a-comment-about-content",
"title": "A Comment About Content"
},
{
"url": "https://news.slashdot.org/story/98/10/10/1845220/apache-133-bugfix-release-available",
"title": "Apache 1.3.3 Bugfix Release Available"
},
{
"url": "https://news.slashdot.org/story/98/10/10/1835207/weekend-quickies",
"title": "Weekend Quickies"
},
{
"url": "https://tech.slashdot.org/story/98/10/10/1649256/prontolcd-programmable-universal-remote",
"title": "Pronto:LCD Programmable universal Remote"
},
{
"url": "https://linux.slashdot.org/story/98/10/10/1643253/wheres-22-pool",
"title": "Where's 2.2 Pool"
},
{
"url": "https://linux.slashdot.org/story/98/10/10/1615210/als-speaker-schedule",
"title": "ALS speaker schedule"
},
{
"url": "https://ask.slashdot.org/story/98/10/10/1412226/ask-slashdot-laptop-quickies",
"title": "Ask Slashdot: Laptop Quickies"
},
{
"url": "https://linux.slashdot.org/story/98/10/10/1410229/cold-fusion-and-teradata-next-for-linux",
"title": "Cold Fusion and Teradata next for Linux?"
},
{
"url": "https://slashdot.org/story/98/10/10/141247/h1-technology-visa-news---our-govt-messes-up-again",
"title": "H1 Technology Visa News - our govt messes up again"
},
{
"url": "https://ask.slashdot.org/story/98/10/10/1347257/firewalls-for-linux",
"title": "Firewalls for Linux"
},
{
"url": "https://ask.slashdot.org/story/98/10/10/1342228/windows-linux-porting-tools",
"title": "Windows->Linux Porting Tools?"
},
{
"url": "https://linux.slashdot.org/story/98/10/10/1341224/suse-preferred-in-germany",
"title": "SuSE preferred in Germany"
},
{
"url": "https://linux.slashdot.org/story/98/10/10/1149259/fred-langa-takes-the-linux-plunge",
"title": "Fred Langa takes the Linux plunge"
},
{
"url": "https://news.slashdot.org/story/98/10/10/1134254/diamond-sued-over-portable-mp3-player",
"title": "Diamond sued over portable MP3 player"
},
{
"url": "https://slashdot.org/story/98/10/09/1715233/linux-press-drinking-game",
"title": "Linux Press Drinking Game"
},
{
"url": "https://slashdot.org/story/98/10/09/1629249/hayes-declares-bankruptcy",
"title": "Hayes declares bankruptcy"
},
{
"url": "https://news.slashdot.org/story/98/10/09/1341256/congress-nears-digital-copyright-law",
"title": "Congress Nears Digital Copyright Law"
},
{
"url": "https://linux.slashdot.org/story/98/10/09/1127241/linux-support-for-the-mpman-portable-mp3-player",
"title": "Linux support for the MPMan portable MP3 player"
},
{
"url": "https://tech.slashdot.org/story/98/10/09/1115236/1280-x-1024-heads-up-display",
"title": "1280 x 1024 Heads-Up Display"
},
{
"url": "https://tech.slashdot.org/story/98/10/09/1052251/more-wireless-internet-connections",
"title": "More wireless Internet connections"
},
{
"url": "https://linux.slashdot.org/story/98/10/09/1045232/linux-21125-released",
"title": "Linux 2.1.125 Released"
},
{
"url": "https://linux.slashdot.org/story/98/10/09/0013218/oracle-to-distribute-linux",
"title": "Oracle to distribute Linux"
},
{
"url": "https://slashdot.org/story/98/10/08/236207/another-company-ports-applications-to-linux",
"title": "Another company ports applications to Linux"
},
{
"url": "https://games.slashdot.org/story/98/10/08/2258231/interview-with-sin-creator-about-linux-sin",
"title": "Interview with SIN creator about linux SIN"
},
{
"url": "https://slashdot.org/story/98/10/08/2235239/no-notes-for-linux-yet",
"title": "No Notes for Linux yet"
},
{
"url": "https://news.slashdot.org/story/98/10/08/2129208/linux-on-yahoos-front-page",
"title": "Linux on Yahoo!'s front page"
},
{
"url": "https://slashdot.org/story/98/10/08/2111233/microsoft-denied-use-of-tapes",
"title": "Microsoft denied use of tapes"
},
{
"url": "https://slashdot.org/story/98/10/08/165237/free-internet",
"title": "Free Internet"
},
{
"url": "https://features.slashdot.org/story/98/10/08/1520242/debians-stance-on-kde",
"title": "Debian's stance on KDE"
},
{
"url": "https://slashdot.org/story/98/10/08/1220227/ny-times-looks-at-ms-business-practices",
"title": "NY-Times Looks at MS business-practices"
},
{
"url": "https://tech.slashdot.org/story/98/10/08/1219209/palmtop-in-a-pen",
"title": "Palmtop in a Pen"
},
{
"url": "https://tech.slashdot.org/story/98/10/08/1216217/amd-returns-to-profibility",
"title": "AMD Returns to Profibility"
},
{
"url": "https://linux.slashdot.org/story/98/10/08/127259/applix-released-applixware-441-for-linux",
"title": "Applix Released Applixware 4.4.1 for Linux"
},
{
"url": "https://it.slashdot.org/story/98/10/08/0658250/son-of-cache-cow",
"title": "Son of Cache Cow"
},
{
"url": "https://news.slashdot.org/story/98/10/08/0645202/reviewantarctica",
"title": "Review:Antarctica"
},
{
"url": "https://slashdot.org/story/98/10/08/0642234/cnn-on-open-sourcefreeware",
"title": "CNN on Open Source/Freeware"
},
{
"url": "https://tech.slashdot.org/story/98/10/08/0222221/new-book-on-amd-k6-2-design",
"title": "New book on AMD K6-2 design"
},
{
"url": "https://slashdot.org/story/98/10/08/023218/intel-x86-to-run-at-1ghz-in-2000",
"title": "Intel x86 to run at 1Ghz in 2000"
},
{
"url": "https://slashdot.org/story/98/10/08/021240/hp-endorses-strongarm-and-arm",
"title": "HP endorses StrongARM and ARM"
},
{
"url": "https://linux.slashdot.org/story/98/10/08/0135239/gateway-uses-linux-for-certification-tests",
"title": "Gateway uses Linux for certification tests"
},
{
"url": "https://slashdot.org/story/98/10/07/2159253/silicon-valley-talent-souring",
"title": "Silicon Valley Talent Souring"
},
{
"url": "https://slashdot.org/story/98/10/07/2158217/house-passes-net-content-bill",
"title": "House passes Net content Bill"
},
{
"url": "https://slashdot.org/story/98/10/07/1552237/fltk-news-update",
"title": "FLTK News Update"
},
{
"url": "https://tech.slashdot.org/story/98/10/07/1350211/centaur-opts-for-integrated-strategy",
"title": "Centaur opts for integrated strategy"
},
{
"url": "https://slashdot.org/story/98/10/07/1032247/clinton-declares-war-on-software-pirates",
"title": "Clinton Declares War on Software Pirates"
},
{
"url": "https://news.slashdot.org/story/98/10/07/1025228/399-pcs",
"title": "$399 PCs"
},
{
"url": "https://linux.slashdot.org/story/98/10/07/1012249/linclinuxworldexpo",
"title": "LINC/LinuxWorldExpo"
},
{
"url": "https://slashdot.org/story/98/10/07/109255/nsi-retains-domain-control",
"title": "NSI Retains Domain Control"
},
{
"url": "https://slashdot.org/story/98/10/07/0123215/this-is-only-a-test",
"title": "This is only a test"
},
{
"url": "https://news.slashdot.org/story/98/10/06/2258221/atari-arcade-games-to-use-x86",
"title": "Atari Arcade games to use x86!"
},
{
"url": "https://news.slashdot.org/story/98/10/06/2150242/windows-irc-trojan-horse",
"title": "Windows IRC Trojan Horse"
},
{
"url": "https://slashdot.org/story/98/10/06/1931211/sun-java-processor-scrapped",
"title": "Sun Java Processor scrapped?"
},
{
"url": "https://linux.slashdot.org/story/98/10/06/1746251/linuxworld-conference-expo",
"title": "LinuxWorld Conference & Expo"
},
{
"url": "https://slashdot.org/story/98/10/06/1629220/german-net-boycott-day",
"title": "German Net Boycott day"
},
{
"url": "https://slashdot.org/story/98/10/06/1556212/next-generation-alpha-chip",
"title": "Next generation Alpha chip"
},
{
"url": "https://science.slashdot.org/story/98/10/06/1540201/satellites-brace-for-meteor-shower",
"title": "Satellites Brace for Meteor Shower"
},
{
"url": "https://bsd.slashdot.org/story/98/10/06/1519223/big-servers-look-boring",
"title": "Big Servers look Boring"
},
{
"url": "https://ask.slashdot.org/story/98/10/06/1236259/tools-for-managing-large-mp3-libraries",
"title": "Tools for Managing Large MP3 Libraries?"
},
{
"url": "https://slashdot.org/story/98/10/06/1217208/lycos-buys-wired-digital",
"title": "Lycos buys Wired Digital"
},
{
"url": "https://features.slashdot.org/story/98/10/06/125237/and-now-microsoft-presentsa-phone",
"title": "And now Microsoft presents....A phone"
},
{
"url": "https://linux.slashdot.org/story/98/10/06/101231/batch-of-linux-articles",
"title": "Batch of Linux Articles"
},
{
"url": "https://linux.slashdot.org/story/98/10/06/0945216/national-french-installfest",
"title": "National French InstallFest"
},
{
"url": "https://linux.slashdot.org/story/98/10/06/0940202/als-keynote-speakers",
"title": "ALS Keynote Speakers"
},
{
"url": "https://it.slashdot.org/story/98/10/06/0937236/oreilly-book-on-spam",
"title": "O'Reilly book on Spam"
},
{
"url": "https://slashdot.org/story/98/10/05/1814222/my-left-hand",
"title": "my left hand..."
},
{
"url": "https://slashdot.org/story/98/10/05/1633227/bill-gates-a-self-made-man",
"title": "Bill Gates: a self made man?"
},
{
"url": "https://news.slashdot.org/story/98/10/05/1612245/new-england-expo-features-alternative-computing",
"title": "New England Expo Features Alternative Computing"
},
{
"url": "https://news.slashdot.org/story/98/10/05/1559237/new-faster-better-teddy-ruxpin",
"title": "New, Faster, Better Teddy Ruxpin"
},
{
"url": "https://slashdot.org/story/98/10/05/1558211/ibm-os2-strategy",
"title": "IBM OS/2 strategy"
},
{
"url": "https://slashdot.org/story/98/10/05/1546213/ibm-graphic-workstations",
"title": "IBM Graphic Workstations"
},
{
"url": "https://apple.slashdot.org/story/98/10/05/1539249/macos-runtime-environment-in-devt-for-linux",
"title": "MacOS runtime environment in devt for Linux"
},
{
"url": "https://news.slashdot.org/story/98/10/05/1326209/compaq-considering-linux",
"title": "Compaq Considering Linux"
},
{
"url": "https://tech.slashdot.org/story/98/10/05/1310203/a-pci-atari",
"title": "A PCI Atari"
},
{
"url": "https://linux.slashdot.org/story/98/10/05/1135205/pcweek-opinion-article-on-linux",
"title": "PCWeek Opinion Article on Linux"
},
{
"url": "https://books.slashdot.org/story/98/10/05/1118213/built-to-last",
"title": "Built to Last"
},
{
"url": "https://slashdot.org/story/98/10/05/1042223/caldera-splits",
"title": "Caldera Splits"
},
{
"url": "https://tech.slashdot.org/story/98/10/05/1037201/a-kernel-from-mit",
"title": "A Kernel from MIT"
},
{
"url": "https://slashdot.org/story/98/10/04/2211242/rms-on-udi-and-the-fsf",
"title": "RMS on UDI and the FSF"
},
{
"url": "https://linux.slashdot.org/story/98/10/04/2138258/infoworld-takes-a-look-at-oracle-for-linux",
"title": "Infoworld takes a look at Oracle for Linux"
},
{
"url": "https://linux.slashdot.org/story/98/10/04/2132231/linux-21124-released",
"title": "Linux 2.1.124 Released"
},
{
"url": "https://news.slashdot.org/story/98/10/04/2126205/netscape-communicator-407",
"title": "Netscape Communicator 4.07"
},
{
"url": "https://apple.slashdot.org/story/98/10/04/2121249/browser-based-macos",
"title": "Browser-based MacOS"
},
{
"url": "https://news.slashdot.org/story/98/10/04/1624223/ironic-linux-solutions",
"title": "Ironic Linux Solutions"
},
{
"url": "https://slashdot.org/story/98/10/03/2054214/ultimate-video-games",
"title": "Ultimate Video Games"
},
{
"url": "https://news.slashdot.org/story/98/10/03/1053205/movie-reviewantz",
"title": "Movie Review:Antz"
},
{
"url": "https://slashdot.org/story/98/10/03/1025232/intels-andy-groves-comments-on-wintel",
"title": "Intel's Andy Groves comments on Wintel"
},
{
"url": "https://tech.slashdot.org/story/98/10/03/1022230/mozilla-gets-custom-chrome",
"title": "Mozilla Gets Custom Chrome"
},
{
"url": "https://slashdot.org/story/98/10/03/0957253/beos-adopts-elfegcs",
"title": "BeOS adopts ELF/EGCS"
},
{
"url": "https://slashdot.org/story/98/10/02/2229225/intel-dominance-vastly-reduced",
"title": "Intel dominance vastly reduced"
},
{
"url": "https://news.slashdot.org/story/98/10/02/2124232/friday-night-quickies-and-misc-slashdot-notes",
"title": "Friday Night Quickies (and misc. Slashdot notes)"
},
{
"url": "https://ask.slashdot.org/story/98/10/02/2010218/assitance-w-linux-and-the-roadrunner-cable-service",
"title": "Assitance w/ Linux and the RoadRunner Cable Service."
},
{
"url": "https://ask.slashdot.org/story/98/10/02/206230/pop3-and-large-mail-boxes",
"title": "POP3 and Large Mail Boxes."
},
{
"url": "https://ask.slashdot.org/story/98/10/02/1754210/will-the-c6-winchip-work-for-linux-andor-beos",
"title": "Will the C6 Winchip work for Linux and/or BeOS?"
},
{
"url": "https://linux.slashdot.org/story/98/10/02/1742217/ask-slashdot-linux-in-the-corporate-workplace",
"title": "Ask Slashdot: Linux in the Corporate Workplace?"
},
{
"url": "https://ask.slashdot.org/story/98/10/02/1729257/outlook-like-apps-for-linux",
"title": "Outlook-like apps for Linux?"
},
{
"url": "https://linux.slashdot.org/story/98/10/02/1633221/talking-linus",
"title": "Talking Linus"
},
{
"url": "https://slashdot.org/story/98/10/02/1611256/yet-another-outrageous-us-patent",
"title": "Yet Another Outrageous US Patent"
},
{
"url": "https://linux.slashdot.org/story/98/10/02/1551242/metrowerks-announces-codewarrior-tools-for-linux",
"title": "Metrowerks announces CodeWarrior Tools for Linux"
},
{
"url": "https://linux.slashdot.org/story/98/10/02/1542218/redhat-not-to-gain-advantage-from-intel-info",
"title": "Redhat not to gain advantage from Intel info"
},
{
"url": "https://slashdot.org/story/98/10/02/1514257/more-investments-to-come",
"title": "More Investments to come"
},
{
"url": "https://tech.slashdot.org/story/98/10/02/1420253/the-registers-ruminations-on-the-615",
"title": "The Register's ruminations on the 615"
},
{
"url": "https://linux.slashdot.org/story/98/10/02/1342243/linux-gazette-the-proper-image-for-linux",
"title": "Linux Gazette: The Proper Image for Linux"
},
{
"url": "https://tech.slashdot.org/story/98/10/02/1336232/hdtv-on-nov-8-on-cbs",
"title": "HDTV on Nov. 8 on CBS"
},
{
"url": "https://tech.slashdot.org/story/98/10/02/1329220/new-x-server-from-suse",
"title": "New X server from S.u.S.E"
},
{
"url": "https://linux.slashdot.org/story/98/10/02/1215224/featuremore-on-red-hatintelnetscape",
"title": "Feature:More on Red Hat/Intel/Netscape"
},
{
"url": "https://it.slashdot.org/story/98/10/02/0931259/canada-keeps-crypto-loose",
"title": "Canada Keeps Crypto Loose"
},
{
"url": "https://tech.slashdot.org/story/98/10/02/0930221/amiga-os-creator-releases-programming-language",
"title": "Amiga OS Creator Releases Programming Language"
},
{
"url": "https://science.slashdot.org/story/98/10/02/0922242/what-does-guinness-look-like-under-a-microscope",
"title": "What does Guinness look like under a Microscope?"
},
{
"url": "https://slashdot.org/story/98/10/02/0841251/update-to-tax-free-net-bill",
"title": "Update to Tax Free Net Bill"
},
{
"url": "https://slashdot.org/story/98/10/01/1145234/internet-2",
"title": "Internet 2"
},
{
"url": "https://tech.slashdot.org/story/98/10/01/1054231/gnome-cvs-snapshots-for-debian",
"title": "Gnome CVS Snapshots for Debian?"
},
{
"url": "https://tech.slashdot.org/story/98/10/01/1022208/mozilla-gets-java-support",
"title": "Mozilla Gets Java Support"
},
{
"url": "https://linux.slashdot.org/story/98/10/01/1020211/no-more-cde-from-redhat",
"title": "No more CDE from RedHat"
},
{
"url": "https://linux.slashdot.org/story/98/10/01/106232/red-hat-report-from-ispcon",
"title": "Red Hat Report from ISPCON"
},
{
"url": "https://linux.slashdot.org/story/98/10/01/0955218/linuxworld-online",
"title": "LinuxWorld Online"
},
{
"url": "https://slashdot.org/story/98/10/01/0848207/senate-considering-tax-free-net-bill",
"title": "Senate considering Tax-Free Net Bill"
},
{
"url": "https://slashdot.org/story/98/10/01/0838219/user-friendly-book",
"title": "User Friendly Book?"
},
{
"url": "https://tech.slashdot.org/story/98/10/01/0836245/30-screen-eyewear",
"title": "30\" Screen Eyewear"
},
{
"url": "https://slashdot.org/story/98/10/01/0653252/microsoft-publishing-dictionary",
"title": "Microsoft Publishing Dictionary"
},
{
"url": "https://ask.slashdot.org/story/98/09/30/2152244/xfree86-and-pthreads",
"title": "XFree86 and Pthreads?"
},
{
"url": "https://ask.slashdot.org/story/98/09/30/2140258/ask-slashdot-cryptography-and-digital-signatures",
"title": "Ask Slashdot: Cryptography and Digital Signatures"
},
{
"url": "https://ask.slashdot.org/story/98/09/30/2126236/development-for-high-end-processors-wo-hardware-emulation",
"title": "Development for High End Processors w/o Hardware Emulation"
},
{
"url": "https://science.slashdot.org/story/98/09/30/1819244/new-type-of-star",
"title": "New Type of Star"
},
{
"url": "https://news.slashdot.org/story/98/09/30/186204/mci-worldcom-exec-on-linux",
"title": "MCI WorldCom Exec On Linux"
},
{
"url": "https://tech.slashdot.org/story/98/09/30/156250/gnome-030-part-3",
"title": "GNOME 0.30, part 3"
},
{
"url": "https://it.slashdot.org/story/98/09/30/1429227/investigating-echelon",
"title": "Investigating Echelon"
},
{
"url": "https://tech.slashdot.org/story/98/09/30/1334258/transmeta-has-615-guys",
"title": "Transmeta has 615 guys"
},
{
"url": "https://tech.slashdot.org/story/98/09/30/1223251/katmai-outgunned-by-altivec",
"title": "Katmai outgunned by AltiVec"
},
{
"url": "https://slashdot.org/story/98/09/30/0943202/nsi-contract-extended-1-week",
"title": "NSI contract extended 1 week"
},
{
"url": "https://tech.slashdot.org/story/98/09/30/0211207/another-mp3-encoder-for-linux",
"title": "another mp3 encoder for Linux"
},
{
"url": "https://slashdot.org/story/98/09/30/0147208/digitalcompaq-ship-servers-with-apache",
"title": "DIGITAL/Compaq Ship Servers With Apache"
},
{
"url": "https://tech.slashdot.org/story/98/09/30/0131221/fltk-licensing-change-explained",
"title": "FLTK licensing change explained"
},
{
"url": "https://linux.slashdot.org/story/98/09/30/015237/microsoft-says-it-does-not-get-it",
"title": "Microsoft says it does not get it"
},
{
"url": "https://linux.slashdot.org/story/98/09/30/0047220/red-hat-to-put-investments-into-building-support",
"title": "Red Hat to put investments into building support"
},
{
"url": "https://tech.slashdot.org/story/98/09/29/1750203/avalon-upgraded-to-140-processors",
"title": "Avalon Upgraded to 140 Processors"
},
{
"url": "https://news.slashdot.org/story/98/09/29/1745239/distribunetnet-optimal-golomb-rulers",
"title": "Distribunet.Net Optimal Golomb Rulers"
},
{
"url": "https://linux.slashdot.org/story/98/09/29/1735216/linux-for-ultrasparc",
"title": "Linux for UltraSPARC"
},
{
"url": "https://tech.slashdot.org/story/98/09/29/1730203/another-cool-flat-screen",
"title": "Another Cool Flat Screen"
},
{
"url": "https://linux.slashdot.org/story/98/09/29/1646234/confirmedintel-and-netscape-investing-in-red-hat",
"title": "Confirmed:Intel and Netscape Investing in Red Hat"
},
{
"url": "https://linux.slashdot.org/story/98/09/29/1640219/informix-now-solidly-behind-linux",
"title": "Informix now solidly behind Linux"
},
{
"url": "https://science.slashdot.org/story/98/09/29/1520238/pollution-eating-trees",
"title": "Pollution Eating Trees"
},
{
"url": "https://slashdot.org/story/98/09/29/1126252/internal-layout-of-merced",
"title": "Internal layout of Merced"
},
{
"url": "https://slashdot.org/story/98/09/29/1121259/things-i-cant-do-without-my-x-key",
"title": "things I can't do without my x key"
},
{
"url": "https://tech.slashdot.org/story/98/09/29/1037223/netscapes-slipping-market-share",
"title": "Netscape's slipping market share"
},
{
"url": "https://news.slashdot.org/story/98/09/29/1010233/opencontent-gets-content-database",
"title": "OpenContent Gets Content Database"
},
{
"url": "https://tech.slashdot.org/story/98/09/29/103240/entertaining-html-testing",
"title": "Entertaining HTML Testing"
},
{
"url": "https://slashdot.org/story/98/09/29/0953255/caldera-openlinux-13-released",
"title": "Caldera OpenLinux 1.3 Released"
},
{
"url": "https://news.slashdot.org/story/98/09/29/0952215/ms-cites-caldera-for-contempt-of-court",
"title": "MS cites Caldera for contempt of court"
},
{
"url": "https://slashdot.org/story/98/09/28/2121211/repostaol-and-real",
"title": "Repost:AOL and Real"
},
{
"url": "https://slashdot.org/story/98/09/28/2058225/adventures-with-caller-id",
"title": "adventures with caller id"
},
{
"url": "https://news.slashdot.org/story/98/09/28/1947215/blender-manual-in-print",
"title": "Blender Manual in print"
},
{
"url": "https://ask.slashdot.org/story/98/09/28/1854220/ask-slashdot-apaches-ability-to-scale",
"title": "Ask Slashdot: Apache's Ability to Scale"
},
{
"url": "https://ask.slashdot.org/story/98/09/28/1848235/firewall-forwarding-fun-not",
"title": "Firewall Forwarding Fun (not!)"
},
{
"url": "https://tech.slashdot.org/story/98/09/28/1426223/linus-reshapes-transmeta",
"title": "Linus reshapes Transmeta"
},
{
"url": "https://news.slashdot.org/story/98/09/28/1130214/cygnus-introduces-real-time-open-source-os",
"title": "Cygnus Introduces Real Time Open Source OS"
},
{
"url": "https://tech.slashdot.org/story/98/09/28/1117229/cheap-6-active-matrix-lcd",
"title": "Cheap 6\" Active Matrix LCD"
},
{
"url": "https://news.slashdot.org/story/98/09/28/117208/gimp-101-and-linux-21123",
"title": "GIMP 1.0.1 And Linux 2.1.123"
},
{
"url": "https://linux.slashdot.org/story/98/09/28/1058214/als-slashdot-freshmeat-and-themesorg",
"title": "ALS, Slashdot, Freshmeat and Themes.org"
},
{
"url": "https://linux.slashdot.org/story/98/09/28/1058201/zdnets-berst-on-linux",
"title": "ZDNet's Berst on Linux"
},
{
"url": "https://tech.slashdot.org/story/98/09/28/0931256/chip-design-reuse-will-be-needed",
"title": "Chip Design Reuse will be Needed"
},
{
"url": "https://linux.slashdot.org/story/98/09/28/0813232/ny-times-on-linux",
"title": "NY Times on Linux"
},
{
"url": "https://books.slashdot.org/story/98/09/28/087210/reviewuml-distilled",
"title": "Review:UML Distilled"
},
{
"url": "https://ask.slashdot.org/story/98/09/27/1917228/modem-reset-problems",
"title": "Modem Reset Problems"
},
{
"url": "https://tech.slashdot.org/story/98/09/27/1847255/gnucash-gnome-banking-software",
"title": "GNUCash: GNOME banking software"
},
{
"url": "https://ask.slashdot.org/story/98/09/27/1832249/best-filesystem-to-use-when-moving-hds-between-unix-boxen",
"title": "Best Filesystem to Use When Moving HDs Between Unix Boxen?"
},
{
"url": "https://ask.slashdot.org/story/98/09/27/1829232/smart-drugs-anyone",
"title": "Smart Drugs, Anyone?"
},
{
"url": "https://linux.slashdot.org/story/98/09/27/1819257/ask-slashdot-is-there-a-good-sound-library-for-linux",
"title": "Ask Slashdot: Is There a Good Sound Library for Linux?"
},
{
"url": "https://slashdot.org/story/98/09/27/1657247/microsoft-should-be-ashamed",
"title": "Microsoft should be ashamed"
},
{
"url": "https://linux.slashdot.org/story/98/09/27/1657243/phds-transmeta-has-hired",
"title": "Ph.D's Transmeta has hired"
},
{
"url": "https://news.slashdot.org/story/98/09/27/127231/star-wars-episode-1-title",
"title": "Star Wars Episode 1 Title"
},
{
"url": "https://tech.slashdot.org/story/98/09/27/122212/window-maker-name-change",
"title": "Window Maker name change"
},
{
"url": "https://slashdot.org/story/98/09/27/1159203/a-consumers-homepage-against-gte",
"title": "A Consumer's homepage against GTE"
},
{
"url": "https://slashdot.org/story/98/09/27/1156201/bunny-survival-tests",
"title": "Bunny Survival Tests"
},
{
"url": "https://tech.slashdot.org/story/98/09/26/1956233/transmeta-to-use-ibm-fabs",
"title": "Transmeta to use IBM fabs"
},
{
"url": "https://tech.slashdot.org/story/98/09/26/189246/themesorg-update",
"title": "Themes.org Update"
},
{
"url": "https://tech.slashdot.org/story/98/09/26/1334206/fltk-goes-private-with-little-explanation",
"title": "Fltk goes private with little explanation"
},
{
"url": "https://developers.slashdot.org/story/98/09/26/1255217/metrowerks-license-for-linux",
"title": "Metrowerks License for linux"
},
{
"url": "https://tech.slashdot.org/story/98/09/26/1218246/xbf-xig-and-linux",
"title": "XBF, XIG and Linux"
},
{
"url": "https://linux.slashdot.org/story/98/09/26/1032256/cnet-on-nt5-vs-rh51",
"title": "C|Net on NT5 vs RH5.1"
},
{
"url": "https://apple.slashdot.org/story/98/09/26/1029244/andy-grove-loves-his-imac",
"title": "Andy Grove Loves His iMac"
},
{
"url": "https://news.slashdot.org/story/98/09/26/1026224/cringely-on-linux-again",
"title": "Cringely on Linux-again"
},
{
"url": "https://slashdot.org/story/98/09/26/026210/new-nt-bootsector-bug",
"title": "New NT bootsector bug"
},
{
"url": "https://tech.slashdot.org/story/98/09/26/0154256/gtk-gets-ix-coverage",
"title": "Gtk gets IX coverage"
},
{
"url": "https://yro.slashdot.org/story/98/09/26/0138203/h-1b-visa-bill-passes",
"title": "H-1B visa bill passes"
},
{
"url": "https://slashdot.org/story/98/09/26/0111239/microsoft-has-noticed-linux",
"title": "Microsoft HAS noticed Linux"
},
{
"url": "https://news.slashdot.org/story/98/09/25/2211233/friday-quickies",
"title": "Friday Quickies"
},
{
"url": "https://linux.slashdot.org/story/98/09/25/2158259/linux-for-the-masses-and-other-popular-myths",
"title": "Linux For the Masses and Other Popular Myths"
},
{
"url": "https://slashdot.org/story/98/09/25/2152203/12-terahertz-processor-by-roswell-aliens-",
"title": "12 Terahertz Processor by Roswell Aliens ?"
},
{
"url": "https://linux.slashdot.org/story/98/09/25/2150250/intel-and-netscape-to-invest-in-red-hat",
"title": "Intel and Netscape to Invest in Red Hat?"
},
{
"url": "https://linux.slashdot.org/story/98/09/25/2146241/suse-launches-linux-office-suite-99",
"title": "S.u.S.E. launches Linux Office Suite 99"
},
{
"url": "https://news.slashdot.org/story/98/09/25/2140243/slashdotwere-baaack",
"title": "Slashdot:We're Baaack"
},
{
"url": "https://tech.slashdot.org/story/98/09/25/2048209/gnome-030-cont",
"title": "GNOME 0.30 Cont."
},
{
"url": "https://tech.slashdot.org/story/98/09/24/1452243/gnome-030",
"title": "GNOME 0.30"
},
{
"url": "https://slashdot.org/story/98/09/24/1154216/free-sybase-at-caldera",
"title": "Free Sybase at Caldera"
},
{
"url": "https://slashdot.org/story/98/09/24/1055201/postmodern-essay-generator",
"title": "Postmodern Essay Generator"
},
{
"url": "https://news.slashdot.org/story/98/09/24/1034201/featureadvocacy",
"title": "Feature:Advocacy"
},
{
"url": "https://tech.slashdot.org/story/98/09/24/1020211/hacking-lego-mindstorms",
"title": "Hacking Lego Mindstorms"
},
{
"url": "https://news.slashdot.org/story/98/09/24/0952235/apps-for-graphics-junkies",
"title": "Apps For Graphics Junkies"
},
{
"url": "https://slashdot.org/story/98/09/24/0939220/free-rms",
"title": "Free RMS"
},
{
"url": "https://games.slashdot.org/story/98/09/24/0926236/linux-first-for-opengl-mame",
"title": "Linux first for OpenGL MAME"
},
{
"url": "https://apple.slashdot.org/story/98/09/24/0916248/linuxppc-installation-guide",
"title": "LinuxPPC Installation Guide"
},
{
"url": "https://news.slashdot.org/story/98/09/24/0727236/darwin-among-the-machines",
"title": "Darwin Among the Machines"
},
{
"url": "https://linux.slashdot.org/story/98/09/23/1957259/urchin-ported-to-linux",
"title": "Urchin ported to Linux"
},
{
"url": "https://news.slashdot.org/story/98/09/23/1954222/cd3",
"title": "CD^3"
},
{
"url": "https://news.slashdot.org/story/98/09/23/1948225/tetris-creator-found-dead",
"title": "Tetris Creator Found Dead"
},
{
"url": "https://slashdot.org/story/98/09/23/1943202/required-reading-for-linux-beos-naysayers",
"title": "Required Reading For Linux BeOS naysayers"
},
{
"url": "https://developers.slashdot.org/story/98/09/23/165217/microsofts-holy-war-on-java",
"title": "Microsoft's Holy War on Java"
},
{
"url": "https://tech.slashdot.org/story/98/09/23/1428224/display-doctor-for-linux",
"title": "Display Doctor For Linux"
},
{
"url": "https://news.slashdot.org/story/98/09/23/1113206/new-apache-and-windowmaker",
"title": "New Apache and WindowMaker"
},
{
"url": "https://tech.slashdot.org/story/98/09/23/114244/intro-to-modperl-at-webmonkey",
"title": "Intro to mod_perl at Webmonkey"
},
{
"url": "https://linux.slashdot.org/story/98/09/23/1053203/cnn-why-people-dont-hate-linux",
"title": "CNN: Why people don't hate Linux"
},
{
"url": "https://linux.slashdot.org/story/98/09/23/1048225/sybase-and-ibm-db2-for-linux",
"title": "Sybase and IBM DB2 for Linux"
},
{
"url": "https://tech.slashdot.org/story/98/09/23/1042222/upcoming-microprocessor-designs",
"title": "Upcoming Microprocessor Designs"
},
{
"url": "https://news.slashdot.org/story/98/09/23/1040231/jc-penney-web-linking-copyright-suit-dismissed",
"title": "J.C. Penney Web linking Copyright suit Dismissed"
},
{
"url": "https://news.slashdot.org/story/98/09/22/2153256/partition-magic-40",
"title": "Partition Magic 4.0"
},
{
"url": "https://tech.slashdot.org/story/98/09/22/201221/new-x-server---i740",
"title": "New X server - i740"
},
{
"url": "https://slashdot.org/story/98/09/22/1744213/jini-license-unveiled",
"title": "Jini License Unveiled"
},
{
"url": "https://news.slashdot.org/story/98/09/22/1721203/the-story-behind-licenses",
"title": "The Story Behind Licenses"
},
{
"url": "https://linux.slashdot.org/story/98/09/22/1531232/insignia-solutions-softwindows",
"title": "Insignia Solutions Softwindows"
},
{
"url": "https://tech.slashdot.org/story/98/09/22/158239/rise-awakens-transmeta-to-reveal-all-",
"title": "Rise awakens, Transmeta to reveal all (?)"
},
{
"url": "https://tech.slashdot.org/story/98/09/22/1457256/sub-800-k6-notebooks-coming",
"title": "Sub $800 K6 Notebooks Coming"
},
{
"url": "https://slashdot.org/story/98/09/22/1454220/corel-netwinder-apps-next-month",
"title": "Corel Netwinder Apps next Month"
},
{
"url": "https://slashdot.org/story/98/09/22/1323254/open-food",
"title": "Open Food?"
},
{
"url": "https://linux.slashdot.org/story/98/09/22/1151251/compaqfrance-to-support-linux",
"title": "Compaq/France to support Linux?"
},
{
"url": "https://slashdot.org/story/98/09/22/111203/whois-on-cd",
"title": "Whois on CD"
},
{
"url": "https://slashdot.org/story/98/09/22/0939210/opencontent-hits-the-public-media",
"title": "OpenContent hits the public media"
},
{
"url": "https://news.slashdot.org/story/98/09/22/0916201/hacking-politics",
"title": "Hacking Politics"
},
{
"url": "https://tech.slashdot.org/story/98/09/22/0913226/matthias-ettrich-kde-interview",
"title": "Matthias Ettrich (KDE) Interview"
},
{
"url": "https://slashdot.org/story/98/09/22/0856246/nvidia-sued-again",
"title": "nVidia sued-again"
},
{
"url": "https://slashdot.org/story/98/09/22/0843246/gtk-and-gimp-get-ported-to-win32",
"title": "GTK and GIMP get ported to Win32"
},
{
"url": "https://ask.slashdot.org/story/98/09/21/2332233/ask-slashdot-is-linux-y2k-compliant",
"title": "Ask Slashdot: Is Linux Y2K Compliant?"
},
{
"url": "https://ask.slashdot.org/story/98/09/21/2121258/whatever-happened-to-unixs-writers-workbench",
"title": "Whatever happened to Unix's Writer's Workbench?"
},
{
"url": "https://ask.slashdot.org/story/98/09/21/2110249/ask-slashdot-unexpected-x-windows-crashes",
"title": "Ask Slashdot: Unexpected X-Windows Crashes?"
},
{
"url": "https://tech.slashdot.org/story/98/09/21/2051256/ethemesorg",
"title": "e.themes.org"
},
{
"url": "https://linux.slashdot.org/story/98/09/21/1626214/red-hat-releasing-neomagic-xfree86-source",
"title": "Red Hat Releasing Neomagic XFree86 Source"
},
{
"url": "https://slashdot.org/story/98/09/21/1617206/jc-penney-sued-for-linking",
"title": "JC Penney Sued for Linking"
},
{
"url": "https://linux.slashdot.org/story/98/09/21/1411229/linuxppc-enhanced",
"title": "LinuxPPC Enhanced"
},
{
"url": "https://yro.slashdot.org/story/98/09/21/1354234/cda-ii-passes-house-subcommittee",
"title": "CDA II passes House Subcommittee"
},
{
"url": "https://news.slashdot.org/story/98/09/21/1347256/salon-on-denial-of-service",
"title": "Salon on Denial-of-Service"
},
{
"url": "https://hardware.slashdot.org/story/98/09/21/1318226/phonepilot-combos",
"title": "Phone/Pilot Combos"
},
{
"url": "https://linux.slashdot.org/story/98/09/21/1312217/switching-to-linux-from-macos---user-experience",
"title": "Switching to Linux from MacOS - User Experience"
},
{
"url": "https://apple.slashdot.org/story/98/09/21/1116231/linux-at-appleexpo",
"title": "Linux at AppleExpo"
},
{
"url": "https://science.slashdot.org/story/98/09/21/112222/watching-planets-from-far-away",
"title": "Watching Planets from Far Away"
},
{
"url": "https://news.slashdot.org/story/98/09/21/1057223/iomega-sued-over-zip-drive-noise",
"title": "Iomega Sued Over Zip Drive Noise"
},
{
"url": "https://tech.slashdot.org/story/98/09/21/086223/enhanced-running",
"title": "Enhanced Running"
},
{
"url": "https://slashdot.org/story/98/09/21/0756227/microsoft-buys-linux",
"title": "Microsoft Buys Linux"
},
{
"url": "https://slashdot.org/story/98/09/20/1920217/beos-rumors",
"title": "BeOS Rumors"
},
{
"url": "https://tech.slashdot.org/story/98/09/20/1010225/netscape-45pr2-for-unix-released",
"title": "Netscape 4.5PR2 for Unix Released"
},
{
"url": "https://news.slashdot.org/story/98/09/20/103208/k-jofol-mp3-player-going-linux",
"title": "K-Jofol MP3 Player Going Linux"
},
{
"url": "https://news.slashdot.org/story/98/09/20/0958231/moody-on-anti-microsoft-flame",
"title": "Moody on Anti-Microsoft Flame"
},
{
"url": "https://linux.slashdot.org/story/98/09/20/0932246/mesa-30-released",
"title": "Mesa 3.0 Released"
},
{
"url": "https://slashdot.org/story/98/09/19/1829242/the-breeze-in-my-hair",
"title": "the breeze in my hair..."
},
{
"url": "https://linux.slashdot.org/story/98/09/19/1743246/linuxinfoworld",
"title": "Linux@Infoworld"
},
{
"url": "https://news.slashdot.org/story/98/09/19/1140238/south-park-album-song-available-online",
"title": "South Park Album Song Available Online"
},
{
"url": "https://tech.slashdot.org/story/98/09/19/1131226/windowmaker-naming-fun",
"title": "WindowMaker Naming Fun"
},
{
"url": "https://news.slashdot.org/story/98/09/19/1113203/electronic-democracy-in-germany",
"title": "Electronic Democracy in Germany"
},
{
"url": "https://tech.slashdot.org/story/98/09/19/1110215/mozilla-and-apache-saving-bandwith",
"title": "Mozilla and Apache Saving Bandwith"
},
{
"url": "https://news.slashdot.org/story/98/09/19/109210/unexciting-slashdot-notes",
"title": "(Un)Exciting Slashdot Notes"
},
{
"url": "https://linux.slashdot.org/story/98/09/19/0112249/sybase-to-support-linux",
"title": "Sybase to support Linux"
},
{
"url": "https://news.slashdot.org/story/98/09/18/1615257/filaments-v10-availible",
"title": "Filaments v1.0 availible"
},
{
"url": "https://developers.slashdot.org/story/98/09/18/1537244/jdk-should-be-open",
"title": "JDK should be open"
},
{
"url": "https://linux.slashdot.org/story/98/09/18/1524222/citrix-ships-new-linux-winframe-client",
"title": "Citrix ships new Linux WinFrame client"
},
{
"url": "https://tech.slashdot.org/story/98/09/18/1453202/x11r64-reverts-to-old-license",
"title": "X11R6.4 Reverts to Old License"
},
{
"url": "https://slashdot.org/story/98/09/18/1257246/dns-to-go-multi-vendor",
"title": "DNS to go Multi Vendor"
},
{
"url": "https://ask.slashdot.org/story/98/09/18/109244/linux-proxy-server-for-household-network",
"title": "Linux Proxy Server for Household Network"
},
{
"url": "https://ask.slashdot.org/story/98/09/18/107228/help-me-choose-a-ups",
"title": "Help me choose a UPS"
},
{
"url": "https://news.slashdot.org/story/98/09/18/105233/who-is-an-engineer",
"title": "Who is an Engineer?"
},
{
"url": "https://tech.slashdot.org/story/98/09/18/0950259/aboutopen-source",
"title": "About:open source?"
},
{
"url": "https://slashdot.org/story/98/09/18/091256/compaq-migrating-tandems-to-alpha",
"title": "Compaq Migrating Tandems to Alpha"
},
{
"url": "https://tech.slashdot.org/story/98/09/18/0850202/track-airplane-flights-in-real-time",
"title": "Track Airplane Flights in Real Time"
},
{
"url": "https://slashdot.org/story/98/09/18/0845235/linuxgraphics-news-website",
"title": "Linux/Graphics News Website"
},
{
"url": "https://news.slashdot.org/story/98/09/17/175022/featureslashdot-comments",
"title": "Feature:Slashdot Comments"
},
{
"url": "https://science.slashdot.org/story/98/09/17/1716221/cern-antimatter-factory",
"title": "CERN Antimatter Factory"
},
{
"url": "https://slashdot.org/story/98/09/17/175218/cringley-on-ip-architecture-problem",
"title": "Cringley on IP Architecture Problem"
},
{
"url": "https://bsd.slashdot.org/story/98/09/17/1644250/freebsd-30-enters-beta",
"title": "FreeBSD 3.0 Enters Beta"
},
{
"url": "https://slashdot.org/story/98/09/17/1637228/dont-mind-me-testing",
"title": "Don't Mind Me Testing"
},
{
"url": "https://news.slashdot.org/story/98/09/17/1438208/pentagon-scrutinizes-its-websites",
"title": "Pentagon Scrutinizes its Websites"
},
{
"url": "https://tech.slashdot.org/story/98/09/17/1214207/linux-robots",
"title": "Linux Robots"
},
{
"url": "https://slashdot.org/story/98/09/17/1046240/intels-phoneline-lan",
"title": "Intel's Phoneline Lan"
},
{
"url": "https://features.slashdot.org/story/98/09/17/1040221/featuremicrosofts-move",
"title": "Feature:Microsoft's Move"
},
{
"url": "https://tech.slashdot.org/story/98/09/17/1016228/fcc-reconsidrs-56k",
"title": "FCC reconsidrs 56k"
},
{
"url": "https://slashdot.org/story/98/09/17/1012238/intel-may-make-bid-for-3com",
"title": "Intel May Make Bid For 3Com"
},
{
"url": "https://news.slashdot.org/story/98/09/17/1011225/the-doomsday-list",
"title": "The Doomsday List"
},
{
"url": "https://linux.slashdot.org/story/98/09/17/0415216/linux-21122-released",
"title": "Linux 2.1.122 released"
},
{
"url": "https://news.slashdot.org/story/98/09/16/1925239/cvs-cd-roms-as-a-route-to-riches-and-fame",
"title": "CVS CD-ROMs as a Route to Riches and Fame"
},
{
"url": "https://slashdot.org/story/98/09/16/1919232/rms-seeks-to-re-establish-lpf",
"title": "RMS Seeks to Re-establish LPF"
},
{
"url": "https://slashdot.org/story/98/09/16/1915203/caldera-tv-commercial",
"title": "Caldera TV Commercial"
},
{
"url": "https://books.slashdot.org/story/98/09/16/1850223/review-linux-device-drivers",
"title": "Review: Linux Device Drivers"
},
{
"url": "https://slashdot.org/story/98/09/16/1845231/microsoft-is-the-biggest",
"title": "Microsoft is the biggest"
},
{
"url": "https://it.slashdot.org/story/98/09/16/1334233/white-house-releases-details-on-crypto-plans",
"title": "White House Releases Details on Crypto Plans"
},
{
"url": "https://news.slashdot.org/story/98/09/16/1142237/hacker-uses-compute-time-to-find-prime-numbers",
"title": "Hacker uses Compute Time to find Prime Numbers"
},
{
"url": "https://linux.slashdot.org/story/98/09/16/1123218/als-hits-40-vendors",
"title": "ALS Hits 40 Vendors"
},
{
"url": "https://tech.slashdot.org/story/98/09/16/117241/unix-vendors-unifying-drivers-interface",
"title": "UNIX Vendors Unifying Drivers Interface"
},
{
"url": "https://apple.slashdot.org/story/98/09/16/112226/linux-at-apple-france-expo",
"title": "Linux at Apple France Expo"
},
{
"url": "https://it.slashdot.org/story/98/09/16/0849249/crypto-regs-to-be-relaxed",
"title": "Crypto Regs To Be Relaxed"
},
{
"url": "https://linux.slashdot.org/story/98/09/16/0848203/cmpnet-notices-positive-linux-advocacy",
"title": "CMPnet Notices Positive Linux Advocacy"
},
{
"url": "https://ask.slashdot.org/story/98/09/16/002244/ask-slashdot-graphical-rdbms-tool-for-linux",
"title": "Ask Slashdot: Graphical RDBMS tool for Linux?"
},
{
"url": "https://ask.slashdot.org/story/98/09/15/2344219/laser-printer-recommendations",
"title": "Laser Printer Recommendations?"
},
{
"url": "https://slashdot.org/story/98/09/15/2336257/diablo-addiction-returns",
"title": "Diablo Addiction Returns"
},
{
"url": "https://tech.slashdot.org/story/98/09/15/2035207/intel-imac-knockoffs-appearing",
"title": "Intel iMac Knockoffs Appearing"
},
{
"url": "https://slashdot.org/story/98/09/15/1628251/hypocrites-in-congress",
"title": "Hypocrites in Congress"
},
{
"url": "https://ask.slashdot.org/story/98/09/15/1623234/expert-mouse-and-xfree86",
"title": "Expert Mouse and XFree86"
},
{
"url": "https://books.slashdot.org/story/98/09/15/1618241/peopleware",
"title": "Peopleware"
},
{
"url": "https://tech.slashdot.org/story/98/09/15/1459212/motorolas-set-top-computer",
"title": "Motorola's Set-Top Computer"
},
{
"url": "https://games.slashdot.org/story/98/09/15/1455238/from-ashes-of-atari-rises-the-blackbird",
"title": "From Ashes of Atari Rises the Blackbird"
},
{
"url": "https://slashdot.org/story/98/09/15/1145243/adminspotting",
"title": "Adminspotting"
},
{
"url": "https://news.slashdot.org/story/98/09/15/1130201/featurewho-is-the-software-communist",
"title": "Feature:Who is the Software Communist?"
},
{
"url": "https://slashdot.org/story/98/09/15/1124256/gimp-ports",
"title": "Gimp Ports"
},
{
"url": "https://news.slashdot.org/story/98/09/15/1115222/cyberlibertiesorg",
"title": "Cyberliberties.org"
},
{
"url": "https://slashdot.org/story/98/09/15/1047234/whois-being-hammered",
"title": "Whois being Hammered"
},
{
"url": "https://slashdot.org/story/98/09/15/1027246/dosemu-gets-its-own-domain",
"title": "Dosemu gets its own Domain"
},
{
"url": "https://tech.slashdot.org/story/98/09/15/1020213/scsi-ultra3-at-160mbs",
"title": "SCSI Ultra3 at 160MB/s"
},
{
"url": "https://tech.slashdot.org/story/98/09/14/2029257/gnomzilla",
"title": "Gnomzilla"
},
{
"url": "https://slashdot.org/story/98/09/14/200204/ibm-enters-the-fashion-world-with-wearable-pc",
"title": "IBM enters the fashion world with wearable PC"
},
{
"url": "https://slashdot.org/story/98/09/14/1949212/slashdot-gets-hacked",
"title": "Slashdot Gets Hacked"
},
{
"url": "https://tech.slashdot.org/story/98/09/14/1231242/the-end-of-the-pc-revolution",
"title": "The end of the PC revolution?"
},
{
"url": "https://slashdot.org/story/98/09/14/1229253/gimp-red-hat-and-documentation",
"title": "GIMP, Red Hat and Documentation"
},
{
"url": "https://news.slashdot.org/story/98/09/14/1224200/featureyour-own-data",
"title": "Feature:Your Own Data"
},
{
"url": "https://linux.slashdot.org/story/98/09/14/1149258/infoworld-on-linux-kernel-installation",
"title": "Infoworld on Linux kernel installation"
},
{
"url": "https://slashdot.org/story/98/09/14/1147236/satellite-photos",
"title": "Satellite Photos"
},
{
"url": "https://apple.slashdot.org/story/98/09/14/1143246/osx-open-source-advocacy",
"title": "OSX Open Source Advocacy"
},
{
"url": "https://slashdot.org/story/98/09/14/1141211/the-end-of-overclocking",
"title": "The End of Overclocking"
},
{
"url": "https://tech.slashdot.org/story/98/09/13/113230/build-your-own-portable-mp3-player",
"title": "Build your own portable mp3 player"
},
{
"url": "https://slashdot.org/story/98/09/13/1057246/fork-in-the-head",
"title": "Fork in the Head?"
},
{
"url": "https://tech.slashdot.org/story/98/09/13/1049220/spacecrafts-pulled-by-mysterious-forces",
"title": "Spacecrafts Pulled by Mysterious Forces"
},
{
"url": "https://linux.slashdot.org/story/98/09/12/2052245/squid-of-amiga-rumour-mill-fame-looks-at-linux",
"title": "Squid of Amiga Rumour mill fame looks at Linux"
},
{
"url": "https://slashdot.org/story/98/09/12/2043233/computing-inferno",
"title": "Computing Inferno"
},
{
"url": "https://linux.slashdot.org/story/98/09/12/1711226/ask-slashdot-installing-debian2-on-a-dell-433m",
"title": "Ask Slashdot: Installing Debian2 on a Dell 433/M"
},
{
"url": "https://slashdot.org/story/98/09/12/1314259/nt-source",
"title": "NT Source"
},
{
"url": "https://slashdot.org/story/98/09/12/1214213/intelligent-llamas",
"title": "Intelligent Llamas"
},
{
"url": "https://slashdot.org/story/98/09/12/1152258/poptartstxt",
"title": "poptarts.txt"
},
{
"url": "https://slashdot.org/story/98/09/12/1054247/dont-mind-me",
"title": "Don't Mind Me"
},
{
"url": "https://news.slashdot.org/story/98/09/12/1034241/featureexplaining-mp3iso-standards",
"title": "Feature:Explaining MP3/ISO Standards"
},
{
"url": "https://news.slashdot.org/story/98/09/12/1028212/diamond-is-going-to-release-mp3-portable",
"title": "Diamond is going to Release MP3 portable"
},
{
"url": "https://tech.slashdot.org/story/98/09/12/0055209/themesorg",
"title": "Themes.org"
},
{
"url": "https://slashdot.org/story/98/09/11/2325252/rms-rides-again",
"title": "RMS Rides Again"
},
{
"url": "https://news.slashdot.org/story/98/09/11/218215/friday-quickies",
"title": "Friday Quickies"
},
{
"url": "https://ask.slashdot.org/story/98/09/11/161216/help-id-obscure-nic",
"title": "Help ID obscure NIC!"
},
{
"url": "https://ask.slashdot.org/story/98/09/11/1550205/svgalib-based-animated-gif-players",
"title": "SVGAlib based animated GIF players?"
},
{
"url": "https://slashdot.org/story/98/09/11/1439232/computers-satire-and-religion",
"title": "Computers, Satire and Religion"
},
{
"url": "https://slashdot.org/story/98/09/11/1428224/banned-for-life",
"title": "Banned for Life"
},
{
"url": "https://linux.slashdot.org/story/98/09/11/1423243/national-canadian-installfest",
"title": "National Canadian Installfest"
},
{
"url": "https://tech.slashdot.org/story/98/09/11/1213210/microwave-pc",
"title": "Microwave PC?"
},
{
"url": "https://news.slashdot.org/story/98/09/11/126254/disappearing-mp3-encoders",
"title": "Disappearing MP3 Encoders"
},
{
"url": "https://linux.slashdot.org/story/98/09/11/0849247/computing-giants-back-linux",
"title": "Computing Giants back Linux"
},
{
"url": "https://it.slashdot.org/story/98/09/11/0837251/tristratas-unbreakable-cryptography",
"title": "TriStrata's unbreakable Cryptography?"
},
{
"url": "https://news.slashdot.org/story/98/09/11/0832207/nerds-must-remain-nerds-if-they-are-to-survive",
"title": "Nerds must remain nerds if they are to Survive."
},
{
"url": "https://apple.slashdot.org/story/98/09/11/0829238/imac-tops-pc-sales-for-august",
"title": "iMac Tops PC Sales for August"
},
{
"url": "https://slashdot.org/story/98/09/11/0822201/intel-will-support-linux-on-merced",
"title": "Intel will support Linux on Merced"
},
{
"url": "https://linux.slashdot.org/story/98/09/10/129207/cringely-meets-linus",
"title": "Cringely meets Linus"
},
{
"url": "https://features.slashdot.org/story/98/09/10/0942234/why-oracle-and-java-cannot-work",
"title": "Why Oracle and Java Cannot Work"
},
{
"url": "https://tech.slashdot.org/story/98/09/10/0927204/possible-portables",
"title": "Possible Portables"
},
{
"url": "https://slashdot.org/story/98/09/10/0915230/the-ms-enemies-list",
"title": "The MS Enemies List"
},
{
"url": "https://news.slashdot.org/story/98/09/10/0913201/future-displays",
"title": "Future Displays"
},
{
"url": "https://news.slashdot.org/story/98/09/10/0911201/mtv-fakes-hack-on-its-web-page",
"title": "MTV Fakes Hack on its Web Page?"
},
{
"url": "https://slashdot.org/story/98/09/10/097246/open-source-internet-telephony",
"title": "Open Source Internet Telephony"
},
{
"url": "https://it.slashdot.org/story/98/09/10/097233/pgp-keys-arrests-and-general-wackiness",
"title": "PGP Keys, Arrests, and General Wackiness"
},
{
"url": "https://linux.slashdot.org/story/98/09/10/094249/21121-hits-the-net",
"title": "2.1.121 Hits the Net"
},
{
"url": "https://linux.slashdot.org/story/98/09/10/093258/allaire-considering-cold-fusion-for-linux",
"title": "Allaire considering Cold Fusion for Linux"
},
{
"url": "https://linux.slashdot.org/story/98/09/10/0857210/applixware-moves-from-redhat-to-applix",
"title": "Applixware moves from RedHat to Applix"
},
{
"url": "https://science.slashdot.org/story/98/09/10/0845219/iridium-complete",
"title": "Iridium complete"
},
{
"url": "https://ask.slashdot.org/story/98/09/09/2339248/surfin-cablemodems",
"title": "Surfin' Cablemodems!"
},
{
"url": "https://ask.slashdot.org/story/98/09/09/1541201/sco---redhat-ibcs-problems",
"title": "SCO -> Redhat iBCS problems"
},
{
"url": "https://slashdot.org/story/98/09/09/1519202/trouble-for-corel",
"title": "Trouble for Corel"
},
{
"url": "https://science.slashdot.org/story/98/09/09/1516220/genetic-manipulation-fun-for-the-family",
"title": "Genetic Manipulation: Fun for the Family!"
},
{
"url": "https://linux.slashdot.org/story/98/09/09/1335220/ask-slashdotalphastation-200",
"title": "Ask Slashdot:AlphaStation 200"
},
{
"url": "https://slashdot.org/story/98/09/09/1333243/dialect-translator",
"title": "Dialect Translator"
},
{
"url": "https://ask.slashdot.org/story/98/09/09/1322238/ask-slashdot-an-ip-aliasing-super-server",
"title": "Ask Slashdot: an IP-Aliasing super-server?"
},
{
"url": "https://ask.slashdot.org/story/98/09/09/1320214/ask-slashdot-pci-modems",
"title": "Ask Slashdot: PCI Modems"
},
{
"url": "https://slashdot.org/story/98/09/09/1319216/another-intel-pin-design",
"title": "Another Intel Pin Design"
},
{
"url": "https://slashdot.org/story/98/09/09/1316246/solaris-in-a-windows-environment",
"title": "Solaris in a Windows Environment"
},
{
"url": "https://linux.slashdot.org/story/98/09/09/1211212/roaring-penguins",
"title": "Roaring Penguins"
},
{
"url": "https://slashdot.org/story/98/09/09/1128222/340mb-on-1-inch-square-hdd",
"title": "340MB on 1-inch Square HDD"
},
{
"url": "https://tech.slashdot.org/story/98/09/09/1118257/iris-scanning-atms",
"title": "Iris Scanning ATMs"
},
{
"url": "https://tech.slashdot.org/story/98/09/09/1110216/windowmaker-hits-trademark-question",
"title": "WindowMaker Hits Trademark Question"
},
{
"url": "https://news.slashdot.org/story/98/09/09/113221/ceo-michael-dell-to-host-online-chat",
"title": "CEO Michael Dell to Host Online Chat"
},
{
"url": "https://linux.slashdot.org/story/98/09/09/1055245/linux-will-never-go-mainstream",
"title": "Linux Will Never Go Mainstream"
},
{
"url": "https://tech.slashdot.org/story/98/09/08/237254/gnome-faq-10",
"title": "GNOME FAQ 1.0"
},
{
"url": "https://science.slashdot.org/story/98/09/08/1652212/chaos-based-computing",
"title": "Chaos-based Computing?"
},
{
"url": "https://slashdot.org/story/98/09/08/1648224/tell-all-book-about-microsoft",
"title": "Tell All Book about Microsoft"
},
{
"url": "https://news.slashdot.org/story/98/09/08/1646240/the-f-cpu-project-the-freedom-cpu-project",
"title": "The F-CPU Project: The Freedom CPU Project"
},
{
"url": "https://slashdot.org/story/98/09/08/1643213/kevin-mitnick",
"title": "Kevin Mitnick"
},
{
"url": "https://slashdot.org/story/98/09/08/1540225/windows-everywhere",
"title": "Windows Everywhere"
},
{
"url": "https://linux.slashdot.org/story/98/09/08/1317242/linux-installed-on-dell-pcs",
"title": "Linux Installed on Dell PC's"
},
{
"url": "https://slashdot.org/story/98/09/08/1239206/love-talks-about-calderas-future",
"title": "Love talks about Caldera's Future"
},
{
"url": "https://tech.slashdot.org/story/98/09/08/1233241/mozilla-binaries-available-nightly",
"title": "Mozilla binaries available nightly"
},
{
"url": "https://linux.slashdot.org/story/98/09/08/1125224/oracle-partners-with-4-linux-companies",
"title": "Oracle partners with 4 Linux Companies"
},
{
"url": "https://slashdot.org/story/98/09/08/113224/freeshellscom-gives-recognition-to-hackers",
"title": "Freeshells.com Gives Recognition to Hackers"
},
{
"url": "https://slashdot.org/story/98/09/08/1052250/lightweight-markup-language",
"title": "Lightweight Markup Language"
},
{
"url": "https://slashdot.org/story/98/09/08/1057201/domain-costs-may-rise",
"title": "Domain Costs May Rise"
},
{
"url": "https://developers.slashdot.org/story/98/09/08/1022234/ms-vs-sun",
"title": "MS vs. Sun"
},
{
"url": "https://linux.slashdot.org/story/98/09/07/1054239/linux-in-the-irish-times",
"title": "Linux in the Irish Times"
},
{
"url": "https://science.slashdot.org/story/98/09/07/1052229/physicist-to-clone-himself",
"title": "Physicist to Clone Himself"
},
{
"url": "https://slashdot.org/story/98/09/07/1047237/fire-work-with-me",
"title": "Fire Work With Me"
},
{
"url": "https://tech.slashdot.org/story/98/09/07/1039206/xstandards",
"title": "XStandards"
},
{
"url": "https://slashdot.org/story/98/09/07/0813216/song-parody-website",
"title": "Song parody Website"
},
{
"url": "https://it.slashdot.org/story/98/09/07/089237/renounce-citizenship-for-crypto",
"title": "Renounce Citizenship for Crypto"
},
{
"url": "https://developers.slashdot.org/story/98/09/07/0153229/gjc",
"title": "GJC"
},
{
"url": "https://slashdot.org/story/98/09/06/2343217/souped-up-rx7",
"title": "Souped up RX7"
},
{
"url": "https://slashdot.org/story/98/09/06/2331250/bad-newsmore-money",
"title": "Bad News=More Money?"
},
{
"url": "https://ask.slashdot.org/story/98/09/06/1414239/ask-slashdot-what-is-devunix-used-for",
"title": "Ask Slashdot: What is /dev/unix used for?"
},
{
"url": "https://games.slashdot.org/story/98/09/06/1412236/adventure-goes-www",
"title": "Adventure Goes WWW"
},
{
"url": "https://science.slashdot.org/story/98/09/06/1410210/advance-in-quantum-computing",
"title": "Advance in Quantum Computing"
},
{
"url": "https://news.slashdot.org/story/98/09/06/1239218/pc-purchases-in-1999",
"title": "PC Purchases in 1999"
},
{
"url": "https://linux.slashdot.org/story/98/09/06/1233256/oracle-for-linux-coming-soon",
"title": "Oracle For Linux Coming Soon"
},
{
"url": "https://linux.slashdot.org/story/98/09/06/1029211/debian-at-atlanta-linux-showcase",
"title": "Debian at Atlanta Linux Showcase"
},
{
"url": "https://slashdot.org/story/98/09/06/0031215/microsoft-wants-more-time",
"title": "Microsoft wants more time"
},
{
"url": "https://slashdot.org/story/98/09/06/0022226/harvard-review-on-linux-and-e-lance-econo",
"title": "Harvard Review on Linux and E-lance Econo"
},
{
"url": "https://news.slashdot.org/story/98/09/06/002204/fbis-information-spyway",
"title": "FBI's Information Spyway"
},
{
"url": "https://slashdot.org/story/98/09/05/1934213/fun-web-sites",
"title": "Fun Web Sites"
},
{
"url": "https://tech.slashdot.org/story/98/09/05/1634241/routedaemon9s-caseless-machine",
"title": "route/daemon9's caseless machine"
},
{
"url": "https://linux.slashdot.org/story/98/09/05/1631246/is-the-lsb-a-cathedral",
"title": "Is the LSB a cathedral?"
},
{
"url": "https://slashdot.org/story/98/09/05/1632211/ms-changing-license-fine-print",
"title": "MS changing license fine print"
},
{
"url": "https://linux.slashdot.org/story/98/09/05/1630253/new-french-magazine-about-linux",
"title": "New french Magazine about Linux"
},
{
"url": "https://news.slashdot.org/story/98/09/05/1626249/openldap-developing-open-source-ldap-apps",
"title": "OpenLDAP: Developing Open Source LDAP Apps"
},
{
"url": "https://linux.slashdot.org/story/98/09/05/1624256/linux-in-turkey",
"title": "Linux in Turkey"
},
{
"url": "https://news.slashdot.org/story/98/09/05/1621223/computers-and-schools",
"title": "Computers and Schools"
},
{
"url": "https://linux.slashdot.org/story/98/09/05/1610223/whos-behind-the-linux-curtain",
"title": "Who's behind the Linux Curtain?"
},
{
"url": "https://slashdot.org/story/98/09/05/1059253/anonymous-coward-identity-battle-rages-at-yahoo",
"title": "Anonymous Coward Identity Battle Rages at Yahoo!"
},
{
"url": "https://linux.slashdot.org/story/98/09/05/1056242/linux-21120",
"title": "Linux 2.1.120"
},
{
"url": "https://slashdot.org/story/98/09/04/2256252/pcix",
"title": "PCIX"
},
{
"url": "https://ask.slashdot.org/story/98/09/04/1820202/ask-slashdot-a-cookbook-of-algorithms",
"title": "Ask Slashdot: A Cookbook of Algorithms?"
},
{
"url": "https://ask.slashdot.org/story/98/09/04/1816251/ask-slashdot-pop3-boxes",
"title": "Ask Slashdot: POP3 boxes"
},
{
"url": "https://news.slashdot.org/story/98/09/04/1815241/slashdot-notes",
"title": "Slashdot Notes"
},
{
"url": "https://news.slashdot.org/story/98/09/04/1751252/friday-quickies",
"title": "Friday Quickies"
},
{
"url": "https://linux.slashdot.org/story/98/09/04/1748235/tux-vs-imac",
"title": "Tux vs. iMac"
},
{
"url": "https://it.slashdot.org/story/98/09/04/1744251/fbi-wont-get-crypto-keys",
"title": "FBI won't get crypto Keys?"
},
{
"url": "https://games.slashdot.org/story/98/09/04/1524236/quake-for-ttys----really",
"title": "Quake for ttys -- Really!"
},
{
"url": "https://news.slashdot.org/story/98/09/04/1224212/prez-and-irish-pm-sign-e-commerce-note",
"title": "Prez and Irish PM sign e-commerce note"
},
{
"url": "https://yro.slashdot.org/story/98/09/04/1222244/symantec-loses-court-battle",
"title": "Symantec loses court battle"
},
{
"url": "https://news.slashdot.org/story/98/09/04/1028247/forumergonomic-input-devices",
"title": "Forum:Ergonomic Input Devices"
},
{
"url": "https://slashdot.org/story/98/09/04/1023233/corel-introduces-web-server",
"title": "Corel introduces Web server"
},
{
"url": "https://news.slashdot.org/story/98/09/04/101220/open-source-developer-day",
"title": "Open Source Developer Day"
},
{
"url": "https://linux.slashdot.org/story/98/09/04/0948249/electrogig-back-online",
"title": "Electrogig back online"
},
{
"url": "https://news.slashdot.org/story/98/09/04/0944212/negativland-controversy-leads-riaa-to-amend-rules",
"title": "Negativland controversy leads RIAA to amend rules"
},
{
"url": "https://tech.slashdot.org/story/98/09/04/0935228/mozilla-news",
"title": "Mozilla News"
},
{
"url": "https://it.slashdot.org/story/98/09/04/096207/pgp-60",
"title": "PGP 6.0"
},
{
"url": "https://news.slashdot.org/story/98/09/03/1841222/water-on-the-moon",
"title": "Water on The Moon"
},
{
"url": "https://ask.slashdot.org/story/98/09/03/1729235/ask-slashdotpgp-keys",
"title": "Ask Slashdot:PGP Keys"
},
{
"url": "https://linux.slashdot.org/story/98/09/03/1548240/linux-prebundled-for-very-low-cost-computers",
"title": "Linux prebundled for very low cost computers?"
},
{
"url": "https://slashdot.org/story/98/09/03/1440205/squirrel-fishing",
"title": "Squirrel Fishing"
},
{
"url": "https://news.slashdot.org/story/98/09/03/1117242/featurelinux-university",
"title": "Feature:Linux University?"
},
{
"url": "https://news.slashdot.org/story/98/09/03/107238/sunworld-on-perl",
"title": "Sunworld on Perl"
},
{
"url": "https://slashdot.org/story/98/09/03/0953220/microsoft-destroys-evidence",
"title": "Microsoft Destroys Evidence?"
},
{
"url": "https://news.slashdot.org/story/98/09/03/0922233/eric-raymond-wins-seybold-internet-vision-award",
"title": "Eric Raymond wins Seybold Internet Vision Award"
},
{
"url": "https://games.slashdot.org/story/98/09/03/0920209/lego-mindstorms-out",
"title": "Lego Mindstorms Out"
},
{
"url": "https://linux.slashdot.org/story/98/09/03/0744229/red-hat-recieves-award-from-australian-magazine",
"title": "Red Hat recieves award from Australian magazine"
},
{
"url": "https://slashdot.org/story/98/09/03/0039258/caldera-reorganization",
"title": "Caldera Reorganization"
},
{
"url": "https://tech.slashdot.org/story/98/09/03/0016224/dual-medocino",
"title": "Dual Medocino"
},
{
"url": "https://tech.slashdot.org/story/98/09/02/1954252/world-number-2-chess-master-beaten-by-k6",
"title": "World Number 2 Chess Master beaten by K6"
},
{
"url": "https://slashdot.org/story/98/09/02/1557206/rise-expects-to-ship-mp6s-by-xmas",
"title": "Rise expects to ship mP6's by Xmas"
},
{
"url": "https://slashdot.org/story/98/09/02/1817255/microsoft-notices-linux-and-apache",
"title": "Microsoft Notices Linux and Apache"
},
{
"url": "https://slashdot.org/story/98/09/02/181249/merced-reference-compiler",
"title": "Merced Reference Compiler"
},
{
"url": "https://tech.slashdot.org/story/98/09/02/1343218/mozillazine-goes-live",
"title": "Mozillazine Goes Live"
},
{
"url": "https://slashdot.org/story/98/09/02/1315210/sun-unveils-ultrasparc-roadmap",
"title": "Sun Unveils UltraSPARC Roadmap"
},
{
"url": "https://news.slashdot.org/story/98/09/02/139204/big-child-porn-crackdown",
"title": "Big Child Porn Crackdown"
},
{
"url": "https://news.slashdot.org/story/98/09/02/1040236/article-on-intellectual-property",
"title": "Article on Intellectual Property"
},
{
"url": "https://linux.slashdot.org/story/98/09/02/108220/linux-for-rex-pda",
"title": "Linux for REX PDA"
},
{
"url": "https://books.slashdot.org/story/98/09/02/0833212/review-code-complete",
"title": "Review: Code Complete"
},
{
"url": "https://linux.slashdot.org/story/98/09/02/0817257/koffice-linux-binaries-released",
"title": "KOffice Linux Binaries Released"
},
{
"url": "https://linux.slashdot.org/story/98/09/02/0816246/comparison-of-linux-distributions",
"title": "Comparison of Linux Distributions"
},
{
"url": "https://news.slashdot.org/story/98/09/02/0812232/egcs-11-released",
"title": "egcs-1.1 Released"
},
{
"url": "https://linux.slashdot.org/story/98/09/02/021245/positive-coverage-in-sofware-magazine-cover-article",
"title": "Positive coverage in Sofware Magazine cover article"
},
{
"url": "https://news.slashdot.org/story/98/09/01/1739248/afternoon-wrapup",
"title": "Afternoon Wrapup"
},
{
"url": "https://news.slashdot.org/story/98/09/01/177235/cia-targets-bad-websites",
"title": "CIA Targets Bad Websites?"
},
{
"url": "https://linux.slashdot.org/story/98/09/01/173239/lcd-bay-inserts",
"title": "LCD Bay Inserts"
},
{
"url": "https://slashdot.org/story/98/09/01/1655236/quark-sun-alliance",
"title": "Quark-Sun Alliance"
},
{
"url": "https://news.slashdot.org/story/98/09/01/1657214/negativland-and-the-freedom-of-copyrights",
"title": "Negativland and the Freedom of Copyrights"
},
{
"url": "https://news.slashdot.org/story/98/09/01/1449257/featuregnulinux-desktop-alternatives",
"title": "Feature:GNU/Linux Desktop Alternatives"
},
{
"url": "https://tech.slashdot.org/story/98/09/01/1423213/1gb-dimms-and-copper-cpus",
"title": "1Gb Dimms and Copper CPUs"
},
{
"url": "https://slashdot.org/story/98/09/01/0953202/cool-new-websites",
"title": "Cool new Websites"
},
{
"url": "https://tech.slashdot.org/story/98/09/01/0940220/linux-giveaway-list-now-covers-hrdware-and-lit",
"title": "Linux Giveaway List now covers Hrdware and Lit"
},
{
"url": "https://linux.slashdot.org/story/98/09/01/0824255/linux-on-cover-of-software-magazine",
"title": "Linux on cover of Software Magazine"
},
{
"url": "https://linux.slashdot.org/story/98/09/01/0817220/the-return-of-project-heresy",
"title": "The return of Project Heresy"
},
{
"url": "https://tech.slashdot.org/story/98/09/01/0811202/nih-beowulf-cluster",
"title": "NIH Beowulf Cluster"
},
{
"url": "https://tech.slashdot.org/story/98/09/01/089247/windowmaker-019-out",
"title": "WindowMaker 0.19 out"
},
{
"url": "https://bsd.slashdot.org/story/98/09/01/086250/introduction-to-bsd",
"title": "Introduction to BSD"
},
{
"url": "https://linux.slashdot.org/story/98/09/01/0314202/suse-53-available",
"title": "S.u.S.E. 5.3 Available"
},
{
"url": "https://news.slashdot.org/story/98/08/31/2317215/spanish-mirror-of-slashdot",
"title": "Spanish mirror of slashdot?"
},
{
"url": "https://linux.slashdot.org/story/98/08/31/232245/freeware-phobia-is-unreasonable",
"title": "Freeware Phobia is unreasonable"
},
{
"url": "https://news.slashdot.org/story/98/08/31/2238225/heapin-helpin-o-slashdot-news",
"title": "Heapin' Helpin' O Slashdot News"
},
{
"url": "https://features.slashdot.org/story/98/08/31/2231220/freedows-splits",
"title": "Freedows splits"
},
{
"url": "https://slashdot.org/story/98/08/31/2219224/dos-attack-against-usenet",
"title": "DOS attack against USENET"
},
{
"url": "https://tech.slashdot.org/story/98/08/31/2215239/nanotech-marching-forward",
"title": "Nanotech Marching Forward"
},
{
"url": "https://linux.slashdot.org/story/98/08/31/1714201/softwindows-for-linux",
"title": "SoftWindows for Linux"
},
{
"url": "https://news.slashdot.org/story/98/08/31/1330233/mp3-basics-on-npr",
"title": "MP3 Basics on NPR"
},
{
"url": "https://yro.slashdot.org/story/98/08/31/1249231/microsoft-antitrust-suit",
"title": "Microsoft Antitrust Suit"
},
{
"url": "https://tech.slashdot.org/story/98/08/31/107259/x-truetype-server-version-10-released",
"title": "X-TrueType Server Version 1.0 Released"
},
{
"url": "https://tech.slashdot.org/story/98/08/31/0950217/taking-it-out-on-your-computer",
"title": "Taking it out on Your Computer"
},
{
"url": "https://it.slashdot.org/story/98/08/31/0941242/california-passes-anti-spam-legislation",
"title": "California Passes anti-spam Legislation"
},
{
"url": "https://linux.slashdot.org/story/98/08/31/0859205/the-linux-babylon-project",
"title": "The Linux Babylon Project"
},
{
"url": "https://slashdot.org/story/98/08/31/0855247/rms-story-in-salon",
"title": "RMS story in Salon"
},
{
"url": "https://slashdot.org/story/98/08/31/0848220/beos-31-demo-cd",
"title": "BeOS 3.1 Demo CD"
},
{
"url": "https://bsd.slashdot.org/story/98/08/31/0056236/freebsd-goes-elf",
"title": "FreeBSD goes ELF"
},
{
"url": "https://linux.slashdot.org/story/98/08/31/0015223/another-lsb-editorial-at-freshmeat",
"title": "Another LSB editorial at Freshmeat"
},
{
"url": "https://news.slashdot.org/story/98/08/30/1835202/slashdots-new-comment-system-continued",
"title": "Slashdot's New Comment System (continued)"
},
{
"url": "https://news.slashdot.org/story/98/08/30/1813201/internet-use-leads-to-depression",
"title": "Internet Use Leads To Depression"
},
{
"url": "https://tech.slashdot.org/story/98/08/30/1746220/perl-journals-excellent-cover",
"title": "Perl Journal's Excellent Cover"
},
{
"url": "https://tech.slashdot.org/story/98/08/30/1743258/dual-celeron-project",
"title": "Dual Celeron Project"
},
{
"url": "https://news.slashdot.org/story/98/08/30/1222256/slashdot-comment-posting",
"title": "Slashdot Comment Posting"
},
{
"url": "https://linux.slashdot.org/story/98/08/30/1144217/msnbc-on-linux",
"title": "MSNBC on Linux?"
},
{
"url": "https://linux.slashdot.org/story/98/08/30/1056257/first-useful-snapshot-of-the-linux-usb",
"title": "First Useful Snapshot of the Linux USB"
},
{
"url": "https://slashdot.org/story/98/08/30/1053244/intel-marketing-innovation",
"title": "Intel Marketing Innovation"
},
{
"url": "https://tech.slashdot.org/story/98/08/30/1051209/unix-as-literature",
"title": "Unix as Literature?"
},
{
"url": "https://slashdot.org/story/98/08/30/1048217/pennsylvania-asks-are-links-long-distance-calls",
"title": "Pennsylvania asks: are links long distance calls?"
},
{
"url": "https://apple.slashdot.org/story/98/08/30/1033259/macromedia-drops-macintosh-support",
"title": "Macromedia Drops Macintosh Support?"
},
{
"url": "https://bsd.slashdot.org/story/98/08/30/0227206/openbsd-gains-tech-support",
"title": "OpenBSD Gains Tech Support"
},
{
"url": "https://news.slashdot.org/story/98/08/29/1219253/larry-walls-2nd-state-of-the-onion-at-perlcom",
"title": "Larry Wall's 2nd State of the Onion at perl.com"
},
{
"url": "https://news.slashdot.org/story/98/08/29/126252/opensource-logo-contest",
"title": "OpenSource Logo Contest"
},
{
"url": "https://slashdot.org/story/98/08/29/1144244/cat-scans",
"title": "Cat Scans"
},
{
"url": "https://slashdot.org/story/98/08/29/1135251/new-dimensions-for-wireless-lans",
"title": "New Dimensions for Wireless LANs"
},
{
"url": "https://news.slashdot.org/story/98/08/29/1125245/balloon-runs-awry",
"title": "Balloon Runs Awry"
},
{
"url": "https://tech.slashdot.org/story/98/08/29/0034244/aboutjwz",
"title": "about:jwz"
},
{
"url": "https://yro.slashdot.org/story/98/08/29/0011200/student-is-suspended-over-a-critizing-webpage",
"title": "Student is suspended over a critizing webpage."
},
{
"url": "https://news.slashdot.org/story/98/08/28/2357232/interview-with-ton-roosendaal",
"title": "Interview with Ton Roosendaal"
},
{
"url": "https://slashdot.org/story/98/08/28/1738212/go-linux-says-sun",
"title": "Go Linux! says SUN"
},
{
"url": "https://news.slashdot.org/story/98/08/28/1348220/geek-eating-habits",
"title": "Geek Eating Habits"
},
{
"url": "https://slashdot.org/story/98/08/28/1328229/anti-competitive-code-found-in-microsoft-source",
"title": "Anti-Competitive Code Found in Microsoft Source"
},
{
"url": "https://tech.slashdot.org/story/98/08/28/1326227/jetpac-designs",
"title": "Jetpac Designs"
},
{
"url": "https://tech.slashdot.org/story/98/08/28/1020204/icfp-functional-programing-contest-starts-now",
"title": "ICFP Functional Programing Contest Starts Now!"
},
{
"url": "https://it.slashdot.org/story/98/08/28/1016259/embassy-bombings-justify-fbi-crypto-policies",
"title": "Embassy Bombings justify FBI crypto policies?"
},
{
"url": "https://slashdot.org/story/98/08/28/1015238/rms-on-gnu-the-universe-and-everything",
"title": "RMS on GNU, the Universe, and Everything"
},
{
"url": "https://slashdot.org/story/98/08/28/1010252/revenge-for-20",
"title": "Revenge for $20"
},
{
"url": "https://tech.slashdot.org/story/98/08/28/0954215/the-first-fully-bionic-arm",
"title": "The First Fully Bionic Arm"
},
{
"url": "https://games.slashdot.org/story/98/08/28/0950225/john-romero-killed-and-resurected",
"title": "John Romero Killed and Resurected"
},
{
"url": "https://linux.slashdot.org/story/98/08/28/0447252/linux-21119",
"title": "Linux 2.1.119"
},
{
"url": "https://news.slashdot.org/story/98/08/27/1953212/batch-o-quickies",
"title": "Batch o Quickies"
},
{
"url": "https://linux.slashdot.org/story/98/08/27/1530210/sco-to-include-linux-binary-compatability",
"title": "SCO to Include Linux Binary Compatability"
},
{
"url": "https://tech.slashdot.org/story/98/08/27/1526244/ti-moving-to-007-micron-silicon",
"title": "TI Moving to 0.07 Micron Silicon"
},
{
"url": "https://tech.slashdot.org/story/98/08/27/1520237/more-tiny-x86-machines",
"title": "More Tiny x86 Machines"
},
{
"url": "https://news.slashdot.org/story/98/08/27/1511208/star-office-on-zdnet",
"title": "Star Office on ZDNet"
},
{
"url": "https://news.slashdot.org/story/98/08/27/1113230/featurewhat-is-freedows",
"title": "Feature:What is Freedows?"
},
{
"url": "https://news.slashdot.org/story/98/08/27/1052223/pigs-on-fire",
"title": "Pigs on Fire"
},
{
"url": "https://slashdot.org/story/98/08/27/1021238/beos-gains-a-killer-app",
"title": "BeOS gains a Killer App"
},
{
"url": "https://linux.slashdot.org/story/98/08/27/1010207/stalking-transmeta",
"title": "Stalking Transmeta"
},
{
"url": "https://slashdot.org/story/98/08/27/105212/microsoft-loses-its-source-code",
"title": "Microsoft Loses its Source Code"
},
{
"url": "https://linux.slashdot.org/story/98/08/27/085220/more-info-on-scitechs-display-doctor",
"title": "More info on SciTech's Display Doctor"
},
{
"url": "https://slashdot.org/story/98/08/27/0032200/perhaps-sun-really-has-been-listening",
"title": "Perhaps Sun really has been listening..."
},
{
"url": "https://slashdot.org/story/98/08/27/0021256/forbes-reports-on-ms-license-fee-hikes",
"title": "Forbes reports on MS license fee hikes"
},
{
"url": "https://tech.slashdot.org/story/98/08/27/0019214/nasa-has-been-busy",
"title": "NASA has been busy"
},
{
"url": "https://tech.slashdot.org/story/98/08/26/2344249/cash-incentive-for-open-source-community-from-sco",
"title": "Cash incentive for open source community from SCO?"
},
{
"url": "https://tech.slashdot.org/story/98/08/26/2336223/suse-releases-matrox-g200-x-server",
"title": "SuSE releases Matrox G200 X Server"
},
{
"url": "https://tech.slashdot.org/story/98/08/26/207239/300mhz-strongarm-with-media-processor",
"title": "300Mhz StrongArm with Media processor"
},
{
"url": "https://slashdot.org/story/98/08/26/1933245/sound-advice-for-people-coming-to-work-in-the-us",
"title": "Sound advice for people coming to work in the US"
},
{
"url": "https://tech.slashdot.org/story/98/08/26/1923218/elsa-buys-hercules",
"title": "ELSA buys Hercules"
},
{
"url": "https://linux.slashdot.org/story/98/08/26/1310233/linux-21118-released",
"title": "Linux 2.1.118 released"
},
{
"url": "https://linux.slashdot.org/story/98/08/26/1235204/linux-only-for-the-brave",
"title": "Linux Only for the Brave?"
},
{
"url": "https://it.slashdot.org/story/98/08/26/1220254/charles-booher-faces-encryption-export-charges",
"title": "Charles Booher Faces Encryption Export Charges"
},
{
"url": "https://tech.slashdot.org/story/98/08/26/1026217/the-computer-made-of-broken-parts",
"title": "The Computer Made of Broken Parts"
},
{
"url": "https://linux.slashdot.org/story/98/08/26/0919233/adobe-photoshop-and-linux",
"title": "Adobe, Photoshop and Linux"
},
{
"url": "https://ask.slashdot.org/story/98/08/26/0910201/ask-slashdotwriting-a-server",
"title": "Ask Slashdot:Writing a Server?"
},
{
"url": "https://linux.slashdot.org/story/98/08/26/0856259/featurelinux-usability-testing",
"title": "Feature:Linux Usability Testing"
},
{
"url": "https://slashdot.org/story/98/08/26/0729233/nt50-somewhere-over-the-rainbow",
"title": "NT5.0-Somewhere over the Rainbow..."
},
{
"url": "https://hardware.slashdot.org/story/98/08/26/0717232/new-pilot-competitor",
"title": "New Pilot competitor"
},
{
"url": "https://it.slashdot.org/story/98/08/26/0712245/ssh-20",
"title": "SSH 2.0"
},
{
"url": "https://slashdot.org/story/98/08/26/079258/microsoft-vs-intel",
"title": "Microsoft vs. Intel?"
},
{
"url": "https://linux.slashdot.org/story/98/08/26/0044230/more-linux-on-merced-info",
"title": "More Linux on Merced info"
},
{
"url": "https://it.slashdot.org/story/98/08/25/2311211/microsoft-database-loses-records",
"title": "Microsoft database loses records"
},
{
"url": "https://news.slashdot.org/story/98/08/25/236225/tuesday-quickies",
"title": "Tuesday Quickies"
},
{
"url": "https://slashdot.org/story/98/08/25/2258229/microsoft-memos-come-back-to-haunt-them",
"title": "Microsoft Memos come back to haunt them"
},
{
"url": "https://slashdot.org/story/98/08/25/2225239/katmais-new-instructions",
"title": "Katmai's new instructions"
},
{
"url": "https://slashdot.org/story/98/08/25/1638224/cybergold-claims-patent-rights",
"title": "CyberGold Claims Patent Rights"
},
{
"url": "https://tech.slashdot.org/story/98/08/25/1636229/balsa-email-client",
"title": "Balsa Email Client"
},
{
"url": "https://tech.slashdot.org/story/98/08/25/1612242/cool-gps-toy",
"title": "Cool GPS Toy"
},
{
"url": "https://linux.slashdot.org/story/98/08/25/1417246/more-vendors-join-the-lsb",
"title": "More Vendors Join The LSB"
},
{
"url": "https://slashdot.org/story/98/08/25/139242/another-webgeek-test",
"title": "Another Webgeek Test"
},
{
"url": "https://news.slashdot.org/story/98/08/25/122205/lord-of-the-rings-trilogy-of-films",
"title": "Lord of the Rings Trilogy of Films"
},
{
"url": "https://linux.slashdot.org/story/98/08/25/1158252/help-needed-managing-sunsite",
"title": "Help Needed Managing Sunsite"
},
{
"url": "https://tech.slashdot.org/story/98/08/25/1012256/implantable-computers",
"title": "Implantable Computers"
},
{
"url": "https://slashdot.org/story/98/08/25/0949259/640-gb-international-network",
"title": "640 Gb International Network"
},
{
"url": "https://developers.slashdot.org/story/98/08/25/0948235/java-games-gallery-on-suns-site",
"title": "Java Games Gallery on Suns Site"
},
{
"url": "https://tech.slashdot.org/story/98/08/25/0945226/themes-for-kde",
"title": "Themes for KDE"
},
{
"url": "https://tech.slashdot.org/story/98/08/25/0943214/four-g3s-outprocess-a-cray",
"title": "Four G3s Outprocess a CRAY"
},
{
"url": "https://news.slashdot.org/story/98/08/24/2336249/staroffice-web-site-is-now-up",
"title": "StarOffice Web Site is now up"
},
{
"url": "https://linux.slashdot.org/story/98/08/24/1814214/linux-in-the-news",
"title": "Linux in the news"
},
{
"url": "https://slashdot.org/story/98/08/24/189230/back-orifice-coverage-in-businessweek",
"title": "Back Orifice coverage in BusinessWeek"
},
{
"url": "https://apple.slashdot.org/story/98/08/24/185222/g3-weakness",
"title": "G3 Weakness"
},
{
"url": "https://slashdot.org/story/98/08/24/184212/slashdot-and-linux-make-news-in-client-server-news",
"title": "Slashdot and Linux make news in ClieNT Server NEWS"
},
{
"url": "https://slashdot.org/story/98/08/24/1610235/how-ibms-deep-blue-plays-chess",
"title": "How IBM's Deep Blue plays chess"
},
{
"url": "https://news.slashdot.org/story/98/08/24/1552251/segfaultorg-debut",
"title": "Segfault.org Debut"
},
{
"url": "https://slashdot.org/story/98/08/24/1548203/compaq-sets-agenda",
"title": "Compaq sets agenda"
},
{
"url": "https://games.slashdot.org/story/98/08/24/1548207/color-gameboys",
"title": "Color Gameboys?"
},
{
"url": "https://slashdot.org/story/98/08/24/1546201/gimp-for-win32",
"title": "Gimp for WIN32"
},
{
"url": "https://slashdot.org/story/98/08/24/1537247/intels-whitney-not-a-sure-thing",
"title": "Intel's Whitney not-a-sure-thing."
},
{
"url": "https://apple.slashdot.org/story/98/08/24/1419205/various-imac-bits",
"title": "Various iMac Bits"
},
{
"url": "https://slashdot.org/story/98/08/24/1139231/satellite-tracking-page",
"title": "Satellite Tracking Page"
},
{
"url": "https://linux.slashdot.org/story/98/08/24/1045206/techweb-on-linux",
"title": "Techweb on Linux"
},
{
"url": "https://tech.slashdot.org/story/98/08/24/1018250/256mb-flash-memory",
"title": "256mb flash memory"
},
{
"url": "https://it.slashdot.org/story/98/08/24/1015244/race-for-new-us-crypto-standard",
"title": "Race for new US Crypto Standard"
},
{
"url": "https://tech.slashdot.org/story/98/08/24/0949212/pulsebox-cool-geek-gizmos",
"title": "PulseBox: Cool Geek Gizmos"
},
{
"url": "https://it.slashdot.org/story/98/08/24/0857204/new-free-encryption-from-ibm",
"title": "New Free Encryption from IBM"
},
{
"url": "https://news.slashdot.org/story/98/08/24/0854256/featureopen-source-and-capitalism",
"title": "Feature:Open Source and Capitalism"
},
{
"url": "https://slashdot.org/story/98/08/24/0852238/strange-ms-statement",
"title": "Strange MS Statement"
},
{
"url": "https://tech.slashdot.org/story/98/08/23/2240209/why-does-god-play-dice",
"title": "Why does God play dice?"
},
{
"url": "https://linux.slashdot.org/story/98/08/23/222211/lsa-on-freshmeat",
"title": "LSA on Freshmeat"
},
{
"url": "https://tech.slashdot.org/story/98/08/23/1912230/more-gnome-theme-screenshots",
"title": "More Gnome Theme Screenshots"
},
{
"url": "https://news.slashdot.org/story/98/08/23/1336216/forumfuture-of-slashdot",
"title": "Forum:Future of Slashdot"
},
{
"url": "https://linux.slashdot.org/story/98/08/23/1311207/ask-slashdotcorrupted-hard-drive",
"title": "Ask Slashdot:Corrupted Hard Drive"
},
{
"url": "https://slashdot.org/story/98/08/23/1255236/scour-search-engine",
"title": "Scour Search Engine"
},
{
"url": "https://news.slashdot.org/story/98/08/23/1247229/to-the-desktop",
"title": "To the Desktop"
},
{
"url": "https://games.slashdot.org/story/98/08/23/1242243/quake-3",
"title": "Quake 3"
},
{
"url": "https://news.slashdot.org/story/98/08/23/1228237/new-audio-compression-format",
"title": "New Audio Compression Format"
},
{
"url": "https://linux.slashdot.org/story/98/08/22/1111230/cnn-features-linux",
"title": "CNN Features Linux"
},
{
"url": "https://news.slashdot.org/story/98/08/22/115201/linux-t-shirt-contest-result",
"title": "Linux T-shirt Contest Result"
},
{
"url": "https://news.slashdot.org/story/98/08/22/110226/transmeta-rumors",
"title": "Transmeta Rumors"
},
{
"url": "https://linux.slashdot.org/story/98/08/22/1054230/ieee-software-call-for-articles-on-linux",
"title": "IEEE Software Call for Articles on Linux"
},
{
"url": "https://slashdot.org/story/98/08/22/1052237/the-live-internet-sex-change",
"title": "The Live Internet Sex Change"
},
{
"url": "https://news.slashdot.org/story/98/08/22/1049251/freedos-in-the-news",
"title": "FreeDOS in the news"
},
{
"url": "https://news.slashdot.org/story/98/08/22/1046230/cheap-new-monitor",
"title": "Cheap New monitor"
},
{
"url": "https://tech.slashdot.org/story/98/08/22/1042248/a-tribute-to-the-6502",
"title": "A Tribute to the 6502"
},
{
"url": "https://linux.slashdot.org/story/98/08/21/1655227/the-no-cost-super-computer",
"title": "The No Cost Super Computer"
},
{
"url": "https://slashdot.org/story/98/08/21/1511251/comment-on-us-domain",
"title": "Comment on .us domain"
},
{
"url": "https://news.slashdot.org/story/98/08/21/154215/freedows-os-hoax",
"title": "Freedows? OS Hoax?"
},
{
"url": "https://games.slashdot.org/story/98/08/21/152243/final-fantasy-movie",
"title": "Final Fantasy Movie"
},
{
"url": "https://linux.slashdot.org/story/98/08/21/151252/linux-showcase-speakers-dates",
"title": "Linux Showcase Speakers' Dates"
},
{
"url": "https://apple.slashdot.org/story/98/08/21/1437220/imac-in-the-news",
"title": "iMac in the news"
},
{
"url": "https://news.slashdot.org/story/98/08/21/1431236/larry-wall-in-the-news",
"title": "Larry Wall in the News"
},
{
"url": "https://news.slashdot.org/story/98/08/21/1429203/more-patent-nonsense",
"title": "More Patent Nonsense"
},
{
"url": "https://news.slashdot.org/story/98/08/21/1048206/segfaultorg-coming-soon",
"title": "Segfault.org Coming Soon"
},
{
"url": "https://news.slashdot.org/story/98/08/21/1042234/abiword-source-code-now-available",
"title": "AbiWord Source Code Now Available"
},
{
"url": "https://slashdot.org/story/98/08/21/1037232/cheaper-internet-anyone",
"title": "Cheaper Internet Anyone?"
},
{
"url": "https://news.slashdot.org/story/98/08/21/1026245/linux-standards-essay-2",
"title": "Linux Standards Essay 2"
},
{
"url": "https://linux.slashdot.org/story/98/08/21/1014242/linux-standards-essay-1",
"title": "Linux Standards Essay 1"
},
{
"url": "https://linux.slashdot.org/story/98/08/21/1014213/first-linux-trademark-issue",
"title": "First Linux Trademark Issue?"
},
{
"url": "https://linux.slashdot.org/story/98/08/21/1012208/standard-linux-association-announced",
"title": "Standard Linux Association announced!"
},
{
"url": "https://tech.slashdot.org/story/98/08/21/107242/new-amd-chip-to-challenge-pentium-ii",
"title": "New AMD Chip To Challenge Pentium II"
},
{
"url": "https://tech.slashdot.org/story/98/08/21/0956225/digital-paper-created-at-parc",
"title": "Digital Paper created at PARC"
},
{
"url": "https://news.slashdot.org/story/98/08/21/0923256/us-strikes-bring-down-cnnmsnbc-sites",
"title": "US Strikes Bring Down CNN/MSNBC Sites"
},
{
"url": "https://news.slashdot.org/story/98/08/21/099216/journalism-on-the-web",
"title": "Journalism on the Web"
},
{
"url": "https://slashdot.org/story/98/08/20/1527211/compaq-prefers-alpha-to-merced",
"title": "Compaq prefers Alpha to Merced"
},
{
"url": "https://news.slashdot.org/story/98/08/20/1128238/patenting-invited-pull",
"title": "Patenting 'Invited Pull'"
},
{
"url": "https://tech.slashdot.org/story/98/08/20/1122247/netscape-in-the-news",
"title": "Netscape in the news"
},
{
"url": "https://apple.slashdot.org/story/98/08/20/1119249/imacs-selling-out",
"title": "iMacs selling out"
},
{
"url": "https://news.slashdot.org/story/98/08/20/1116250/it-training-programs",
"title": "IT Training Programs"
},
{
"url": "https://slashdot.org/story/98/08/20/1056217/featureibm-and-linux",
"title": "Feature:IBM and Linux"
},
{
"url": "https://linux.slashdot.org/story/98/08/20/0958209/dcom-for-linux",
"title": "DCOM for Linux"
},
{
"url": "https://news.slashdot.org/story/98/08/20/0942225/call-for-essays-on-linux-standards",
"title": "Call for Essays on Linux Standards"
},
{
"url": "https://ask.slashdot.org/story/98/08/20/0935240/ask-slashdotinternational-dns-wackiness",
"title": "Ask Slashdot:International DNS Wackiness"
},
{
"url": "https://linux.slashdot.org/story/98/08/20/0933208/linux-21117",
"title": "Linux 2.1.117"
},
{
"url": "https://slashdot.org/story/98/08/20/0914235/help-export-encryption",
"title": "Help Export Encryption!"
},
{
"url": "https://slashdot.org/story/98/08/20/095207/russian-internet-snooping",
"title": "Russian Internet Snooping"
},
{
"url": "https://developers.slashdot.org/story/98/08/20/0851222/first-java-virus",
"title": "First Java Virus"
},
{
"url": "https://slashdot.org/story/98/08/19/2225217/bristol-sues-microsoft",
"title": "Bristol sues Microsoft"
},
{
"url": "https://yro.slashdot.org/story/98/08/19/1818220/ms-case-set-for-trial-no-depositions-public",
"title": "MS case set for trial; no depositions public"
},
{
"url": "https://tech.slashdot.org/story/98/08/19/152207/kde-gnome-agree-on-drag-and-drop-protocol",
"title": "KDE & Gnome agree on Drag-and-Drop protocol!"
},
{
"url": "https://tech.slashdot.org/story/98/08/19/1459252/part-of-blue-mountain-ships",
"title": "Part of Blue Mountain Ships"
},
{
"url": "https://tech.slashdot.org/story/98/08/19/1445218/bacteria-based-thin-screens",
"title": "Bacteria Based Thin Screens"
},
{
"url": "https://slashdot.org/story/98/08/19/1427257/online-communities",
"title": "Online Communities"
},
{
"url": "https://news.slashdot.org/story/98/08/19/1058246/escient-aquires-the-cddb",
"title": "Escient Aquires the CDDB"
},
{
"url": "https://features.slashdot.org/story/98/08/19/1053238/featureshould-be-open-up",
"title": "Feature:Should Be Open Up?"
},
{
"url": "https://linux.slashdot.org/story/98/08/19/1047225/debian-arm-project",
"title": "Debian ARM Project"
},
{
"url": "https://linux.slashdot.org/story/98/08/19/1044225/responses-to-the-lsa",
"title": "Responses to the LSA"
},
{
"url": "https://hardware.slashdot.org/story/98/08/19/1034246/new-palmpilots",
"title": "New PalmPilots"
},
{
"url": "https://linux.slashdot.org/story/98/08/19/1019245/linux-in-networld",
"title": "Linux in NetWorld"
},
{
"url": "https://apple.slashdot.org/story/98/08/19/0857244/linux-for-imac-project",
"title": "Linux for iMac Project!"
},
{
"url": "https://linux.slashdot.org/story/98/08/19/0345249/linux-21116-released",
"title": "Linux 2.1.116 released"
},
{
"url": "https://slashdot.org/story/98/08/18/1421235/disabling-pics-in-netscape",
"title": "Disabling PICS in Netscape"
},
{
"url": "https://linux.slashdot.org/story/98/08/18/1247245/another-linux-standards-group",
"title": "Another Linux Standards Group?"
},
{
"url": "https://news.slashdot.org/story/98/08/18/1241214/user-interface-essay",
"title": "User Interface Essay"
},
{
"url": "https://books.slashdot.org/story/98/08/18/1145255/reviewlinux-application-development",
"title": "Review:Linux Application Development"
},
{
"url": "https://news.slashdot.org/story/98/08/18/1034258/live-from-videotopia",
"title": "Live from Videotopia"
},
{
"url": "https://slashdot.org/story/98/08/18/1032242/no-adverts-for-alpha",
"title": "No Adverts for Alpha"
},
{
"url": "https://linux.slashdot.org/story/98/08/18/1031238/linux-commercial-available-in-quicktime",
"title": "Linux Commercial available in Quicktime"
},
{
"url": "https://news.slashdot.org/story/98/08/18/1030205/ea-buys-westwood-zd-idg-warned",
"title": "EA buys Westwood; ZD & IDG warned"
},
{
"url": "https://news.slashdot.org/story/98/08/18/1028202/2600-hackers-on-film",
"title": "2600 Hackers on Film"
},
{
"url": "https://news.slashdot.org/story/98/08/18/1017206/abisource-open-source-word-processor",
"title": "AbiSource Open Source Word Processor"
},
{
"url": "https://linux.slashdot.org/story/98/08/18/1014241/linux-documentation-project-facelift",
"title": "Linux Documentation Project Facelift"
},
{
"url": "https://apple.slashdot.org/story/98/08/18/0820226/project-appleseed",
"title": "Project AppleSeed"
},
{
"url": "https://linux.slashdot.org/story/98/08/18/0818230/linux-legitimacy-rallies-nt-skeptics",
"title": "Linux legitimacy rallies NT skeptics"
},
{
"url": "https://news.slashdot.org/story/98/08/18/0815201/freedom-from-the-press",
"title": "Freedom from the Press"
},
{
"url": "https://tech.slashdot.org/story/98/08/18/042243/gnome-binaries-available",
"title": "GNOME binaries available"
},
{
"url": "https://developers.slashdot.org/story/98/08/17/167210/hotspot-delayed-again",
"title": "Hotspot delayed again"
},
{
"url": "https://slashdot.org/story/98/08/17/1540248/win-98-any-day-bug",
"title": "Win 98 Any-day bug"
},
{
"url": "https://slashdot.org/story/98/08/17/1458225/its-only-illegal-if-you-lose",
"title": "It's Only Illegal if you Lose"
},
{
"url": "https://tech.slashdot.org/story/98/08/17/1437249/new-gnome-proposal-cluehunting",
"title": "New GNOME proposal: Cluehunting"
},
{
"url": "https://tech.slashdot.org/story/98/08/17/142247/netscape-406-out",
"title": "Netscape 4.06 out"
},
{
"url": "https://it.slashdot.org/story/98/08/17/141201/national-emergency-declared-over-crypto",
"title": "National Emergency declared over Crypto"
},
{
"url": "https://slashdot.org/story/98/08/17/1321219/youre-only-as-sick-as-your-secrets",
"title": "You're only as sick as your secrets"
},
{
"url": "https://linux.slashdot.org/story/98/08/17/1045246/ask-slashdotlinux-vending-machines",
"title": "Ask Slashdot:Linux Vending Machines?"
},
{
"url": "https://news.slashdot.org/story/98/08/17/1024208/testing-relativity",
"title": "Testing Relativity"
},
{
"url": "https://linux.slashdot.org/story/98/08/17/1015252/red-hat-announces-raw-hide",
"title": "Red Hat Announces Raw Hide"
},
{
"url": "https://news.slashdot.org/story/98/08/17/1014230/funny-stuff-to-read",
"title": "Funny Stuff to Read"
},
{
"url": "https://slashdot.org/story/98/08/17/0942232/chilling-with-xeon",
"title": "Chilling with Xeon"
},
{
"url": "https://news.slashdot.org/story/98/08/17/0928213/featureintroducing-ox",
"title": "Feature:Introducing Ox"
},
{
"url": "https://linux.slashdot.org/story/98/08/17/0919237/linux-commercial-on-tv",
"title": "Linux Commercial on TV"
},
{
"url": "https://slashdot.org/story/98/08/17/098253/microsoft-to-acquire-slashdot",
"title": "Microsoft to Acquire Slashdot?"
},
{
"url": "https://linux.slashdot.org/story/98/08/17/093248/linux-t-shirt-voting-has-started",
"title": "Linux T-Shirt Voting has Started"
},
{
"url": "https://slashdot.org/story/98/08/17/005258/netware-for-linux-review",
"title": "Netware for Linux Review"
},
{
"url": "https://linux.slashdot.org/story/98/08/16/0219238/the-lsb-is-in-transition",
"title": "The LSB is in transition."
},
{
"url": "https://apple.slashdot.org/story/98/08/15/1153234/imac-rolling-out",
"title": "iMac rolling out"
},
{
"url": "https://news.slashdot.org/story/98/08/15/1148209/saturday-quickies",
"title": "Saturday Quickies"
},
{
"url": "https://slashdot.org/story/98/08/15/1141203/logitech-to-get-quickcam",
"title": "Logitech to get QuickCam"
},
{
"url": "https://tech.slashdot.org/story/98/08/15/1024203/interactive-brainwave-visual-analyzer",
"title": "Interactive Brainwave Visual Analyzer"
},
{
"url": "https://yro.slashdot.org/story/98/08/15/105250/c-to-english-and-english-to-c-translator",
"title": "C to English and English to C translator"
},
{
"url": "https://linux.slashdot.org/story/98/08/15/0953209/mort-the-penguin",
"title": "Mort the Penguin"
},
{
"url": "https://linux.slashdot.org/story/98/08/15/0951229/itty-bitty-technauts-linux-server",
"title": "Itty bitty Technauts Linux server"
},
{
"url": "https://tech.slashdot.org/story/98/08/15/0913243/gnome-027-out",
"title": "Gnome 0.27 out"
},
{
"url": "https://slashdot.org/story/98/08/15/0911240/ibm-will-devel-for-linux",
"title": "IBM will devel for Linux"
},
{
"url": "https://slashdot.org/story/98/08/15/099225/ms-confirms-98-bug",
"title": "MS confirms 98 Bug"
},
{
"url": "https://news.slashdot.org/story/98/08/15/091242/rms-interview",
"title": "RMS Interview"
},
{
"url": "https://slashdot.org/story/98/08/14/1556233/spartan-horse",
"title": "Spartan Horse"
},
{
"url": "https://yro.slashdot.org/story/98/08/14/1533231/net-privacy-enforced",
"title": "Net Privacy Enforced"
},
{
"url": "https://yro.slashdot.org/story/98/08/14/1515202/laptops-scanned-by-uk-customs",
"title": "Laptops scanned by UK customs"
},
{
"url": "https://slashdot.org/story/98/08/14/1458254/son-of-c64",
"title": "Son of C64"
},
{
"url": "https://news.slashdot.org/story/98/08/14/1141255/were-here",
"title": "We're Here!"
},
{
"url": "https://tech.slashdot.org/story/98/08/14/1118201/themesorg-updates",
"title": "Themes.org Updates"
},
{
"url": "https://news.slashdot.org/story/98/08/14/1113242/teen-encryption-and-slashdot",
"title": "Teen Encryption and Slashdot"
},
{
"url": "https://slashdot.org/story/98/08/14/113256/caldera-launching-linux-engineer-certification",
"title": "Caldera Launching Linux Engineer Certification"
},
{
"url": "https://tech.slashdot.org/story/98/08/14/112203/put-your-name-in-space",
"title": "Put your Name in Space"
},
{
"url": "https://it.slashdot.org/story/98/08/14/1058231/serious-y2k-site",
"title": "Serious Y2k Site"
},
{
"url": "https://news.slashdot.org/story/98/08/14/1043206/techies-make-lousy-lovers",
"title": "Techies make Lousy Lovers?"
},
{
"url": "https://slashdot.org/story/98/08/14/1040217/geocities-selling-user-information",
"title": "Geocities Selling User Information"
},
{
"url": "https://news.slashdot.org/story/98/08/14/1039204/staroffice-50-pre-final-announced",
"title": "StarOffice 5.0 Pre Final Announced"
},
{
"url": "https://linux.slashdot.org/story/98/08/13/1618241/debian-turns-5",
"title": "Debian Turns 5"
},
{
"url": "https://tech.slashdot.org/story/98/08/13/1528237/new-ti-chip-produces-superior-project-images",
"title": "New TI Chip Produces Superior Project Images"
},
{
"url": "https://games.slashdot.org/story/98/08/13/1524211/would-you-like-to-play-a-game",
"title": "Would you like to play a Game?"
},
{
"url": "https://linux.slashdot.org/story/98/08/13/1523202/the-linux-community",
"title": "The Linux Community"
},
{
"url": "https://linux.slashdot.org/story/98/08/13/1452214/nasa-using-beowulf-for-investigations",
"title": "NASA using Beowulf for Investigations"
},
{
"url": "https://slashdot.org/story/98/08/13/1451202/irrelevant-penguins-cartoons",
"title": "Irrelevant Penguins Cartoons"
},
{
"url": "https://features.slashdot.org/story/98/08/13/1448208/review-wordperfect-80-for-linux",
"title": "Review: WordPerfect 8.0 for Linux"
},
{
"url": "https://tech.slashdot.org/story/98/08/13/1445211/new-cray-has-2048-processors",
"title": "New Cray has 2048 Processors"
},
{
"url": "https://linux.slashdot.org/story/98/08/13/1444217/linuxppc-4-released",
"title": "LinuxPPC 4 released"
},
{
"url": "https://tech.slashdot.org/story/98/08/13/1429200/12-300mhz-g3s-in-one-box",
"title": "12 300Mhz G3s in one Box"
},
{
"url": "https://news.slashdot.org/story/98/08/13/1425229/welcome-to-the-temp-server",
"title": "Welcome to the Temp Server"
},
{
"url": "https://news.slashdot.org/story/98/08/13/1159207/feedback-solicited-on-the-abisource-public-license",
"title": "Feedback Solicited on the AbiSource Public License"
},
{
"url": "https://news.slashdot.org/story/98/08/12/2029240/sony-halts-camera-that-can-see-through-clothes",
"title": "Sony halts Camera that can see Through Clothes"
},
{
"url": "https://linux.slashdot.org/story/98/08/12/2024243/compaq-donates-alpha-to-debian-project",
"title": "Compaq Donates Alpha To Debian Project"
},
{
"url": "https://tech.slashdot.org/story/98/08/12/1157233/gtk-themes-hit-cvs",
"title": "GTK Themes hit CVS"
},
{
"url": "https://news.slashdot.org/story/98/08/12/1146208/slashdot-moving-to-new-home",
"title": "Slashdot Moving to new Home"
},
{
"url": "https://tech.slashdot.org/story/98/08/12/0942206/how-big-is-64bits-and-other-fun-stuff",
"title": "How Big is 64Bits? (and other fun stuff)"
},
{
"url": "https://linux.slashdot.org/story/98/08/12/0931244/debian-and-red-hat-announce-lcs",
"title": "Debian and Red Hat Announce LCS"
},
{
"url": "https://linux.slashdot.org/story/98/08/12/0926212/featurefbcon-and-linux-22",
"title": "Feature:fbcon and Linux 2.2"
},
{
"url": "https://news.slashdot.org/story/98/08/12/0910242/petreley-open-source-mag-update",
"title": "Petreley Open Source Mag Update"
},
{
"url": "https://apple.slashdot.org/story/98/08/12/091208/imac-factory",
"title": "iMac Factory"
},
{
"url": "https://linux.slashdot.org/story/98/08/12/0859225/red-hats-marc-ewing-speaks-out-on-qt-license",
"title": "Red Hat's Marc Ewing speaks out on Qt License"
},
{
"url": "https://slashdot.org/story/98/08/11/2213233/microsoft-woes",
"title": "Microsoft Woes"
},
{
"url": "https://yro.slashdot.org/story/98/08/11/2153219/open-software-constitutionally-protected-speech",
"title": "Open Software & Constitutionally Protected Speech"
},
{
"url": "https://apple.slashdot.org/story/98/08/11/1451244/apple-open-source-continues",
"title": "Apple Open Source Continues"
},
{
"url": "https://news.slashdot.org/story/98/08/11/1044236/featurelawyers-use-wordperfect",
"title": "Feature:Lawyers use WordPerfect"
},
{
"url": "https://it.slashdot.org/story/98/08/11/1013202/effs-cracking-des-book-available-online",
"title": "EFF's Cracking DES book available online"
},
{
"url": "https://slashdot.org/story/98/08/11/102244/internet-culture-lan-parties-and-quake",
"title": "Internet culture, LAN parties and Quake"
},
{
"url": "https://books.slashdot.org/story/98/08/11/091218/review-software-project-survival-guide",
"title": "Review: Software Project Survival Guide"
},
{
"url": "https://it.slashdot.org/story/98/08/11/0857212/2048-bit-encryption-by-british-teen",
"title": "2048 Bit Encryption by British Teen"
},
{
"url": "https://linux.slashdot.org/story/98/08/11/0518217/interbase-releases-interbase-5-for-linux",
"title": "Interbase releases Interbase 5 for Linux"
},
{
"url": "https://slashdot.org/story/98/08/11/0434254/microsoft-uses-linux-in-its-case-against-the-doj",
"title": "Microsoft uses Linux in its case against the DOJ"
},
{
"url": "https://slashdot.org/story/98/08/11/0138245/software-news",
"title": "Software news"
},
{
"url": "https://slashdot.org/story/98/08/11/0049210/intelsintelhp-will-use-copper-sort-of",
"title": "Intel(/s/Intel/HP) will use copper, sort of..."
},
{
"url": "https://tech.slashdot.org/story/98/08/11/0033249/cyrix-may-not-be-out-of-the-high-end-game",
"title": "Cyrix may not be out of the high-end game"
},
{
"url": "https://slashdot.org/story/98/08/10/2353235/windows-ce-is-not-quite-that-successful",
"title": "Windows CE is not quite that successful"
},
{
"url": "https://slashdot.org/story/98/08/10/1959236/solaris-cheaper-and-better-than-nt",
"title": "Solaris cheaper and better than NT"
},
{
"url": "https://tech.slashdot.org/story/98/08/10/1830238/extreme-case-design",
"title": "Extreme Case Design"
},
{
"url": "https://news.slashdot.org/story/98/08/10/1817242/open-source-initiative-announcement",
"title": "Open Source Initiative Announcement"
},
{
"url": "https://linux.slashdot.org/story/98/08/10/1558211/mit-submarine-runs-on-linux",
"title": "MIT Submarine runs on Linux"
},
{
"url": "https://linux.slashdot.org/story/98/08/10/1526234/t-shirt-competition-update",
"title": "T-Shirt Competition Update"
},
{
"url": "https://news.slashdot.org/story/98/08/10/1128254/berst-on-open-source",
"title": "Berst on Open Source"
},
{
"url": "https://ask.slashdot.org/story/98/08/10/106251/ask-slashdotunix-keyboards",
"title": "Ask Slashdot:Unix Keyboards"
},
{
"url": "https://tech.slashdot.org/story/98/08/10/0936242/featurewine-update",
"title": "Feature:Wine Update"
},
{
"url": "https://slashdot.org/story/98/08/10/0932249/cdc-releases-nix-back-orifice-client-open-source",
"title": "cDc Releases *NIX Back Orifice Client Open Source"
},
{
"url": "https://linux.slashdot.org/story/98/08/10/0931218/linux-21116",
"title": "Linux 2.1.116"
},
{
"url": "https://linux.slashdot.org/story/98/08/10/0848222/the-linux-hardware-certification-lab",
"title": "The Linux Hardware Certification Lab"
},
{
"url": "https://slashdot.org/story/98/08/10/083252/solaris-26-free",
"title": "Solaris 2.6 free"
},
{
"url": "https://linux.slashdot.org/story/98/08/10/017205/free-java-and-c-design-tool-for-linux",
"title": "Free Java and C++ design tool for Linux"
},
{
"url": "https://slashdot.org/story/98/08/10/0033217/microsoft-marries-ie-50-and-office-2000",
"title": "Microsoft Marries IE 5.0 and Office 2000"
},
{
"url": "https://slashdot.org/story/98/08/09/2328225/intel-a-good-place-to-work",
"title": "Intel... a good place to work"
},
{
"url": "https://news.slashdot.org/story/98/08/09/1922258/pragmatic-image-wins-interest",
"title": "Pragmatic image wins interest"
},
{
"url": "https://slashdot.org/story/98/08/09/1853201/no-means-no",
"title": "No-means-No"
},
{
"url": "https://slashdot.org/story/98/08/09/1136242/things-to-do-on-a-sunday-afternoon",
"title": "Things to do on a Sunday Afternoon"
},
{
"url": "https://linux.slashdot.org/story/98/08/09/1129258/ask-slashdotperformance-testing",
"title": "Ask Slashdot:Performance Testing"
},
{
"url": "https://slashdot.org/story/98/08/09/1113253/netcraft-survey-turns-three",
"title": "Netcraft Survey Turns Three"
},
{
"url": "https://news.slashdot.org/story/98/08/09/119226/cdc-rebuttal-to-microsoft",
"title": "cDc Rebuttal to Microsoft"
},
{
"url": "https://tech.slashdot.org/story/98/08/09/113219/gnustep-becomes-screenshot-worthy",
"title": "GNUStep becomes Screenshot-worthy"
},
{
"url": "https://it.slashdot.org/story/98/08/08/120212/pro-spam-amendment-passes-house",
"title": "Pro-spam amendment passes house"
},
{
"url": "https://developers.slashdot.org/story/98/08/08/1021217/jini-to-be-open-source",
"title": "Jini to be open source"
},
{
"url": "https://news.slashdot.org/story/98/08/08/1016254/slow-death-of-dce",
"title": "Slow Death of DCE"
},
{
"url": "https://yro.slashdot.org/story/98/08/08/1014223/microsoft-forced-to-handover-source",
"title": "Microsoft forced to handover source"
},
{
"url": "https://news.slashdot.org/story/98/08/08/1011223/us-postal-e-mail",
"title": "US Postal E-Mail"
},
{
"url": "https://slashdot.org/story/98/08/08/0147248/no-one-ever-expects-the-open-source-revolution",
"title": "No one ever expects the open-source revolution!"
},
{
"url": "https://slashdot.org/story/98/08/08/0139226/microsoft-admits-solaris-is-better-than-nt",
"title": "Microsoft admits Solaris is better than NT"
},
{
"url": "https://slashdot.org/story/98/08/08/0119236/dec-conference-has-linux-lectures",
"title": "DEC conference has Linux lectures"
},
{
"url": "https://tech.slashdot.org/story/98/08/07/2216257/dangers-of-microwave-radiation",
"title": "Dangers of Microwave radiation"
},
{
"url": "https://news.slashdot.org/story/98/08/07/1435256/live-from-the-world-science-fiction-convention",
"title": "Live from the World Science Fiction Convention"
},
{
"url": "https://tech.slashdot.org/story/98/08/07/1430228/tiny-pong",
"title": "Tiny Pong"
},
{
"url": "https://news.slashdot.org/story/98/08/07/143219/review-advanced-programming-in-the-unix-environment",
"title": "Review: Advanced Programming in the Unix Environment"
},
{
"url": "https://linux.slashdot.org/story/98/08/07/1211238/cts-linus-article-now-available-in-english",
"title": "C'T's Linus article now available in English"
},
{
"url": "https://linux.slashdot.org/story/98/08/07/1046246/ask-slashdotmodern-technology",
"title": "Ask Slashdot:Modern Technology"
},
{
"url": "https://linux.slashdot.org/story/98/08/07/1030228/new-board-members-for-spi",
"title": "New Board Members for SPI"
},
{
"url": "https://slashdot.org/story/98/08/07/0950218/wp8-prerelease",
"title": "WP8 Prerelease"
},
{
"url": "https://hardware.slashdot.org/story/98/08/07/0930218/palm-pilot-icq-port",
"title": "Palm Pilot ICQ Port"
},
{
"url": "https://news.slashdot.org/story/98/08/07/0913245/back-orifice-windows-backdoor-broken",
"title": "Back Orifice Windows Backdoor broken"
},
{
"url": "https://linux.slashdot.org/story/98/08/07/0911240/linux-21115-and-gnome-026-released",
"title": "Linux 2.1.115 and Gnome 0.26 Released"
},
{
"url": "https://slashdot.org/story/98/08/06/1625242/intel-rebutts-ibm-soi-claims",
"title": "Intel rebutts IBM SOI claims"
},
{
"url": "https://slashdot.org/story/98/08/06/1345202/google-does-linux",
"title": "Google Does Linux"
},
{
"url": "https://linux.slashdot.org/story/98/08/06/1341210/installing-linux-on-a-powerbook-g3",
"title": "Installing Linux on a PowerBook G3"
},
{
"url": "https://linux.slashdot.org/story/98/08/06/1054237/atlanta-linux-showcase-update",
"title": "Atlanta Linux Showcase Update"
},
{
"url": "https://games.slashdot.org/story/98/08/06/1049225/diamond-announces-wireless-lan-for-gamers",
"title": "Diamond Announces Wireless LAN for Gamers"
},
{
"url": "https://slashdot.org/story/98/08/06/1046237/microsoft-thought-of-the-browser-first",
"title": "Microsoft Thought of the Browser First?"
},
{
"url": "https://games.slashdot.org/story/98/08/06/107223/truereality-now-under-gpl",
"title": "TrueReality now under GPL"
},
{
"url": "https://slashdot.org/story/98/08/06/101250/sun-and-ibm",
"title": "Sun and IBM?"
},
{
"url": "https://tech.slashdot.org/story/98/08/06/0942231/gnew-gnome-to-download",
"title": "Gnew Gnome to Download"
},
{
"url": "https://slashdot.org/story/98/08/06/0833249/interview-with-calderas-ransom-love",
"title": "Interview with Caldera's Ransom Love"
},
{
"url": "https://news.slashdot.org/story/98/08/05/1547244/slashdot-back-up",
"title": "Slashdot Back Up"
},
{
"url": "https://linux.slashdot.org/story/98/08/05/1458210/linus-grants-infomative-interview-to-ct",
"title": "Linus grants infomative interview to C'T"
},
{
"url": "https://books.slashdot.org/story/98/08/05/1148235/review-the-mythical-man-month-essays-on-software-engineering",
"title": "Review: The Mythical Man Month: Essays on Software Engineering"
},
{
"url": "https://news.slashdot.org/story/98/08/05/1132244/test-story",
"title": "Test Story"
},
{
"url": "https://slashdot.org/story/98/08/05/090222/whats-wrong-with-merced",
"title": "What's Wrong With Merced?"
},
{
"url": "https://news.slashdot.org/story/98/08/05/0858249/sun-ibm-offer-new-java-based-os",
"title": "Sun, IBM offer new Java-based OS"
},
{
"url": "https://linux.slashdot.org/story/98/08/05/0857255/ask-slashdottricky-ip-accounting",
"title": "Ask Slashdot:Tricky IP Accounting"
},
{
"url": "https://news.slashdot.org/story/98/08/05/0843215/mp3-cd-standard",
"title": "MP3 CD Standard"
},
{
"url": "https://slashdot.org/story/98/08/05/0838239/wipo-passes-us-house-of-representatives",
"title": "WIPO passes US House of Representatives"
},
{
"url": "https://linux.slashdot.org/story/98/08/05/0255213/zdtv-poll-about-linux",
"title": "ZDTV poll about Linux"
},
{
"url": "https://slashdot.org/story/98/08/04/1858213/ibm-likely-to-support-linux",
"title": "IBM likely to support Linux"
},
{
"url": "https://linux.slashdot.org/story/98/08/04/1850234/another-linus-interview",
"title": "Another Linus interview"
},
{
"url": "https://news.slashdot.org/story/98/08/04/1825205/quickies-catch-up",
"title": "Quickies Catch Up"
},
{
"url": "https://linux.slashdot.org/story/98/08/04/1818246/windows-user-discovers-linux",
"title": "Windows user discovers Linux"
},
{
"url": "https://ask.slashdot.org/story/98/08/04/188250/ask-slashdotlinux-and-as400s",
"title": "Ask Slashdot:Linux and AS400s"
},
{
"url": "https://tech.slashdot.org/story/98/08/04/1522230/phone-lie-detectors",
"title": "Phone Lie Detectors?"
},
{
"url": "https://tech.slashdot.org/story/98/08/04/1438240/india-buys-new-squeaky-toy",
"title": "India buys new squeaky toy"
},
{
"url": "https://slashdot.org/story/98/08/04/1031208/intel-sued-for-500m",
"title": "Intel sued for $500M"
},
{
"url": "https://linux.slashdot.org/story/98/08/04/0844213/performance-computing-on-dell-linux",
"title": "Performance Computing on Dell & Linux"
},
{
"url": "https://slashdot.org/story/98/08/04/0738242/al-gores-true-colors-on-privacy",
"title": "Al Gore's True Colors on Privacy"
},
{
"url": "https://news.slashdot.org/story/98/08/04/0717254/writings-from-esr",
"title": "Writings from ESR"
},
{
"url": "https://linux.slashdot.org/story/98/08/04/0714213/linux-21114",
"title": "Linux 2.1.114"
},
{
"url": "https://news.slashdot.org/story/98/08/04/0636244/movie-review-pi",
"title": "Movie Review: Pi"
},
{
"url": "https://linux.slashdot.org/story/98/08/03/192233/unscientific-study-shows-nt-crashes-more-than-linux",
"title": "Unscientific study shows NT crashes more than Linux"
},
{
"url": "https://developers.slashdot.org/story/98/08/03/190212/free-java-journal-subscription-for-a-year",
"title": "Free Java Journal subscription for a year"
},
{
"url": "https://slashdot.org/story/98/08/03/1511249/alpha-and-merced-news",
"title": "Alpha and Merced news"
},
{
"url": "https://tech.slashdot.org/story/98/08/03/1450208/help-make-communicator-45-uncrashable-on-linux",
"title": "Help Make Communicator 4.5 Uncrashable on Linux!"
},
{
"url": "https://slashdot.org/story/98/08/03/1448217/picosecond-imaging-circuit-analysis",
"title": "Picosecond Imaging Circuit Analysis"
},
{
"url": "https://linux.slashdot.org/story/98/08/03/1322257/ask-slashdotsoundcard-for-linux-x86",
"title": "Ask Slashdot:Soundcard for Linux-x86?"
},
{
"url": "https://news.slashdot.org/story/98/08/03/1321250/zdnet-coverage-of-back-orifice-at-defcon",
"title": "ZDnet coverage of Back Orifice at DEFCON"
},
{
"url": "https://news.slashdot.org/story/98/08/03/1014237/linux-editorial-at-pcweek",
"title": "Linux editorial at PCWeek"
},
{
"url": "https://news.slashdot.org/story/98/08/03/0943223/kevin-mitnick-miramax-protest",
"title": "Kevin Mitnick Miramax protest"
},
{
"url": "https://slashdot.org/story/98/08/03/0823250/ibm-to-announce-soi",
"title": "IBM to announce SOI"
},
{
"url": "https://news.slashdot.org/story/98/08/03/087207/review-otherland",
"title": "Review: Otherland"
},
{
"url": "https://news.slashdot.org/story/98/08/02/1144209/stampede-linux-slashnet-forum-transcript",
"title": "Stampede Linux SlashNET Forum Transcript"
},
{
"url": "https://slashdot.org/story/98/08/02/1143201/ibm-fined-8m-for-seling-rs6000-to-russia",
"title": "IBM fined $8M for seling RS6000 to Russia"
},
{
"url": "https://linux.slashdot.org/story/98/08/02/1133249/a-sunworld-linux-special",
"title": "A Sunworld Linux Special"
},
{
"url": "https://tech.slashdot.org/story/98/08/02/1132255/virtual-retinal-display---1280-x-1024-resolution",
"title": "Virtual Retinal Display - 1280 x 1024 resolution"
},
{
"url": "https://slashdot.org/story/98/08/02/0027215/1984-is-late-but",
"title": "1984 is late, but..."
},
{
"url": "https://news.slashdot.org/story/98/08/01/1018213/slashdot-s2k-bug-causes-mayhem",
"title": "Slashdot S2k Bug Causes Mayhem"
},
{
"url": "https://apple.slashdot.org/story/98/08/01/1011232/a-modest-proposal-for-apple",
"title": "A Modest Proposal For Apple"
},
{
"url": "https://linux.slashdot.org/story/98/08/01/109232/21113-kernel-release",
"title": "2.1.113 Kernel Release"
},
{
"url": "https://games.slashdot.org/story/98/08/01/102207/sin-for-linux",
"title": "SiN for Linux"
},
{
"url": "https://slashdot.org/story/98/08/01/0958203/cookie-paranoia-wins-awards",
"title": "Cookie Paranoia Wins Awards!"
},
{
"url": "https://linux.slashdot.org/story/98/08/01/0948200/we-just-typed-make",
"title": "We Just Typed Make"
},
{
"url": "https://it.slashdot.org/story/98/08/01/0941253/security-hole-in-hello-world",
"title": "Security hole in Hello World"
},
{
"url": "https://slashdot.org/story/98/08/01/0939203/microsoft-monitoring-media",
"title": "Microsoft Monitoring Media"
},
{
"url": "https://linux.slashdot.org/story/98/08/01/0026243/eu-law-and-dell-linux-support",
"title": "EU law and Dell Linux support"
},
{
"url": "https://tech.slashdot.org/story/98/07/31/1446236/the-changing-face-of-the-microprocessor-world",
"title": "The changing face of the Microprocessor world"
},
{
"url": "https://linux.slashdot.org/story/98/07/31/1440242/linux-vs-nt-in-engineering",
"title": "Linux vs NT in Engineering"
},
{
"url": "https://slashdot.org/story/98/07/31/1438228/foreign-tech-labor-for-us-bill-in-trouble",
"title": "Foreign Tech Labor for US Bill in Trouble"
},
{
"url": "https://news.slashdot.org/story/98/07/31/1027253/reviewsendmail",
"title": "Review:Sendmail"
},
{
"url": "https://features.slashdot.org/story/98/07/31/0958206/discussionimap-ldap-smtp-integration",
"title": "Discussion:IMAP, LDAP, SMTP Integration"
},
{
"url": "https://slashdot.org/story/98/07/31/0948249/super-smart-card",
"title": "Super Smart Card"
},
{
"url": "https://apple.slashdot.org/story/98/07/31/0913211/imac-hits-the-street",
"title": "iMac Hits The Street"
},
{
"url": "https://apple.slashdot.org/story/98/07/31/098255/mklinux-dr3-is-done",
"title": "MkLinux DR3 is done"
},
{
"url": "https://news.slashdot.org/story/98/07/31/0842201/gore-likes-personal-privacy",
"title": "Gore likes personal privacy"
},
{
"url": "https://news.slashdot.org/story/98/07/31/0826215/pentium-graffiti-is-hoax",
"title": "Pentium Graffiti is Hoax"
},
{
"url": "https://news.slashdot.org/story/98/07/31/0815241/slashnet-forum-tomorrow",
"title": "SlashNET Forum Tomorrow"
},
{
"url": "https://yro.slashdot.org/story/98/07/30/1440227/death-penalty-for-passing-on-email-addresses",
"title": "Death Penalty for passing on email addresses?"
},
{
"url": "https://slashdot.org/story/98/07/30/1413255/microsoft-counterclaims",
"title": "Microsoft counterclaims"
},
{
"url": "https://slashdot.org/story/98/07/30/146243/senate-panel-passes-3-year-no-net-tax",
"title": "Senate Panel passes 3 year No-Net Tax"
},
{
"url": "https://news.slashdot.org/story/98/07/30/1339204/netware-for-linux-10-is-out",
"title": "Netware for Linux 1.0 is out"
},
{
"url": "https://bsd.slashdot.org/story/98/07/30/1336226/walnut-creek-cdrom-sets-record",
"title": "Walnut Creek CDROM sets record"
},
{
"url": "https://tech.slashdot.org/story/98/07/30/1047225/gnome-ui-style-guide-conference-on-irc-this-sunday",
"title": "GNOME UI Style Guide Conference on IRC This Sunday"
},
{
"url": "https://it.slashdot.org/story/98/07/30/1042232/pentagon-vs-crypto",
"title": "Pentagon vs. Crypto"
},
{
"url": "https://news.slashdot.org/story/98/07/30/0928237/cdc-responds-to-questions-about-back-orifice",
"title": "cDc Responds to Questions About Back Orifice"
},
{
"url": "https://slashdot.org/story/98/07/29/220211/quicky-avalanche",
"title": "Quicky Avalanche"
},
{
"url": "https://slashdot.org/story/98/07/29/2141229/ibm-realises-the-importance-of-open-source",
"title": "IBM realises the importance of Open Source"
},
{
"url": "https://developers.slashdot.org/story/98/07/29/192255/open-source-critical-to-java-success",
"title": "Open Source critical to Java success"
},
{
"url": "https://tech.slashdot.org/story/98/07/29/1521216/amd-k7-tested",
"title": "AMD K7 tested"
},
{
"url": "https://slashdot.org/story/98/07/29/158223/intel-to-acquire-sco",
"title": "Intel to acquire SCO?"
},
{
"url": "https://slashdot.org/story/98/07/29/1457200/microsoft-loses-court-case-and-german-image",
"title": "Microsoft loses court-case, and German image"
},
{
"url": "https://news.slashdot.org/story/98/07/29/1327205/hi-tech-graffiti",
"title": "Hi Tech Graffiti"
},
{
"url": "https://news.slashdot.org/story/98/07/29/1229201/lan-times-religious-linux-experious",
"title": "Lan Times Religious Linux Experious"
},
{
"url": "https://slashdot.org/story/98/07/29/1221221/ms-ordered-to-show-caldera-win95-source",
"title": "MS Ordered to Show Caldera Win95 Source"
},
{
"url": "https://news.slashdot.org/story/98/07/29/1015228/batch-of-slashdot-tidbits",
"title": "Batch of Slashdot Tidbits"
},
{
"url": "https://developers.slashdot.org/story/98/07/29/0925225/petition-at-javalobby",
"title": "Petition at JavaLobby"
},
{
"url": "https://tech.slashdot.org/story/98/07/29/0916241/pc-chess-program-beats-grandmaster",
"title": "PC Chess Program beats GrandMaster"
},
{
"url": "https://news.slashdot.org/story/98/07/29/0722250/reviewsex-stupidity-and-greed-inside-the-american-movie-industry",
"title": "Review:Sex, Stupidity and Greed: Inside the American Movie Industry"
},
{
"url": "https://slashdot.org/story/98/07/29/0658249/digitalcompaq-pays-553-million-for-domain",
"title": "Digital/Compaq pays $5.53 million for domain!"
},
{
"url": "https://linux.slashdot.org/story/98/07/29/0657223/21112-released",
"title": "2.1.112 Released"
},
{
"url": "https://linux.slashdot.org/story/98/07/28/2358238/not-everybody-is-ready-to-support-linux",
"title": "Not everybody is ready to support Linux"
},
{
"url": "https://tech.slashdot.org/story/98/07/28/2347258/yin-and-yang",
"title": "Yin and Yang"
},
{
"url": "https://slashdot.org/story/98/07/28/2331249/opensource-poll-results",
"title": "OpenSource Poll Results"
},
{
"url": "https://slashdot.org/story/98/07/28/2321230/caldera-subpoened",
"title": "Caldera subpoened"
},
{
"url": "https://news.slashdot.org/story/98/07/28/233246/nasa-merges-with-fbi-well-not-really",
"title": "NASA merges with FBI (well, not really...)"
},
{
"url": "https://slashdot.org/story/98/07/28/1320244/back-office-remote-administration",
"title": "Back Office Remote Administration"
},
{
"url": "https://news.slashdot.org/story/98/07/28/137215/bell-atlantic-and-gte-merging",
"title": "Bell Atlantic and GTE Merging"
},
{
"url": "https://slashdot.org/story/98/07/28/1144231/doj-shifts-tactics-in-their-case-against-ms",
"title": "DOJ Shifts Tactics in their Case Against MS"
},
{
"url": "https://news.slashdot.org/story/98/07/28/1142238/more-ram-for-slashdot",
"title": "More RAM for Slashdot"
},
{
"url": "https://linux.slashdot.org/story/98/07/28/1128246/big-beowulf-clusters",
"title": "Big Beowulf Clusters?"
},
{
"url": "https://slashdot.org/story/98/07/28/112229/isp-subpoenas-and-user-privacy",
"title": "ISP Subpoenas and User Privacy"
},
{
"url": "https://slashdot.org/story/98/07/28/1057216/vote-for-internet-heros-in-forbes",
"title": "Vote for Internet Heros in Forbes"
},
{
"url": "https://tech.slashdot.org/story/98/07/28/1035208/want-to-buy-an-mpman",
"title": "Want to Buy an MPMan?"
},
{
"url": "https://games.slashdot.org/story/98/07/28/1053255/kali-for-linux",
"title": "Kali for Linux"
},
{
"url": "https://slashdot.org/story/98/07/28/1032250/mega-fast-computers-from-ibm",
"title": "Mega Fast Computers from IBM"
},
{
"url": "https://linux.slashdot.org/story/98/07/27/2138217/linuxppc-r4-released",
"title": "LinuxPPC R4 Released"
},
{
"url": "https://slashdot.org/story/98/07/27/1850215/intel-working-on-new-strongarm-designs-after-all",
"title": "Intel working on new StrongArm designs, after all"
},
{
"url": "https://slashdot.org/story/98/07/27/155232/jikes-open-source-discussion",
"title": "Jikes open-source discussion"
},
{
"url": "https://linux.slashdot.org/story/98/07/27/1454254/linus-on-forbes-cover",
"title": "Linus on Forbes Cover"
},
{
"url": "https://slashdot.org/story/98/07/27/1424232/intel-price-cuts",
"title": "Intel price cuts"
},
{
"url": "https://linux.slashdot.org/story/98/07/27/1142232/infoworld-linux-article",
"title": "InfoWorld Linux Article"
},
{
"url": "https://news.slashdot.org/story/98/07/27/0958239/more-slashdot-notes",
"title": "More Slashdot Notes"
},
{
"url": "https://apple.slashdot.org/story/98/07/27/0957232/petition-apple-to-release-g3-specs",
"title": "Petition Apple to release G3 specs"
},
{
"url": "https://features.slashdot.org/story/98/07/27/0943253/featurereal-audio",
"title": "Feature:Real Audio"
},
{
"url": "https://slashdot.org/story/98/07/27/0832226/stock-mkt-passes-y2k-simulation",
"title": "Stock Mkt passes Y2k simulation"
},
{
"url": "https://games.slashdot.org/story/98/07/27/0657237/lucasarts-lawyers-poke-out-game-developers-eye",
"title": "LucasArts Lawyers Poke Out Game Developer's Eye"
},
{
"url": "https://yro.slashdot.org/story/98/07/26/2027251/more-legal-nonsense",
"title": "More legal nonsense"
},
{
"url": "https://linux.slashdot.org/story/98/07/26/1853211/stampede-086-released",
"title": "Stampede 0.86 Released"
},
{
"url": "https://linux.slashdot.org/story/98/07/26/1850218/linux-21111-released",
"title": "Linux 2.1.111 Released"
},
{
"url": "https://slashdot.org/story/98/07/26/104239/human-interface-critcismscompariasons",
"title": "Human Interface critcisms/compariasons"
},
{
"url": "https://news.slashdot.org/story/98/07/26/102223/slashdot-notes",
"title": "Slashdot Notes"
},
{
"url": "https://news.slashdot.org/story/98/07/26/0957243/partnership-between-att-and-british-telecom",
"title": "Partnership Between AT&T and British Telecom"
},
{
"url": "https://linux.slashdot.org/story/98/07/26/0555209/linux-is-like-tom-bombadil",
"title": "Linux is like Tom Bombadil"
},
{
"url": "https://news.slashdot.org/story/98/07/25/1129200/featuresiggraph-98-updatelinux-3d-sig",
"title": "Feature:Siggraph 98 Update/LINUX 3D SIG"
},
{
"url": "https://news.slashdot.org/story/98/07/25/1119216/the-npr-altos-now-in-realaudio",
"title": "The NPR AltOS Now in RealAudio"
},
{
"url": "https://ask.slashdot.org/story/98/07/25/1115234/ask-slashdotcrazed-booting",
"title": "Ask Slashdot:Crazed Booting"
},
{
"url": "https://slashdot.org/story/98/07/25/119254/why-all-guis-are-not-born-equal",
"title": "Why all GUI's are not born equal"
},
{
"url": "https://tech.slashdot.org/story/98/07/25/1112234/robotica-98",
"title": "Robotica '98"
},
{
"url": "https://slashdot.org/story/98/07/25/119200/warp-rumors-page",
"title": "Warp Rumors Page"
},
{
"url": "https://linux.slashdot.org/story/98/07/25/117228/yet-another-linux-distribution",
"title": "Yet another linux distribution"
},
{
"url": "https://slashdot.org/story/98/07/25/115239/gtkorg-receives-update",
"title": "GTK.org receives update"
},
{
"url": "https://news.slashdot.org/story/98/07/25/112241/jamaican-whiz-kid-technology-consultant",
"title": "Jamaican Whiz Kid Technology Consultant"
},
{
"url": "https://slashdot.org/story/98/07/25/111204/bill-gates-and-steve-ballmer-are-funny",
"title": "Bill Gate's and Steve Ballmer Are Funny"
},
{
"url": "https://slashdot.org/story/98/07/24/1358233/a-cio-perspective",
"title": "A CIO perspective"
},
{
"url": "https://news.slashdot.org/story/98/07/24/132248/vnc-goes-gpl",
"title": "VNC goes GPL"
},
{
"url": "https://news.slashdot.org/story/98/07/24/1220237/apachecon-coming-in-october",
"title": "ApacheCon Coming in October"
},
{
"url": "https://news.slashdot.org/story/98/07/24/125222/realnetwork-bug-at-fault-not-microsoft",
"title": "RealNetwork Bug At Fault, Not Microsoft.."
},
{
"url": "https://news.slashdot.org/story/98/07/24/1038240/defcon-60",
"title": "DefCon 6.0"
},
{
"url": "https://games.slashdot.org/story/98/07/24/0844248/crackdot-is-saved",
"title": "Crack.dot is Saved"
},
{
"url": "https://linux.slashdot.org/story/98/07/24/0841228/ask-slashdotlinux-voice-recognition",
"title": "Ask Slashdot:Linux Voice Recognition"
},
{
"url": "https://yro.slashdot.org/story/98/07/24/0020236/interesting-read-at-salon-magazine",
"title": "Interesting read at Salon Magazine"
},
{
"url": "https://slashdot.org/story/98/07/23/2257246/should-manuals-be-gpld-too",
"title": "Should manuals be GPL'd too?"
},
{
"url": "https://slashdot.org/story/98/07/23/2227231/isa-is-dead-long-live-isa",
"title": "ISA is dead, long live ISA"
},
{
"url": "https://slashdot.org/story/98/07/23/2211254/jikes-update",
"title": "Jikes update"
},
{
"url": "https://apple.slashdot.org/story/98/07/23/205234/the-apple-ms-relationship",
"title": "The Apple-MS relationship"
},
{
"url": "https://news.slashdot.org/story/98/07/23/201252/radio-show-to-listen",
"title": "Radio Show to Listen"
},
{
"url": "https://linux.slashdot.org/story/98/07/23/1945237/debian-turns-20",
"title": "Debian Turns 2.0"
},
{
"url": "https://slashdot.org/story/98/07/23/1420228/intel-to-wait-on-copper",
"title": "Intel to wait on copper"
},
{
"url": "https://tech.slashdot.org/story/98/07/23/140242/first-major-label-mp3-release",
"title": "First Major Label MP3 Release"
},
{
"url": "https://slashdot.org/story/98/07/23/1350252/glasser-testifies-against-ms",
"title": "Glasser Testifies Against MS"
},
{
"url": "https://it.slashdot.org/story/98/07/23/116239/encryption-tv-ads",
"title": "Encryption TV Ads"
},
{
"url": "https://news.slashdot.org/story/98/07/23/110236/linux-enthusiast-successfully-loads-slashdot",
"title": "Linux Enthusiast Successfully Loads Slashdot"
},
{
"url": "https://news.slashdot.org/story/98/07/23/1058259/perl5005-released",
"title": "Perl5.005 Released"
},
{
"url": "https://tech.slashdot.org/story/98/07/23/0814210/more-non-beige-cases",
"title": "More non-beige Cases"
},
{
"url": "https://linux.slashdot.org/story/98/07/23/087250/debian-20-release-tonight",
"title": "Debian 2.0 Release Tonight"
},
{
"url": "https://tech.slashdot.org/story/98/07/22/1459215/alpha-hits-21264",
"title": "Alpha hits 21264"
},
{
"url": "https://news.slashdot.org/story/98/07/22/1430228/informix-embraces-linux",
"title": "Informix Embraces Linux"
},
{
"url": "https://linux.slashdot.org/story/98/07/22/1423253/xig-launches-own-linux-distribution",
"title": "Xig launches own linux distribution"
},
{
"url": "https://it.slashdot.org/story/98/07/22/1412208/des-cracker-for-sale",
"title": "DES cracker for sale"
},
{
"url": "https://tech.slashdot.org/story/98/07/22/125206/cool-new-virus",
"title": "Cool new virus"
},
{
"url": "https://games.slashdot.org/story/98/07/22/0959236/linux-gaming-site-opens",
"title": "Linux Gaming Site Opens"
},
{
"url": "https://news.slashdot.org/story/98/07/22/0955225/featurelinux-and-corporations",
"title": "Feature:Linux and Corporations"
},
{
"url": "https://slashdot.org/story/98/07/22/0951214/balmer-new-microsoft-pres",
"title": "Balmer new Microsoft Pres"
},
{
"url": "https://slashdot.org/story/98/07/22/0945229/gnus-free-software-awards",
"title": "GNU's Free Software Awards"
},
{
"url": "https://yro.slashdot.org/story/98/07/22/0756229/cda-its-baacckk",
"title": "CDA: It's baacckk"
},
{
"url": "https://slashdot.org/story/98/07/22/0713228/more-ourfirsttime-news",
"title": "More OurFirstTime news"
},
{
"url": "https://it.slashdot.org/story/98/07/22/077240/tidbits-spam-suit",
"title": "TidBits Spam Suit"
},
{
"url": "https://games.slashdot.org/story/98/07/22/074240/crack-dot-com-in-financial-troubles",
"title": "Crack dot com in Financial Troubles"
},
{
"url": "https://bsd.slashdot.org/story/98/07/21/2314211/freebsd-227-released",
"title": "FreeBSD 2.2.7 Released"
},
{
"url": "https://developers.slashdot.org/story/98/07/21/1955212/ibm-releases-java-compiler-for-linux",
"title": "IBM releases Java compiler for Linux"
},
{
"url": "https://slashdot.org/story/98/07/21/1829219/korea-maintains-national-sovereignty",
"title": "Korea maintains national sovereignty"
},
{
"url": "https://linux.slashdot.org/story/98/07/21/1638224/oracle-and-netscape-give-details-about-linux-port",
"title": "Oracle and Netscape give details about Linux port"
},
{
"url": "https://news.slashdot.org/story/98/07/21/1515222/y2k-bug-could-cause-russia-to-launch-nukes",
"title": "Y2K bug could cause Russia to launch Nukes"
},
{
"url": "https://tech.slashdot.org/story/98/07/21/1512234/robolassie-to-the-rescue",
"title": "RoboLassie to the Rescue"
},
{
"url": "https://news.slashdot.org/story/98/07/21/159251/more-press-on-newscom",
"title": "More Press on News.com"
},
{
"url": "https://slashdot.org/story/98/07/21/1049204/navynt-story",
"title": "Navy/NT story"
},
{
"url": "https://linux.slashdot.org/story/98/07/21/0927258/21110-kernel-released",
"title": "2.1.110 Kernel Released"
},
{
"url": "https://ask.slashdot.org/story/98/07/21/097233/ask-slashdotupss",
"title": "Ask Slashdot:UPSs"
},
{
"url": "https://tech.slashdot.org/story/98/07/21/0851253/wipo-passes-committe",
"title": "WIPO Passes Committe"
},
{
"url": "https://news.slashdot.org/story/98/07/21/0847213/divx-back-in-the-news",
"title": "DivX Back in the News"
},
{
"url": "https://tech.slashdot.org/story/98/07/21/0841235/from-the-floor-of-siggraph-98",
"title": "From the floor of SIGGRAPH 98"
},
{
"url": "https://it.slashdot.org/story/98/07/20/1643217/slashdot-gaining-in-rc5",
"title": "Slashdot Gaining in RC5"
},
{
"url": "https://it.slashdot.org/story/98/07/20/1543253/washington-state-and-bulls-eye",
"title": "Washington State and Bull's Eye"
},
{
"url": "https://slashdot.org/story/98/07/20/1543233/ms-forces-acer",
"title": "MS forces Acer"
},
{
"url": "https://tech.slashdot.org/story/98/07/20/1541208/motorola-to-transfer-copper-chip-making-to-amd",
"title": "Motorola to Transfer Copper Chip Making to AMD"
},
{
"url": "https://slashdot.org/story/98/07/20/1444226/intel-to-integrate-i740-into-chipset",
"title": "Intel to integrate i740 into chipset"
},
{
"url": "https://linux.slashdot.org/story/98/07/20/1241248/linux-used-in-new-atom-smasher",
"title": "Linux Used In New Atom Smasher"
},
{
"url": "https://news.slashdot.org/story/98/07/20/0914250/the-3rd-annual-obfuscated-perl-contest",
"title": "The 3rd Annual Obfuscated Perl Contest"
},
{
"url": "https://news.slashdot.org/story/98/07/20/0849210/slashdot-migration",
"title": "Slashdot Migration"
},
{
"url": "https://news.slashdot.org/story/98/07/20/0819202/featuresecurity-through-obscurity",
"title": "Feature:Security Through Obscurity"
},
{
"url": "https://tech.slashdot.org/story/98/07/20/0814209/new-life-for-dos",
"title": "New life for DOS?"
},
{
"url": "https://news.slashdot.org/story/98/07/20/082202/opensource-streaming-media-system",
"title": "Opensource Streaming Media System"
},
{
"url": "https://slashdot.org/story/98/07/20/0756230/internet-is-free-speech",
"title": "Internet is Free Speech"
},
{
"url": "https://news.slashdot.org/story/98/07/19/1415219/encryption-sw-isnotis-a-protected-free-speech",
"title": "Encryption SW isnot/is a Protected Free Speech"
},
{
"url": "https://linux.slashdot.org/story/98/07/19/1413242/detailed-future-of-linux-report",
"title": "detailed `Future of Linux' report"
},
{
"url": "https://news.slashdot.org/story/98/07/18/1641231/open-source-publication-market",
"title": "Open Source Publication Market"
},
{
"url": "https://ask.slashdot.org/story/98/07/18/1321229/ask-slashdotprogramming-styles",
"title": "Ask Slashdot:Programming Styles"
},
{
"url": "https://news.slashdot.org/story/98/07/18/1156236/slashdot-irc-bot-online",
"title": "Slashdot IRC Bot Online"
},
{
"url": "https://tech.slashdot.org/story/98/07/18/1111256/beta-testers-needed-for-a-project",
"title": "Beta Testers Needed For a Project"
},
{
"url": "https://tech.slashdot.org/story/98/07/18/116224/enlightenment-014-release",
"title": "Enlightenment 0.14 release"
},
{
"url": "https://slashdot.org/story/98/07/18/112246/pentium-iis-to-reach-700mhz",
"title": "Pentium IIs to reach 700mHz"
},
{
"url": "https://news.slashdot.org/story/98/07/18/110238/our-first-time-hoax",
"title": "Our First Time Hoax"
},
{
"url": "https://tech.slashdot.org/story/98/07/18/0233204/themesorg-updates",
"title": "Themes.Org Updates"
},
{
"url": "https://yro.slashdot.org/story/98/07/17/2312226/privacy-alert",
"title": "Privacy Alert"
},
{
"url": "https://linux.slashdot.org/story/98/07/17/2021236/more-future-of-linux-reports",
"title": "More Future of Linux reports"
},
{
"url": "https://linux.slashdot.org/story/98/07/17/1934203/oracle-on-linux",
"title": "Oracle on Linux!"
},
{
"url": "https://news.slashdot.org/story/98/07/17/1929259/friday-quickies",
"title": "Friday Quickies"
},
{
"url": "https://slashdot.org/story/98/07/17/151213/us-it-lead-is-at-risk",
"title": "US IT lead is at risk"
},
{
"url": "https://games.slashdot.org/story/98/07/17/1349209/westwood-games-for-linux",
"title": "Westwood Games for Linux"
},
{
"url": "https://news.slashdot.org/story/98/07/17/1313230/partition-magic-40",
"title": "Partition Magic 4.0"
},
{
"url": "https://tech.slashdot.org/story/98/07/17/1221221/carnegie-mellons-wireless-campus",
"title": "Carnegie Mellon's Wireless Campus"
},
{
"url": "https://games.slashdot.org/story/98/07/17/1123253/dave-taylors-game-coders-conference",
"title": "Dave Taylor's Game Coders Conference"
},
{
"url": "https://news.slashdot.org/story/98/07/17/1122224/review-not-just-java",
"title": "Review: Not Just Java"
},
{
"url": "https://it.slashdot.org/story/98/07/17/0925249/spammer-pays",
"title": "Spammer Pays!"
},
{
"url": "https://news.slashdot.org/story/98/07/17/0923228/mp3s-gets-more-recording-industry-attention",
"title": "MP3s Gets More Recording Industry Attention"
},
{
"url": "https://tech.slashdot.org/story/98/07/17/0921229/the-coolest-displays",
"title": "The Coolest Displays"
},
{
"url": "https://games.slashdot.org/story/98/07/17/0914215/id-seeks-opengllinux-help",
"title": "id Seeks OpenGL/Linux Help"
},
{
"url": "https://linux.slashdot.org/story/98/07/17/0911248/djvu-plug-in-available-on-linuxirixsolarismac",
"title": "DjVu plug-in available on Linux/Irix/Solaris/Mac"
},
{
"url": "https://it.slashdot.org/story/98/07/17/098253/des-cracked-in-56-hours-by-a-250k-machine",
"title": "DES Cracked in 56 hours, by a $250K machine"
},
{
"url": "https://slashdot.org/story/98/07/17/0848208/sun-exploiting-wintel",
"title": "Sun exploiting Wintel"
},
{
"url": "https://news.slashdot.org/story/98/07/16/2222213/linux-21109-released",
"title": "Linux 2.1.109 Released"
},
{
"url": "https://news.slashdot.org/story/98/07/16/1929259/thursday-quickies",
"title": "Thursday Quickies"
},
{
"url": "https://slashdot.org/story/98/07/16/1555220/corel-netwinder-discounts",
"title": "Corel Netwinder Discounts"
},
{
"url": "https://linux.slashdot.org/story/98/07/16/1544233/cnn-on-linux",
"title": "CNN on Linux"
},
{
"url": "https://slashdot.org/story/98/07/16/1535255/beos-gaining-momentum",
"title": "BeOS Gaining Momentum"
},
{
"url": "https://ask.slashdot.org/story/98/07/16/1533254/ask-slashdotisdn-and-linux",
"title": "Ask Slashdot:ISDN and Linux"
},
{
"url": "https://tech.slashdot.org/story/98/07/16/1340235/tiny-cmos-video-chips-from-lucent",
"title": "Tiny CMOS Video Chips from Lucent"
},
{
"url": "https://bsd.slashdot.org/story/98/07/16/1328227/netbsd-gains-usb-support",
"title": "NetBSD Gains USB Support"
},
{
"url": "https://news.slashdot.org/story/98/07/16/1238249/slashdotwhat-is-happening-here",
"title": "Slashdot:What is Happening Here?"
},
{
"url": "https://news.slashdot.org/story/98/07/16/0925233/bounds-checking-for-c",
"title": "Bounds Checking for C?"
},
{
"url": "https://news.slashdot.org/story/98/07/16/0915230/ingres-sql-database-for-linux",
"title": "Ingres SQL database for Linux"
},
{
"url": "https://tech.slashdot.org/story/98/07/16/0913237/official-word-on-enlightenment-dr14",
"title": "Official Word on Enlightenment DR14"
},
{
"url": "https://slashdot.org/story/98/07/16/0912215/lego-mindstorms-beta-testers",
"title": "Lego Mindstorms Beta Testers"
},
{
"url": "https://news.slashdot.org/story/98/07/15/1951233/wednesday-quickies",
"title": "Wednesday Quickies"
},
{
"url": "https://news.slashdot.org/story/98/07/15/1541204/read-this-please",
"title": "Read This Please."
},
{
"url": "https://linux.slashdot.org/story/98/07/15/1533249/indys-and-linux",
"title": "Indys and Linux"
},
{
"url": "https://it.slashdot.org/story/98/07/15/1433202/slashdot-takes-lead-in-des-ii-2",
"title": "Slashdot Takes Lead in DES-II-2"
},
{
"url": "https://slashdot.org/story/98/07/15/1041233/brit-carrier-could-get-mci-network",
"title": "Brit carrier could get MCI network"
},
{
"url": "https://news.slashdot.org/story/98/07/15/0935248/featurebruce-rebuts-linus-on-kdegnome",
"title": "Feature:Bruce Rebuts Linus on KDE/Gnome"
},
{
"url": "https://tech.slashdot.org/story/98/07/15/0916205/unix-license-plate-sold",
"title": "Unix License Plate Sold"
},
{
"url": "https://news.slashdot.org/story/98/07/15/085230/mystery-project-this-afternoon",
"title": "Mystery Project this Afternoon"
},
{
"url": "https://news.slashdot.org/story/98/07/15/081224/are-you-going-to-be-murdered",
"title": "Are you Going to be Murdered?"
},
{
"url": "https://slashdot.org/story/98/07/15/0758207/sun-unveils-jini",
"title": "Sun unveils Jini"
},
{
"url": "https://slashdot.org/story/98/07/15/0755256/compaq-says-merced-delay-opens-door-for-alpha",
"title": "Compaq says Merced Delay Opens Door for Alpha"
},
{
"url": "https://linux.slashdot.org/story/98/07/15/0749215/brian-paul-mesa-need-help-with-3dnow",
"title": "Brian Paul & Mesa Need Help With 3dnow"
},
{
"url": "https://ask.slashdot.org/story/98/07/15/0745234/ask-slashdot-open-source-jobs",
"title": "Ask Slashdot: Open Source Jobs"
},
{
"url": "https://tech.slashdot.org/story/98/07/15/0741228/netscape-releases-communicator-45b1",
"title": "Netscape releases Communicator 4.5b1"
},
{
"url": "https://slashdot.org/story/98/07/14/1740247/caldera-adopting-kde",
"title": "Caldera Adopting KDE"
},
{
"url": "https://linux.slashdot.org/story/98/07/14/1452238/the-corps-and-linux",
"title": "The corps and Linux"
},
{
"url": "https://news.slashdot.org/story/98/07/14/146209/cobalt-announces-the-cobalt-raq",
"title": "Cobalt announces the Cobalt RaQ"
},
{
"url": "https://it.slashdot.org/story/98/07/14/146233/ftc-acknowledges-impact-of-spam",
"title": "FTC acknowledges impact of SPAM"
},
{
"url": "https://news.slashdot.org/story/98/07/14/1348245/the-day-of-the-virtual-machine",
"title": "The Day of the Virtual Machine"
},
{
"url": "https://linux.slashdot.org/story/98/07/14/1217214/informix-on-linux",
"title": "Informix on Linux"
},
{
"url": "https://ask.slashdot.org/story/98/07/14/0932243/ask-slashdot-what-graphic-card-for-2d",
"title": "Ask Slashdot: What Graphic Card for 2D?"
},
{
"url": "https://news.slashdot.org/story/98/07/14/0922234/featuresolaris-and-the-desktop",
"title": "Feature:Solaris and the Desktop"
},
{
"url": "https://slashdot.org/story/98/07/14/0913216/daily-diffs-open-source-monitoring",
"title": "Daily Diffs Open Source Monitoring"
},
{
"url": "https://linux.slashdot.org/story/98/07/14/0857214/slinux-discussion-list",
"title": "Slinux Discussion List"
},
{
"url": "https://news.slashdot.org/story/98/07/14/0856249/slashdot-irc-bot-and-mystery-project",
"title": "Slashdot IRC Bot and Mystery Project"
},
{
"url": "https://slashdot.org/story/98/07/14/0848245/http-ng-proposed",
"title": "HTTP-NG Proposed"
},
{
"url": "https://slashdot.org/story/98/07/13/2123259/pennsylvania-goes-nt",
"title": "Pennsylvania Goes NT"
},
{
"url": "https://it.slashdot.org/story/98/07/13/2116209/skipjack-analyzed",
"title": "Skipjack Analyzed"
},
{
"url": "https://tech.slashdot.org/story/98/07/13/2054249/flaming-almost-killed-unix-once-before",
"title": "Flaming almost killed Unix once before"
},
{
"url": "https://linux.slashdot.org/story/98/07/13/1735257/linux-2035-released",
"title": "Linux 2.0.35 Released"
},
{
"url": "https://linux.slashdot.org/story/98/07/13/1723219/linus-sightings",
"title": "Linus Sightings"
},
{
"url": "https://it.slashdot.org/story/98/07/13/1146215/smart-card-security",
"title": "Smart Card Security"
},
{
"url": "https://it.slashdot.org/story/98/07/13/116211/des-ii-2-gets-underway",
"title": "DES-II-2 Gets Underway"
},
{
"url": "https://news.slashdot.org/story/98/07/13/0835229/featurea-plea-for-c",
"title": "Feature:A Plea for C++"
},
{
"url": "https://slashdot.org/story/98/07/13/0820243/isp-ordered-to-reveal-names",
"title": "ISP Ordered to Reveal Names"
},
{
"url": "https://tech.slashdot.org/story/98/07/12/239217/kde-hits-10",
"title": "KDE Hits 1.0"
},
{
"url": "https://news.slashdot.org/story/98/07/12/1937211/minor-slashdot-and-mystery-project-things",
"title": "Minor Slashdot (and Mystery Project) Things"
},
{
"url": "https://games.slashdot.org/story/98/07/12/1713252/project-unreality-in-limbo",
"title": "Project Unreality in limbo"
},
{
"url": "https://linux.slashdot.org/story/98/07/12/1010255/linuxppc-plus-mklinux-in-one-distribution",
"title": "LinuxPPC plus MkLinux in one distribution"
},
{
"url": "https://news.slashdot.org/story/98/07/12/102256/dan-gillmor-tells-it-like-it-should-be",
"title": "Dan Gillmor Tells it like it Should Be"
},
{
"url": "https://news.slashdot.org/story/98/07/12/0958200/sunsite-going-down-for-os-upgrade",
"title": "Sunsite Going Down for OS Upgrade"
},
{
"url": "https://games.slashdot.org/story/98/07/11/147229/snes9x-source-released",
"title": "Snes9x Source Released"
},
{
"url": "https://ask.slashdot.org/story/98/07/11/1015241/ask-slashdotsystem-crackers",
"title": "Ask Slashdot:System Crackers"
},
{
"url": "https://slashdot.org/story/98/07/11/1014214/a-geek-turned-lawyers-guide-to-hotlinking",
"title": "A Geek-turned-lawyer's Guide to Hotlinking"
},
{
"url": "https://developers.slashdot.org/story/98/07/11/1012211/jazilla-update",
"title": "Jazilla Update"
},
{
"url": "https://linux.slashdot.org/story/98/07/11/108243/linus-on-kde-vs-gnome-flame-wars",
"title": "Linus on KDE vs. GNOME flame wars"
},
{
"url": "https://slashdot.org/story/98/07/11/103212/virtual-creatures-project",
"title": "Virtual Creatures Project"
},
{
"url": "https://tech.slashdot.org/story/98/07/11/102221/passing-of-a-true-hacker",
"title": "Passing of a True Hacker"
},
{
"url": "https://news.slashdot.org/story/98/07/10/1736244/the-last-10-minutes",
"title": "The Last 10 Minutes"
},
{
"url": "https://linux.slashdot.org/story/98/07/10/178204/linux-resources-revamp",
"title": "Linux Resources Revamp"
},
{
"url": "https://news.slashdot.org/story/98/07/10/1512231/weekend-quickies",
"title": "Weekend Quickies"
},
{
"url": "https://slashdot.org/story/98/07/10/1246238/blow-to-alpha",
"title": "Blow to Alpha"
},
{
"url": "https://slashdot.org/story/98/07/10/1243231/debunking-the-terra-server",
"title": "Debunking the Terra Server"
},
{
"url": "https://news.slashdot.org/story/98/07/10/0832228/featurecel-phone-service",
"title": "Feature:Cel Phone Service"
},
{
"url": "https://linux.slashdot.org/story/98/07/10/0819237/jdk-using-native-linux-threads",
"title": "JDK Using Native Linux Threads"
},
{
"url": "https://news.slashdot.org/story/98/07/10/072251/avalon-in-the-news",
"title": "Avalon in the News"
},
{
"url": "https://tech.slashdot.org/story/98/07/10/0657241/scos-troubles-in-india-an-oppurtunity-for-linux",
"title": "SCO's troubles in India an oppurtunity for Linux"
},
{
"url": "https://linux.slashdot.org/story/98/07/10/0654216/linux-article-in-the-economist",
"title": "Linux Article in the Economist"
},
{
"url": "https://linux.slashdot.org/story/98/07/10/0158221/ca-to-port-ingres-ii-to-linux",
"title": "CA to port Ingres II to Linux"
},
{
"url": "https://tech.slashdot.org/story/98/07/10/0151223/superconducting-carbon-fiber",
"title": "Superconducting Carbon-Fiber"
},
{
"url": "https://slashdot.org/story/98/07/09/1528235/debian-developers-start-hurd-distro",
"title": "Debian Developers Start Hurd Distro"
},
{
"url": "https://tech.slashdot.org/story/98/07/09/1514251/overrated-openness",
"title": "Overrated Openness"
},
{
"url": "https://slashdot.org/story/98/07/09/1345234/wintel-enterprise-attack-slowing",
"title": "Wintel Enterprise Attack Slowing?"
},
{
"url": "https://slashdot.org/story/98/07/09/1237242/digitacompaq-to-offer-linux-ready-alphaserver",
"title": "Digita/Compaq to offer Linux ready Alphaserver?"
},
{
"url": "https://it.slashdot.org/story/98/07/09/1229203/us-relaxes-licensing-grip-on-encryption",
"title": "U.S. Relaxes Licensing Grip on Encryption"
},
{
"url": "https://tech.slashdot.org/story/98/07/09/1227210/more-transmeta-speculation",
"title": "More Transmeta Speculation"
},
{
"url": "https://apple.slashdot.org/story/98/07/09/1221247/rhapsody-returns",
"title": "Rhapsody Returns"
},
{
"url": "https://books.slashdot.org/story/98/07/09/118227/review-effective-c",
"title": "Review: Effective C++"
},
{
"url": "https://news.slashdot.org/story/98/07/09/109221/slashnet-forum-log-on-freedows",
"title": "SlashNET forum log on Freedows"
},
{
"url": "https://news.slashdot.org/story/98/07/09/102214/amiga-makes-the-news",
"title": "Amiga Makes The News"
},
{
"url": "https://tech.slashdot.org/story/98/07/09/0958246/the-mersenne-twister",
"title": "The Mersenne Twister"
},
{
"url": "https://news.slashdot.org/story/98/07/09/0917241/hughes-has-more-satellite-problems",
"title": "Hughes has more satellite problems"
},
{
"url": "https://it.slashdot.org/story/98/07/09/0912248/rc5-update",
"title": "RC5 update"
},
{
"url": "https://slashdot.org/story/98/07/09/0833237/pine-mailer-hits-version-40-milestone",
"title": "Pine mailer hits version 4.0 milestone"
},
{
"url": "https://slashdot.org/story/98/07/08/2323223/maxwell-word-processor-update",
"title": "Maxwell Word Processor (Update)"
},
{
"url": "https://news.slashdot.org/story/98/07/08/2224223/freeamp-gpl-mp3-player",
"title": "FreeAmp GPL MP3 player"
},
{
"url": "https://slashdot.org/story/98/07/08/2141244/windows-98-new-partition-behaviour",
"title": "Windows 98 new partition behaviour"
},
{
"url": "https://slashdot.org/story/98/07/08/2125239/isc-modifying-business-model",
"title": "ISC Modifying Business Model"
},
{
"url": "https://linux.slashdot.org/story/98/07/08/1824208/debian-20-enters-beta-2",
"title": "Debian 2.0 Enters Beta 2"
},
{
"url": "https://it.slashdot.org/story/98/07/08/1251211/distributednet-rc-5-status",
"title": "Distributed.net RC-5 status"
},
{
"url": "https://games.slashdot.org/story/98/07/08/1249234/john-romeros-daikatana",
"title": "John Romero's Daikatana"
},
{
"url": "https://linux.slashdot.org/story/98/07/08/1027245/excellent-linux-support",
"title": "Excellent Linux Support"
},
{
"url": "https://linux.slashdot.org/story/98/07/08/1025227/atlanta-linux-showcase-registration",
"title": "Atlanta Linux Showcase Registration"
},
{
"url": "https://hardware.slashdot.org/story/98/07/08/1014247/wireless-messaging-for-the-pilot",
"title": "Wireless Messaging for the Pilot"
},
{
"url": "https://apple.slashdot.org/story/98/07/08/0857254/apple-posts-profit",
"title": "Apple Posts Profit"
},
{
"url": "https://tech.slashdot.org/story/98/07/08/0853214/nec-chops-flat-panel-prices",
"title": "NEC Chops Flat Panel Prices"
},
{
"url": "https://slashdot.org/story/98/07/08/0850233/disney-china-side-by-side",
"title": "Disney & China: Side by Side?"
},
{
"url": "https://slashdot.org/story/98/07/08/0846227/mci-worldcom-merger-conditionally-approved",
"title": "MCI-WorldCom Merger Conditionally Approved"
},
{
"url": "https://news.slashdot.org/story/98/07/08/0841253/bbs-turned-groupware",
"title": "BBS Turned Groupware?"
},
{
"url": "https://news.slashdot.org/story/98/07/07/1339224/sgi-killing-cosmo-software",
"title": "SGI killing Cosmo Software"
},
{
"url": "https://slashdot.org/story/98/07/07/1313221/seven-accused-in-post-chat-attack",
"title": "Seven Accused in Post-Chat Attack"
},
{
"url": "https://tech.slashdot.org/story/98/07/07/1235214/alphalinux-supercomputing",
"title": "Alpha/Linux Supercomputing"
},
{
"url": "https://hardware.slashdot.org/story/98/07/07/1148218/palm-founders-leaving",
"title": "Palm Founders Leaving"
},
{
"url": "https://tech.slashdot.org/story/98/07/07/0857253/featureremembering-the-star",
"title": "Feature:Remembering the Star"
},
{
"url": "https://tech.slashdot.org/story/98/07/07/0835214/fingerprint-recognition-in-usb-keyboards",
"title": "Fingerprint Recognition in USB Keyboards"
},
{
"url": "https://it.slashdot.org/story/98/07/07/0831241/judge-upholds-crypto-restrictions",
"title": "Judge Upholds Crypto Restrictions"
},
{
"url": "https://tech.slashdot.org/story/98/07/07/0830212/kde-pre10-oficially-announced",
"title": "KDE pre1.0 Oficially Announced"
},
{
"url": "https://slashdot.org/story/98/07/06/1831233/response-to-open-source-messaging-system-proposal",
"title": "Response to Open Source Messaging System Proposal"
},
{
"url": "https://slashdot.org/story/98/07/06/1826209/security-advisory",
"title": "Security Advisory"
},
{
"url": "https://slashdot.org/story/98/07/06/185237/new-sun-workstations",
"title": "New Sun workstations"
},
{
"url": "https://slashdot.org/story/98/07/06/1643254/cheap-microsoft-publicity",
"title": "Cheap Microsoft Publicity"
},
{
"url": "https://news.slashdot.org/story/98/07/06/165211/tech-grads-look-back-at-school",
"title": "Tech grads look back at school"
},
{
"url": "https://news.slashdot.org/story/98/07/06/1436237/jury-still-out-on-nt-50-replacing-unix",
"title": "Jury still out on NT 5.0 replacing Unix"
},
{
"url": "https://tech.slashdot.org/story/98/07/06/1356219/lesstiforg-facelift",
"title": "LessTif.org Facelift"
},
{
"url": "https://linux.slashdot.org/story/98/07/06/1346240/databases-on-linux",
"title": "Databases on Linux"
},
{
"url": "https://tech.slashdot.org/story/98/07/06/1056214/xeon-debate",
"title": "Xeon debate"
},
{
"url": "https://slashdot.org/story/98/07/06/1050204/cool-cases-found",
"title": "Cool Cases Found"
},
{
"url": "https://linux.slashdot.org/story/98/07/06/1038241/red-hatcaldera-merger-rumors",
"title": "Red Hat/Caldera Merger Rumors"
},
{
"url": "https://news.slashdot.org/story/98/07/06/0858215/featurebeowulf-beyond-the-hype",
"title": "Feature:Beowulf, Beyond the Hype"
},
{
"url": "https://slashdot.org/story/98/07/06/0845207/europe-backs-us-domain-plan",
"title": "Europe backs US domain plan"
},
{
"url": "https://tech.slashdot.org/story/98/07/06/0843233/emotion-sensitive-computers",
"title": "Emotion Sensitive Computers"
},
{
"url": "https://games.slashdot.org/story/98/07/06/0834249/linux-unreal-port-dead",
"title": "Linux Unreal Port Dead"
},
{
"url": "https://news.slashdot.org/story/98/07/05/111235/declaration-of-computer-independance",
"title": "Declaration of Computer Independance"
},
{
"url": "https://news.slashdot.org/story/98/07/05/1055233/what-the-hell-is-happening-here-cont",
"title": "What the Hell is Happening Here Cont."
},
{
"url": "https://tech.slashdot.org/story/98/07/05/1044249/tcl-creator-going-commercial",
"title": "TCL Creator Going Commercial"
},
{
"url": "https://linux.slashdot.org/story/98/07/05/1040230/avalonbeowulf-in-the-news",
"title": "Avalon/Beowulf in the news.."
},
{
"url": "https://news.slashdot.org/story/98/07/04/1554208/important-stampedelinux-info",
"title": "Important StampedeLinux Info"
},
{
"url": "https://slashdot.org/story/98/07/04/1550232/dave-barry-vs-microsoft",
"title": "Dave Barry vs. Microsoft"
},
{
"url": "https://it.slashdot.org/story/98/07/03/1137244/newscom-crypto-special",
"title": "News.com crypto special"
},
{
"url": "https://news.slashdot.org/story/98/07/03/1135204/open-source-messaging-system-proposal",
"title": "Open Source Messaging System Proposal"
},
{
"url": "https://it.slashdot.org/story/98/07/03/1120201/fun-with-spam",
"title": "Fun With Spam"
},
{
"url": "https://news.slashdot.org/story/98/07/03/1042232/setihome-releases-sourcecode",
"title": "SETI@home Releases Sourcecode"
},
{
"url": "https://ask.slashdot.org/story/98/07/03/1040232/ask-slashdotdvd-under-linux",
"title": "Ask Slashdot:DVD under linux?"
},
{
"url": "https://linux.slashdot.org/story/98/07/03/1038247/linux-robotics-mailing-list",
"title": "Linux Robotics Mailing List"
},
{
"url": "https://linux.slashdot.org/story/98/07/03/1035224/any-linux-demo-hackers-bored",
"title": "Any Linux Demo Hackers Bored?"
},
{
"url": "https://tech.slashdot.org/story/98/07/03/1016238/new-member-added-to-xf86-core",
"title": "New Member Added to XF86 Core"
},
{
"url": "https://tech.slashdot.org/story/98/07/03/106231/gtk-mozilla",
"title": "GTK Mozilla"
},
{
"url": "https://tech.slashdot.org/story/98/07/02/1440214/tiny-mp3-players",
"title": "Tiny MP3 Players"
},
{
"url": "https://news.slashdot.org/story/98/07/02/1434237/forumlets-talk-about-portals",
"title": "Forum:Let's Talk about Portals"
},
{
"url": "https://slashdot.org/story/98/07/02/1430211/warning-upgrade-with-care",
"title": "Warning: upgrade with care"
},
{
"url": "https://it.slashdot.org/story/98/07/02/1430217/congress-on-crypto-again",
"title": "Congress on Crypto-Again."
},
{
"url": "https://developers.slashdot.org/story/98/07/02/1424225/marc-andreesen-souring-on-java",
"title": "Marc Andreesen souring on Java?"
},
{
"url": "https://linux.slashdot.org/story/98/07/02/1419251/linux-ppc-machines",
"title": "Linux PPC Machines"
},
{
"url": "https://linux.slashdot.org/story/98/07/02/1328215/21108-is-out-there",
"title": "2.1.108 is out there"
},
{
"url": "https://slashdot.org/story/98/07/02/1314242/internet-explorer-trademark-case-settled",
"title": "Internet Explorer Trademark Case Settled"
},
{
"url": "https://slashdot.org/story/98/07/02/1312238/goodnoise-launch",
"title": "GoodNoise Launch"
},
{
"url": "https://news.slashdot.org/story/98/07/02/1310221/what-the-hell-is-happening-here",
"title": "What the Hell is Happening Here?"
},
{
"url": "https://slashdot.org/story/98/07/01/2352228/e-commerces-other-side",
"title": "E-commerce's other side"
},
{
"url": "https://news.slashdot.org/story/98/07/01/1028225/graphics-galore",
"title": "Graphics Galore"
},
{
"url": "https://slashdot.org/story/98/07/01/1021204/verisign-supporting-apache",
"title": "VeriSign Supporting Apache"
},
{
"url": "https://it.slashdot.org/story/98/07/01/107212/des-ii-2-challenge",
"title": "DES-II-2 Challenge"
},
{
"url": "https://tech.slashdot.org/story/98/07/01/0037213/mozilla-gtk-port",
"title": "Mozilla GTK+ Port"
},
{
"url": "https://news.slashdot.org/story/98/06/30/1719210/tuesday-quickies",
"title": "Tuesday Quickies"
},
{
"url": "https://news.slashdot.org/story/98/06/30/113238/thanks-to-slashdotters-from-synets-dhiren-rana",
"title": "Thanks to Slashdotters from SyNet's Dhiren Rana"
},
{
"url": "https://it.slashdot.org/story/98/06/30/111241/a-day-in-the-life-of-a-spammer",
"title": "A Day in the Life of a Spammer"
},
{
"url": "https://tech.slashdot.org/story/98/06/30/085249/credit-card-sized-pentium-200-pc",
"title": "Credit Card Sized Pentium 200 PC"
},
{
"url": "https://it.slashdot.org/story/98/06/30/071223/ms-office-leaks-sensitive-data",
"title": "MS Office Leaks Sensitive Data"
},
{
"url": "https://slashdot.org/story/98/06/30/0658257/look-at-the-netwinder-go",
"title": "Look at the Netwinder Go"
},
{
"url": "https://slashdot.org/story/98/06/30/0656230/hatch-after-ms",
"title": "Hatch after MS"
},
{
"url": "https://news.slashdot.org/story/98/06/30/0654207/review-advanced-perl-programming",
"title": "Review: Advanced Perl Programming"
},
{
"url": "https://slashdot.org/story/98/06/30/0516242/intel-gets-anti-trust-date",
"title": "Intel gets anti-trust date"
},
{
"url": "https://slashdot.org/story/98/06/30/0235249/xeon-released",
"title": "Xeon Released"
},
{
"url": "https://slashdot.org/story/98/06/30/0043216/nt-release-delayed",
"title": "NT Release Delayed"
},
{
"url": "https://news.slashdot.org/story/98/06/29/1941251/att-vs-microsoft",
"title": "ATT vs. Microsoft"
},
{
"url": "https://developers.slashdot.org/story/98/06/29/1455244/netbeans-ide",
"title": "NetBeans IDE"
},
{
"url": "https://tech.slashdot.org/story/98/06/29/1438249/rise-arises",
"title": "Rise Arises"
},
{
"url": "https://linux.slashdot.org/story/98/06/29/1234250/john-dodge-to-install-linux",
"title": "John Dodge to Install Linux"
},
{
"url": "https://ask.slashdot.org/story/98/06/29/1228249/ask-slashdotfun-with-ips",
"title": "Ask Slashdot:Fun with IPs"
},
{
"url": "https://slashdot.org/story/98/06/29/1042211/featureapple-and-rhapsody-x86",
"title": "Feature:Apple and Rhapsody x86"
},
{
"url": "https://news.slashdot.org/story/98/06/29/1032209/mit-to-set-up-irish-campus",
"title": "MIT to set up Irish campus"
},
{
"url": "https://slashdot.org/story/98/06/29/1027207/display-the-worlds-backbones--visually",
"title": "Display the World's Backbones--Visually"
},
{
"url": "https://games.slashdot.org/story/98/06/29/0941222/heretic-and-hexen-source-release",
"title": "Heretic and Hexen Source Release"
},
{
"url": "https://tech.slashdot.org/story/98/06/28/2314218/new-image-compression-algorithm-claims-10001-ratio",
"title": "New Image Compression Algorithm claims 1000:1 ratio"
},
{
"url": "https://tech.slashdot.org/story/98/06/28/1343225/internet-explorer-not-owned-by-microsoft",
"title": "\"Internet Explorer\" Not Owned by Microsoft"
},
{
"url": "https://linux.slashdot.org/story/98/06/28/1340211/linux-revolt-with-the-svlug",
"title": "Linux Revolt with the SVLUG"
},
{
"url": "https://ask.slashdot.org/story/98/06/28/1339239/ask-slashdotquieter-computers",
"title": "Ask Slashdot:Quieter Computers"
},
{
"url": "https://tech.slashdot.org/story/98/06/28/1333251/cilk-multithreaded-programming-language",
"title": "Cilk Multithreaded Programming Language"
},
{
"url": "https://news.slashdot.org/story/98/06/28/1231210/tcltk-cd-rom-project",
"title": "Tcl/Tk CD-ROM Project"
},
{
"url": "https://slashdot.org/story/98/06/28/1228204/cpu-overclocking-page",
"title": "CPU Overclocking Page"
},
{
"url": "https://slashdot.org/story/98/06/28/1223210/north-royalton-fibre-cut",
"title": "North Royalton Fibre Cut"
},
{
"url": "https://slashdot.org/story/98/06/27/203225/corel-transcripts-online",
"title": "Corel Transcripts Online"
},
{
"url": "https://news.slashdot.org/story/98/06/27/200231/c-scene-zine",
"title": "C Scene Zine"
},
{
"url": "https://linux.slashdot.org/story/98/06/27/1410225/the-maltese-penguin",
"title": "The Maltese Penguin"
},
{
"url": "https://news.slashdot.org/story/98/06/27/149227/more-wipo-links",
"title": "More WIPO Links"
},
{
"url": "https://news.slashdot.org/story/98/06/27/1328230/new-server-online",
"title": "New Server Online"
},
{
"url": "https://games.slashdot.org/story/98/06/27/1325224/perl-fridge-poetry",
"title": "Perl Fridge Poetry"
},
{
"url": "https://linux.slashdot.org/story/98/06/27/1323216/extreme-linux-papers-online",
"title": "Extreme Linux Papers Online"
},
{
"url": "https://news.slashdot.org/story/98/06/27/1322228/bidding-open-for-ca-unix-plates",
"title": "Bidding open for CA UNIX Plates"
},
{
"url": "https://news.slashdot.org/story/98/06/26/2152257/slashdot-downtime-on-saturday",
"title": "Slashdot Downtime on Saturday"
},
{
"url": "https://it.slashdot.org/story/98/06/26/0917243/freespeechcom-petitions-against-wipo-treaty",
"title": "FreeSpeech.Com Petitions Against WIPO Treaty"
},
{
"url": "https://news.slashdot.org/story/98/06/26/0926218/opencontent",
"title": "OpenContent"
},
{
"url": "https://it.slashdot.org/story/98/06/26/0925220/canada-has-encryption-problems-too",
"title": "Canada has encryption problems too"
},
{
"url": "https://slashdot.org/story/98/06/26/0923215/gates-on-linux-solaris",
"title": "Gates on Linux & Solaris"
},
{
"url": "https://ask.slashdot.org/story/98/06/26/0916256/ask-slashdotlinux-friendly-components-vendors",
"title": "Ask Slashdot:Linux-Friendly Components Vendors?"
},
{
"url": "https://slashdot.org/story/98/06/26/094256/ftc-blocks-sale-of-symbios-to-adaptec",
"title": "FTC blocks sale of Symbios to Adaptec"
},
{
"url": "https://tech.slashdot.org/story/98/06/26/0859217/unix-vs-nt-white-paper",
"title": "UNIX vs NT White Paper"
},
{
"url": "https://it.slashdot.org/story/98/06/26/0854240/e-commerce-cracked",
"title": "E-commerce cracked"
},
{
"url": "https://news.slashdot.org/story/98/06/25/1928221/thursday-quickies",
"title": "Thursday Quickies"
},
{
"url": "https://slashdot.org/story/98/06/25/1918236/corel-irc-chat-friday",
"title": "Corel IRC Chat Friday"
},
{
"url": "https://linux.slashdot.org/story/98/06/25/1645209/beowulf-is-back",
"title": "Beowulf is Back"
},
{
"url": "https://news.slashdot.org/story/98/06/25/1438248/bill-could-make-seeking-security-holes-illegal",
"title": "Bill Could Make Seeking Security Holes Illegal"
},
{
"url": "https://news.slashdot.org/story/98/06/25/0927207/review-the-art-of-computer-programming",
"title": "Review: The Art of Computer Programming"
},
{
"url": "https://news.slashdot.org/story/98/06/25/0910205/slashdot-turns-10-million",
"title": "Slashdot Turns 10 Million"
},
{
"url": "https://linux.slashdot.org/story/98/06/25/090209/seeking-topics-for-a-gnu-developers-book",
"title": "Seeking Topics for a GNU Developers Book"
},
{
"url": "https://it.slashdot.org/story/98/06/25/0857230/chaffingwinnowing-available",
"title": "Chaffing/Winnowing Available"
},
{
"url": "https://news.slashdot.org/story/98/06/25/0854207/corel-cutting-costs-what-about-the-netwinder",
"title": "Corel Cutting Costs (What about the NetWinder?)"
},
{
"url": "https://news.slashdot.org/story/98/06/25/0845225/stampede-legal-trouble",
"title": "Stampede Legal Trouble"
},
{
"url": "https://linux.slashdot.org/story/98/06/25/0839259/gnulinux-bumper-stickers",
"title": "GNU/Linux Bumper Stickers"
},
{
"url": "https://linux.slashdot.org/story/98/06/25/0836205/linux-21107-released",
"title": "Linux 2.1.107 released"
},
{
"url": "https://news.slashdot.org/story/98/06/25/0832231/shameless-plug-cobalt-microservers",
"title": "Shameless Plug (Cobalt MicroServers)"
},
{
"url": "https://linux.slashdot.org/story/98/06/24/2121227/svlug-rally-tonight-at-frys",
"title": "SVLUG Rally tonight at Fry's"
},
{
"url": "https://tech.slashdot.org/story/98/06/24/1738215/xbf-deals-first-fruits",
"title": "XBF deal's first fruits"
},
{
"url": "https://slashdot.org/story/98/06/24/1728229/celcos-turndown-ce",
"title": "Celcos turndown CE"
},
{
"url": "https://news.slashdot.org/story/98/06/24/1451235/mysqlphp-win-db-award",
"title": "Mysql/PHP win DB award"
},
{
"url": "https://yro.slashdot.org/story/98/06/24/1447239/fallout-from-tms",
"title": "Fallout from TMS"
},
{
"url": "https://slashdot.org/story/98/06/24/1412250/microsoft-terra-server-failing",
"title": "Microsoft Terra Server Failing"
},
{
"url": "https://slashdot.org/story/98/06/24/1350219/tech-immigration-war-waged-in-washington",
"title": "Tech Immigration War Waged in Washington"
},
{
"url": "https://news.slashdot.org/story/98/06/24/1234209/att-and-tci-merging",
"title": "AT&T and TCI Merging?"
},
{
"url": "https://bsd.slashdot.org/story/98/06/24/1214204/freebsd-desktop-contest-announced",
"title": "FreeBSD Desktop Contest Announced"
},
{
"url": "https://ask.slashdot.org/story/98/06/24/0945216/ask-slashdottrouble-with-glide",
"title": "Ask Slashdot:Trouble with Glide"
},
{
"url": "https://news.slashdot.org/story/98/06/24/0929226/freshmeatnet-revamp",
"title": "Freshmeat.net Revamp"
},
{
"url": "https://games.slashdot.org/story/98/06/24/0926217/free-mgl-released",
"title": "Free MGL released"
},
{
"url": "https://linux.slashdot.org/story/98/06/24/0925211/adaptec-announces-support-for-linux",
"title": "Adaptec Announces Support for Linux"
},
{
"url": "https://it.slashdot.org/story/98/06/24/0745252/fortezza-declassified",
"title": "FORTEZZA declassified"
},
{
"url": "https://linux.slashdot.org/story/98/06/24/0056251/an-avalanche-of-linux",
"title": "An Avalanche of Linux"
},
{
"url": "https://linux.slashdot.org/story/98/06/23/2154248/datapro-survey-gives-linux-overall-lead",
"title": "DataPro survey gives Linux overall lead"
},
{
"url": "https://news.slashdot.org/story/98/06/23/1332240/george-lucas-talks-about-new-star-wars-movie",
"title": "George Lucas Talks about new Star Wars movie"
},
{
"url": "https://slashdot.org/story/98/06/23/1226233/xeon-delayed",
"title": "Xeon Delayed"
},
{
"url": "https://linux.slashdot.org/story/98/06/23/1146248/linuxorg-temporarily-down",
"title": "Linux.org Temporarily Down"
},
{
"url": "https://slashdot.org/story/98/06/23/1041231/feds-strike-down-ms-injunction",
"title": "Feds strike down MS injunction"
},
{
"url": "https://linux.slashdot.org/story/98/06/23/107254/red-hat-51-for-sparc-available",
"title": "Red Hat 5.1 for Sparc available"
},
{
"url": "https://linux.slashdot.org/story/98/06/23/0856236/debian-20-beta-irc-party-tonight",
"title": "Debian 2.0 Beta IRC Party Tonight"
},
{
"url": "https://it.slashdot.org/story/98/06/23/0854231/texas-gop-adopts-anti-spam-stance",
"title": "Texas GOP Adopts anti-spam Stance"
},
{
"url": "https://linux.slashdot.org/story/98/06/23/0853205/zdnet-linux-article",
"title": "ZDnet Linux Article"
},
{
"url": "https://slashdot.org/story/98/06/23/0849239/the-gnuhoo-booboo",
"title": "The GnuHoo BooBoo"
},
{
"url": "https://news.slashdot.org/story/98/06/23/0840201/forumgeocities-and-advertising",
"title": "Forum:GeoCities and Advertising"
},
{
"url": "https://linux.slashdot.org/story/98/06/22/1947213/svlug-really-launches-win98",
"title": "SVLUG Really Launches Win98"
},
{
"url": "https://linux.slashdot.org/story/98/06/22/1939234/the-future-of-linux",
"title": "The Future of Linux"
},
{
"url": "https://tech.slashdot.org/story/98/06/22/1936258/watch-the-x-33-being-built",
"title": "Watch the X-33 Being Built"
},
{
"url": "https://slashdot.org/story/98/06/22/1751234/intel-cuts-coming",
"title": "Intel Cuts Coming"
},
{
"url": "https://tech.slashdot.org/story/98/06/22/1740242/mozilla-mail-and-news-source-released",
"title": "Mozilla Mail and News Source Released"
},
{
"url": "https://slashdot.org/story/98/06/22/1432201/caldera-to-release-netware-server-for-linux",
"title": "Caldera to release NetWare server for Linux"
},
{
"url": "https://news.slashdot.org/story/98/06/22/130229/xerox-star-demo",
"title": "Xerox Star Demo"
},
{
"url": "https://news.slashdot.org/story/98/06/22/1246219/supreme-court-rules-in-favor-of-isps",
"title": "Supreme Court rules in favor of ISPs"
},
{
"url": "https://slashdot.org/story/98/06/22/111204/sun-joining-the-open-source-bandwagon",
"title": "Sun joining the Open Source bandwagon?"
},
{
"url": "https://tech.slashdot.org/story/98/06/22/1056254/1mbps-over-a-phone-line",
"title": "1mbps Over a Phone Line?"
},
{
"url": "https://news.slashdot.org/story/98/06/22/0851213/featurelinux-the-gameos",
"title": "Feature:Linux, The GameOS?"
},
{
"url": "https://tech.slashdot.org/story/98/06/22/0845226/extremeraid-unveiled",
"title": "eXtremeRAID unveiled"
},
{
"url": "https://tech.slashdot.org/story/98/06/22/0842236/digital-film-for-existing-cameras",
"title": "Digital Film for Existing Cameras"
},
{
"url": "https://slashdot.org/story/98/06/22/0839238/does-your-email-address-suck-pt-2",
"title": "Does Your Email Address Suck? (Pt 2)"
},
{
"url": "https://tech.slashdot.org/story/98/06/22/0837243/the-powerpc-breakup",
"title": "The PowerPC breakup"
},
{
"url": "https://games.slashdot.org/story/98/06/21/1828211/games-on-alpha",
"title": "Games on Alpha?"
},
{
"url": "https://tech.slashdot.org/story/98/06/21/1827208/an-apology-for-mozilla",
"title": "an apology for mozilla"
},
{
"url": "https://news.slashdot.org/story/98/06/21/109240/nicholas-petreley-on-nc-worlds-death",
"title": "Nicholas Petreley on NC World's Death"
},
{
"url": "https://ask.slashdot.org/story/98/06/20/2127214/ask-slashdot-linux-game-market",
"title": "Ask Slashdot: Linux Game Market"
},
{
"url": "https://linux.slashdot.org/story/98/06/20/2125231/beowulf-mirrors",
"title": "Beowulf Mirrors"
},
{
"url": "https://news.slashdot.org/story/98/06/20/2123228/somenet-transcript---alan-cox",
"title": "SomeNet Transcript - Alan Cox"
},
{
"url": "https://news.slashdot.org/story/98/06/20/1150247/reviewthe-x-files",
"title": "Review:The X-Files"
},
{
"url": "https://games.slashdot.org/story/98/06/20/1126233/next-wing-commander-to-be-free",
"title": "Next Wing Commander to be Free?"
},
{
"url": "https://news.slashdot.org/story/98/06/20/1115247/somenet-forum---alan-cox-as-speaker",
"title": "SomeNet Forum - Alan Cox as Speaker"
},
{
"url": "https://linux.slashdot.org/story/98/06/20/118209/more-on-the-wwwbeowulforg-shutdown",
"title": "More On the www.beowulf.org Shutdown"
},
{
"url": "https://slashdot.org/story/98/06/20/115216/strawberry-pop-tart-blow-torches",
"title": "Strawberry Pop-Tart Blow-Torches"
},
{
"url": "https://slashdot.org/story/98/06/19/2018216/review-expert-c-programming-deep-c-secrets",
"title": "Review: Expert C Programming: Deep C Secrets"
},
{
"url": "https://news.slashdot.org/story/98/06/19/1521219/planned-obsolescence",
"title": "Planned Obsolescence"
},
{
"url": "https://tech.slashdot.org/story/98/06/19/1327234/lucent-sues-cisco",
"title": "Lucent sues Cisco"
},
{
"url": "https://slashdot.org/story/98/06/19/1320212/intel-countersues-intergraph",
"title": "Intel countersues Intergraph"
},
{
"url": "https://games.slashdot.org/story/98/06/19/1313244/praxwar-port-for-linux",
"title": "PraxWar Port for Linux?"
},
{
"url": "https://linux.slashdot.org/story/98/06/19/1312233/red-hat-takes-on-the-big-boys",
"title": "Red Hat Takes on the Big Boys"
},
{
"url": "https://news.slashdot.org/story/98/06/19/1055259/feature-its-all-a-conspiracy",
"title": "Feature: It's all a Conspiracy"
},
{
"url": "https://news.slashdot.org/story/98/06/19/1022240/ncworld-folds",
"title": "NCWorld Folds"
},
{
"url": "https://news.slashdot.org/story/98/06/19/1019258/web--database-crash-course",
"title": "Web / Database Crash Course"
},
{
"url": "https://slashdot.org/story/98/06/19/1017253/us-post-office-and-the-us-domain",
"title": "US Post Office and the .US Domain"
},
{
"url": "https://news.slashdot.org/story/98/06/19/1013215/what-does-your-email-address-mean",
"title": "What does your email address mean?"
},
{
"url": "https://news.slashdot.org/story/98/06/19/109227/featurea-square-deal",
"title": "Feature:A Square Deal"
},
{
"url": "https://linux.slashdot.org/story/98/06/19/0943218/beowulf-cluster-in-top-500-supercomputers",
"title": "Beowulf Cluster in top 500 SuperComputers"
},
{
"url": "https://ask.slashdot.org/story/98/06/19/0932248/ask-slashdotlinux-and-hard-drive-compression",
"title": "Ask Slashdot:Linux and Hard Drive compression"
},
{
"url": "https://games.slashdot.org/story/98/06/18/2311232/game-news",
"title": "Game news"
},
{
"url": "https://news.slashdot.org/story/98/06/18/2249256/real-x-files-available",
"title": "Real X files available"
},
{
"url": "https://slashdot.org/story/98/06/18/167207/ibm-talking-to-compaq-about-alpha",
"title": "IBM Talking to Compaq about Alpha"
},
{
"url": "https://news.slashdot.org/story/98/06/18/145217/slashdot-makes-zds-top-100",
"title": "Slashdot makes ZDs Top 100"
},
{
"url": "https://slashdot.org/story/98/06/18/1359215/internet-hoaxes",
"title": "Internet Hoaxes"
},
{
"url": "https://slashdot.org/story/98/06/18/1229206/ibm-prefers-apache-for-e-commerce",
"title": "IBM Prefers Apache for E-Commerce!"
},
{
"url": "https://news.slashdot.org/story/98/06/18/0916235/kipling-and-hacker-fashion",
"title": "Kipling and Hacker Fashion"
},
{
"url": "https://news.slashdot.org/story/98/06/18/096201/son-of-sunsite",
"title": "Son of Sunsite"
},
{
"url": "https://ask.slashdot.org/story/98/06/18/092244/ask-slashdotboot-parameters",
"title": "Ask Slashdot:Boot Parameters"
},
{
"url": "https://tech.slashdot.org/story/98/06/18/0857235/corel-and-alpha",
"title": "Corel and Alpha"
},
{
"url": "https://tech.slashdot.org/story/98/06/18/0842249/update-on-45",
"title": "Update on 4.5"
},
{
"url": "https://tech.slashdot.org/story/98/06/18/0839209/featurepositive-changes",
"title": "Feature:Positive Changes"
},
{
"url": "https://slashdot.org/story/98/06/18/0829207/intel-dumping-slot-1-for-mendocino",
"title": "Intel Dumping Slot 1 For Mendocino"
},
{
"url": "https://tech.slashdot.org/story/98/06/17/224212/kde-prepares-for-10",
"title": "KDE Prepares for 1.0"
},
{
"url": "https://slashdot.org/story/98/06/17/1638210/alpha-processor-inc-is-born",
"title": "Alpha Processor Inc. is born"
},
{
"url": "https://tech.slashdot.org/story/98/06/17/1537206/netscape-45-not-out",
"title": "Netscape 4.5 NOT out"
},
{
"url": "https://slashdot.org/story/98/06/17/1533204/youve-got-telco",
"title": "You've Got Telco!"
},
{
"url": "https://news.slashdot.org/story/98/06/17/1436216/gyve",
"title": "Gyve"
},
{
"url": "https://slashdot.org/story/98/06/17/1037228/beos-r31-released",
"title": "BeOS R3.1 Released"
},
{
"url": "https://news.slashdot.org/story/98/06/17/0917200/book-reviewjavascript-sourcebook",
"title": "Book Review:JavaScript Sourcebook"
},
{
"url": "https://news.slashdot.org/story/98/06/17/099215/featurebrave-new-world",
"title": "Feature:Brave new World"
},
{
"url": "https://ask.slashdot.org/story/98/06/17/0858202/ask-slashdotopen-source-program-databases",
"title": "Ask Slashdot:Open Source Program Databases"
},
{
"url": "https://slashdot.org/story/98/06/17/0854240/communal-link-filtering",
"title": "Communal Link Filtering"
},
{
"url": "https://news.slashdot.org/story/98/06/17/0841208/50yrs-since-the-first-computer",
"title": "50yrs Since the First Computer"
},
{
"url": "https://tech.slashdot.org/story/98/06/17/0839245/corel--voice-recognition",
"title": "Corel + Voice Recognition"
},
{
"url": "https://slashdot.org/story/98/06/17/0836218/3-questions-and-a-tile-hosts-jwz",
"title": "3 Questions and a Tile hosts jwz"
},
{
"url": "https://tech.slashdot.org/story/98/06/17/0820217/facial-beauty-and-fractal-geometry",
"title": "Facial Beauty and Fractal Geometry"
},
{
"url": "https://tech.slashdot.org/story/98/06/16/2222214/bonsai-and-tinderbox-source-released",
"title": "Bonsai and Tinderbox Source Released"
},
{
"url": "https://news.slashdot.org/story/98/06/16/202253/cray-announces-sv1",
"title": "Cray Announces SV1"
},
{
"url": "https://news.slashdot.org/story/98/06/16/1857232/call-for-articles",
"title": "Call for Articles"
},
{
"url": "https://news.slashdot.org/story/98/06/16/1714209/slashdot-makes-ditherati",
"title": "Slashdot Makes Ditherati!"
},
{
"url": "https://slashdot.org/story/98/06/16/156216/digital-unix",
"title": "Digital Unix,"
},
{
"url": "https://linux.slashdot.org/story/98/06/16/1418257/redhat-releasing-binary-only-x--servers",
"title": "RedHat Releasing Binary-Only X- servers"
},
{
"url": "https://news.slashdot.org/story/98/06/16/1310255/irix-65-announced",
"title": "IRIX 6.5 Announced"
},
{
"url": "https://ask.slashdot.org/story/98/06/16/1218257/ask-slashdotcomputing-comfort",
"title": "Ask Slashdot:Computing Comfort"
},
{
"url": "https://slashdot.org/story/98/06/16/1217242/opera-to-be-ported-all-over",
"title": "Opera to be Ported All Over"
},
{
"url": "https://news.slashdot.org/story/98/06/16/1137259/beowulf-update",
"title": "Beowulf Update"
},
{
"url": "https://slashdot.org/story/98/06/16/1120219/live-birth-on-the-internet",
"title": "Live Birth On The Internet"
},
{
"url": "https://tech.slashdot.org/story/98/06/16/1118219/notebook-fuel-cells",
"title": "Notebook Fuel Cells"
},
{
"url": "https://tech.slashdot.org/story/98/06/16/1047201/creatures-from-primordial-silicon",
"title": "Creatures from Primordial Silicon"
},
{
"url": "https://linux.slashdot.org/story/98/06/16/0938242/linc-issues-call-for-papers",
"title": "LINC issues call for papers"
},
{
"url": "https://tech.slashdot.org/story/98/06/16/0937220/netscape-45-due-wed",
"title": "Netscape 4.5 Due Wed"
},
{
"url": "https://games.slashdot.org/story/98/06/16/0934246/snes9x-for-linux-released",
"title": "Snes9X for Linux Released"
},
{
"url": "https://slashdot.org/story/98/06/15/2335259/ms-sells-unit-no-really",
"title": "MS sells unit. No, really."
},
{
"url": "https://news.slashdot.org/story/98/06/15/1835235/monday-quickies",
"title": "Monday Quickies"
},
{
"url": "https://it.slashdot.org/story/98/06/15/1659256/house-banning-crypto-research",
"title": "House Banning Crypto Research"
},
{
"url": "https://tech.slashdot.org/story/98/06/15/1658207/samsung-claims-4-gigabit-dram",
"title": "Samsung claims 4-gigabit DRAM"
},
{
"url": "https://tech.slashdot.org/story/98/06/15/1655225/puppettime",
"title": "PuppetTime"
},
{
"url": "https://it.slashdot.org/story/98/06/15/1252257/new-block-encryption",
"title": "New Block Encryption"
},
{
"url": "https://news.slashdot.org/story/98/06/15/1228213/more-beowulf-rumours",
"title": "More Beowulf Rumours"
},
{
"url": "https://tech.slashdot.org/story/98/06/15/1220206/mips-based-robots",
"title": "MIPS Based Robots"
},
{
"url": "https://slashdot.org/story/98/06/15/1058229/att-suing-ms-over-nt-source-licensing",
"title": "AT&T Suing MS Over NT Source Licensing"
},
{
"url": "https://news.slashdot.org/story/98/06/15/1054215/u-of-wash-profs-revolt-against-online-courses",
"title": "U of Wash Profs Revolt Against Online Courses"
},
{
"url": "https://news.slashdot.org/story/98/06/15/1013252/featurefear-of-x0",
"title": "Feature:Fear of X.0"
},
{
"url": "https://news.slashdot.org/story/98/06/15/0947208/forgive-me-salon-and-slashdot",
"title": "Forgive Me! (Salon and Slashdot)"
},
{
"url": "https://news.slashdot.org/story/98/06/15/096216/microsoft-running-linux",
"title": "Microsoft running Linux"
},
{
"url": "https://news.slashdot.org/story/98/06/14/1119201/fcc-to-cut-school-net-funding",
"title": "FCC to cut school net funding"
},
{
"url": "https://news.slashdot.org/story/98/06/14/1046223/editorialfame-ego-oversimplification",
"title": "Editorial:Fame? Ego? Oversimplification!"
},
{
"url": "https://linux.slashdot.org/story/98/06/14/1037225/linux-at-msnbc",
"title": "Linux at MSNBC"
},
{
"url": "https://linux.slashdot.org/story/98/06/14/1031224/linux-21106-available",
"title": "Linux 2.1.106 Available"
},
{
"url": "https://slashdot.org/story/98/06/13/1722225/rms-forum-transcript-online",
"title": "RMS Forum Transcript Online"
},
{
"url": "https://news.slashdot.org/story/98/06/13/127210/editorialopen-source-isnt-commons",
"title": "Editorial:Open Source Isn't Commons"
},
{
"url": "https://slashdot.org/story/98/06/13/1138224/ircii-placed-under-bsd-license",
"title": "ircII Placed under BSD License"
},
{
"url": "https://tech.slashdot.org/story/98/06/13/1121217/other-advanced-head-mounted-displays",
"title": "Other Advanced Head Mounted Displays"
},
{
"url": "https://slashdot.org/story/98/06/13/118210/gnuhoo-web-directory",
"title": "Gnuhoo Web Directory"
},
{
"url": "https://yro.slashdot.org/story/98/06/13/1057213/bill-gates-on-doj",
"title": "Bill Gates on DOJ"
},
{
"url": "https://slashdot.org/story/98/06/13/1055240/paul-vixie-taking-bind-commerical",
"title": "Paul Vixie Taking Bind Commerical"
},
{
"url": "https://linux.slashdot.org/story/98/06/13/1052206/linc-is-not-comdex",
"title": "LINC Is Not COMDEX"
},
{
"url": "https://slashdot.org/story/98/06/12/1929222/compaq-pledges-volume-sales-of-alphas",
"title": "Compaq pledges volume sales of Alphas"
},
{
"url": "https://slashdot.org/story/98/06/12/1215257/editorialavoiding-the-tragedy-of-the-commons",
"title": "Editorial:Avoiding the Tragedy of the Commons"
},
{
"url": "https://slashdot.org/story/98/06/12/127252/rms-forum-tomorrow",
"title": "RMS Forum Tomorrow"
},
{
"url": "https://slashdot.org/story/98/06/12/124219/mci-severed-fiberoptic-lines-yesterday",
"title": "MCI Severed fiberoptic lines yesterday"
},
{
"url": "https://ask.slashdot.org/story/98/06/12/0847245/ask-slashdotonline-shopping-phobia",
"title": "Ask Slashdot:Online Shopping Phobia"
},
{
"url": "https://news.slashdot.org/story/98/06/12/0836234/former-sgi-employees-antics",
"title": "Former SGI employees' antics"
},
{
"url": "https://linux.slashdot.org/story/98/06/12/0834224/performance-computing-reviews-caldera",
"title": "Performance Computing reviews Caldera"
},
{
"url": "https://tech.slashdot.org/story/98/06/12/0832200/using-the-microsoft-knob-under-x",
"title": "Using the Microsoft Knob under X"
},
{
"url": "https://tech.slashdot.org/story/98/06/12/0816244/glasses-mounted-display",
"title": "Glasses Mounted Display"
},
{
"url": "https://slashdot.org/story/98/06/11/177226/rip-digital-corporation-part-ii",
"title": "RIP Digital Corporation (Part II)"
},
{
"url": "https://slashdot.org/story/98/06/11/1615226/rip-digital-equipment-corporation",
"title": "RIP Digital Equipment Corporation"
},
{
"url": "https://tech.slashdot.org/story/98/06/11/1357221/ibmmotorola-end-mutual-plant-pact",
"title": "IBM/Motorola end mutual plant pact"
},
{
"url": "https://linux.slashdot.org/story/98/06/11/1223226/all-sorts-of-interesting-linux-articles",
"title": "All Sorts of Interesting Linux Articles"
},
{
"url": "https://news.slashdot.org/story/98/06/11/1212226/forumcooler-cases",
"title": "Forum:Cooler Cases"
},
{
"url": "https://hardware.slashdot.org/story/98/06/11/127246/palmpilot-news",
"title": "PalmPilot News"
},
{
"url": "https://news.slashdot.org/story/98/06/11/0840209/database-news",
"title": "Database News"
},
{
"url": "https://linux.slashdot.org/story/98/06/11/0835249/slackware-350-final",
"title": "Slackware 3.5.0 Final"
},
{
"url": "https://news.slashdot.org/story/98/06/11/0829247/caffienated-penguin-mints",
"title": "Caffienated Penguin Mints"
},
{
"url": "https://news.slashdot.org/story/98/06/11/0827211/new-worldwide-amiga-gaming-magazine",
"title": "New Worldwide Amiga Gaming Magazine"
},
{
"url": "https://tech.slashdot.org/story/98/06/11/0811228/mozilas-new-cvs-server",
"title": "Mozila's new CVS Server"
},
{
"url": "https://tech.slashdot.org/story/98/06/11/087230/return-of-the-gnome-20-rpms",
"title": "Return of the GNOME .20 RPMs"
},
{
"url": "https://news.slashdot.org/story/98/06/10/1829210/batch--o--quickies",
"title": "Batch -o- Quickies"
},
{
"url": "https://apple.slashdot.org/story/98/06/10/1533258/new-linux-distribution-for-macs",
"title": "New Linux Distribution for Macs"
},
{
"url": "https://news.slashdot.org/story/98/06/10/1315251/slashdot-t-shirts-ready",
"title": "Slashdot T-Shirts Ready!"
},
{
"url": "https://slashdot.org/story/98/06/10/1149246/olga-shut-down",
"title": "OLGA Shut Down"
},
{
"url": "https://developers.slashdot.org/story/98/06/10/1146216/java-license-to-be-relaxed",
"title": "Java license to be relaxed"
},
{
"url": "https://slashdot.org/story/98/06/10/1112228/buying-a-computer-without-windows",
"title": "Buying a computer without Windows"
},
{
"url": "https://tech.slashdot.org/story/98/06/10/0753220/editorialbetamax-logic",
"title": "Editorial:Betamax Logic"
},
{
"url": "https://linux.slashdot.org/story/98/06/10/0747259/statement-from-linuxorg-caretaker",
"title": "Statement from Linux.org Caretaker"
},
{
"url": "https://news.slashdot.org/story/98/06/10/0739209/petreley-oems-and-choice",
"title": "Petreley, OEMs and Choice"
},
{
"url": "https://slashdot.org/story/98/06/10/0723259/lycos-patents-the-spider",
"title": "Lycos Patents the Spider"
},
{
"url": "https://news.slashdot.org/story/98/06/10/0717248/another-penguin-named-linus",
"title": "Another Penguin Named Linus"
},
{
"url": "https://slashdot.org/story/98/06/09/2051246/the-alpha-processors-future",
"title": "The Alpha Processor's Future"
},
{
"url": "https://news.slashdot.org/story/98/06/09/1751211/tuesday-quickies",
"title": "Tuesday Quickies"
},
{
"url": "https://news.slashdot.org/story/98/06/09/158253/review-of-object-oriented-software-construction",
"title": "Review of Object Oriented Software Construction"
},
{
"url": "https://tech.slashdot.org/story/98/06/09/1327254/another-silly-computer",
"title": "Another Silly Computer"
},
{
"url": "https://linux.slashdot.org/story/98/06/09/1320219/linux-petitions",
"title": "Linux Petitions"
},
{
"url": "https://it.slashdot.org/story/98/06/09/127259/crypto-kills",
"title": "Crypto Kills!"
},
{
"url": "https://linux.slashdot.org/story/98/06/09/125214/zdnet-uk-running-linux-history-story",
"title": "ZDNet UK Running Linux History Story"
},
{
"url": "https://slashdot.org/story/98/06/09/1116256/internet-tax",
"title": "Internet Tax?"
},
{
"url": "https://slashdot.org/story/98/06/09/0743231/editorialthe-myth-of-the-fall-of-sgi",
"title": "Editorial:The Myth of the Fall of SGI"
},
{
"url": "https://tech.slashdot.org/story/98/06/09/0735202/pixel-uses-more-of-your-monitor",
"title": "Pixel Uses More of your Monitor"
},
{
"url": "https://ask.slashdot.org/story/98/06/09/0730247/ask-slashdotstampede",
"title": "Ask Slashdot:Stampede"
},
{
"url": "https://hardware.slashdot.org/story/98/06/08/2132247/pda-overview-pilot-still-king",
"title": "PDA Overview: Pilot Still King"
},
{
"url": "https://slashdot.org/story/98/06/08/2131227/nader-asks-ibm-to-release-os2-source-code",
"title": "Nader asks IBM to release OS/2 Source Code!"
},
{
"url": "https://it.slashdot.org/story/98/06/08/2128257/448bit-encryption-export-approved",
"title": "448Bit Encryption Export Approved"
},
{
"url": "https://slashdot.org/story/98/06/08/1519255/ftc-votes-to-sue-intel",
"title": "FTC votes to sue Intel"
},
{
"url": "https://linux.slashdot.org/story/98/06/08/1438226/pcweek-stories-on-linux",
"title": "PCWeek Stories on Linux"
},
{
"url": "https://slashdot.org/story/98/06/08/1412234/intel-cuts-prices",
"title": "Intel Cuts Prices"
},
{
"url": "https://ask.slashdot.org/story/98/06/08/1155254/ask-slashdota-fscking-problem",
"title": "Ask Slashdot:A Fscking Problem"
},
{
"url": "https://tech.slashdot.org/story/98/06/08/1118237/gnome-update----rpms-temporarily-removed",
"title": "GNOME Update -- RPMS Temporarily Removed"
},
{
"url": "https://tech.slashdot.org/story/98/06/08/1112200/story-on-cnn-about-wearables",
"title": "Story on CNN about Wearables"
},
{
"url": "https://slashdot.org/story/98/06/08/112207/ftc-sues-intel",
"title": "FTC sues Intel"
},
{
"url": "https://features.slashdot.org/story/98/06/08/0755240/rms-on-proprietary-software-on-free-oss",
"title": "RMS on Proprietary Software on Free OSs"
},
{
"url": "https://news.slashdot.org/story/98/06/08/0735243/cellphonesmartcard-security",
"title": "Cellphone/Smartcard security"
},
{
"url": "https://apple.slashdot.org/story/98/06/08/0735218/apple-backs-off-from-rhapsody-strategy",
"title": "Apple backs off from Rhapsody strategy"
},
{
"url": "https://news.slashdot.org/story/98/06/08/0732207/byte-falldown-faq",
"title": "BYTE Falldown FAQ"
},
{
"url": "https://linux.slashdot.org/story/98/06/07/1722212/linux-21105",
"title": "Linux 2.1.105"
},
{
"url": "https://slashdot.org/story/98/06/07/1439217/sunworld-free-software-survey",
"title": "SunWorld Free Software Survey"
},
{
"url": "https://tech.slashdot.org/story/98/06/07/1140257/new-technology-obsoletes-assembly-lines",
"title": "New Technology Obsoletes Assembly Lines?"
},
{
"url": "https://tech.slashdot.org/story/98/06/07/1126252/gnome-020-released",
"title": "GNOME 0.20 Released"
},
{
"url": "https://news.slashdot.org/story/98/06/06/209218/saturday-quickies",
"title": "Saturday Quickies"
},
{
"url": "https://news.slashdot.org/story/98/06/06/1418233/reviewthe-truman-show",
"title": "Review:The Truman Show"
},
{
"url": "https://linux.slashdot.org/story/98/06/06/1312221/end-of-project-heresey",
"title": "End of Project Heresey"
},
{
"url": "https://news.slashdot.org/story/98/06/06/138248/dell-knocks-100-off-and-uninstalls-windows",
"title": "Dell knocks $100 off and Uninstalls Windows!"
},
{
"url": "https://tech.slashdot.org/story/98/06/06/136239/pinky-processor",
"title": "Pinky Processor"
},
{
"url": "https://news.slashdot.org/story/98/06/06/130223/update-on-beowulf",
"title": "Update on Beowulf"
},
{
"url": "https://news.slashdot.org/story/98/06/06/1257206/the-virgo-project",
"title": "The Virgo Project"
},
{
"url": "https://slashdot.org/story/98/06/06/1236233/gimp-one-point-oh",
"title": "Gimp One Point Oh"
},
{
"url": "https://news.slashdot.org/story/98/06/05/1459242/new-byte--old-byte",
"title": "New Byte != Old Byte"
},
{
"url": "https://news.slashdot.org/story/98/06/05/1336230/icq-flaws-exposed",
"title": "ICQ Flaws Exposed"
},
{
"url": "https://slashdot.org/story/98/06/05/1140253/several-things-worth-noting",
"title": "Several Things Worth Noting"
},
{
"url": "https://ask.slashdot.org/story/98/06/05/1132240/ask-slashdotinstalling-openlinux",
"title": "Ask Slashdot:Installing OpenLinux"
},
{
"url": "https://tech.slashdot.org/story/98/06/05/1123227/necs-new-supercomputer",
"title": "NECs New Supercomputer"
},
{
"url": "https://tech.slashdot.org/story/98/06/05/1120245/1mb-thru-electrical-outlets",
"title": "1Mb Thru Electrical Outlets"
},
{
"url": "https://slashdot.org/story/98/06/05/1116203/net-subsidy-fight-reaches-congress",
"title": "Net Subsidy Fight Reaches Congress"
},
{
"url": "https://linux.slashdot.org/story/98/06/05/110229/important-beowulf-information",
"title": "Important Beowulf Information"
},
{
"url": "https://slashdot.org/story/98/06/05/1056224/apache-130-released",
"title": "Apache 1.3.0 Released?"
},
{
"url": "https://news.slashdot.org/story/98/06/05/1053206/neutrinos-have-mass",
"title": "Neutrinos Have Mass?"
},
{
"url": "https://apple.slashdot.org/story/98/06/05/1047259/production-ends-on-mac-clones",
"title": "Production ends on Mac clones"
},
{
"url": "https://news.slashdot.org/story/98/06/05/1046213/editoriallesstif-and-linux",
"title": "Editorial:Lesstif and Linux"
},
{
"url": "https://it.slashdot.org/story/98/06/04/1836242/crackers-break-into-indian-nuclear-centre",
"title": "Crackers break into Indian Nuclear Centre"
},
{
"url": "https://news.slashdot.org/story/98/06/04/1322209/editorialtowards-world-domination",
"title": "Editorial:Towards World Domination"
},
{
"url": "https://ask.slashdot.org/story/98/06/04/1258233/ask-slashdotlcd-projectors",
"title": "Ask Slashdot:LCD Projectors"
},
{
"url": "https://news.slashdot.org/story/98/06/04/1247255/use-icbms-as-fireworks",
"title": "Use ICBMs as Fireworks!"
},
{
"url": "https://slashdot.org/story/98/06/04/1245258/katmai-release-bumped-up",
"title": "Katmai release bumped up"
},
{
"url": "https://linux.slashdot.org/story/98/06/04/1224255/wearable-linux-machine",
"title": "Wearable Linux Machine"
},
{
"url": "https://tech.slashdot.org/story/98/06/04/0848206/ram-for-a-buck",
"title": "RAM for a buck"
},
{
"url": "https://news.slashdot.org/story/98/06/04/0838204/abc-news-on-hacker-v-cracker",
"title": "ABC news on Hacker v. Cracker"
},
{
"url": "https://linux.slashdot.org/story/98/06/04/0835207/linuxorg-gets-a-revamp",
"title": "Linux.org Gets a Revamp"
},
{
"url": "https://news.slashdot.org/story/98/06/04/0330257/linux-2034-released",
"title": "Linux 2.0.34 released"
},
{
"url": "https://news.slashdot.org/story/98/06/03/1910224/slashnet-the-net-and-a-party",
"title": "SlashNET, The Net, and a Party"
},
{
"url": "https://news.slashdot.org/story/98/06/03/1859242/quickieswelcome-to-wednesday",
"title": "Quickies:Welcome to Wednesday"
},
{
"url": "https://tech.slashdot.org/story/98/06/03/1457202/cryogenic-computing-and-the-amd-k6-2",
"title": "Cryogenic Computing and the AMD K6-2"
},
{
"url": "https://yro.slashdot.org/story/98/06/03/1429231/interview-about-tms",
"title": "Interview about TMS"
},
{
"url": "https://slashdot.org/story/98/06/03/1229207/did-ibm-bribe-argentina",
"title": "Did IBM Bribe Argentina?"
},
{
"url": "https://slashdot.org/story/98/06/03/1216245/the-gnuotes-gnu-notes-project",
"title": "The Gnuotes (GNU Notes) Project"
},
{
"url": "https://news.slashdot.org/story/98/06/03/1215209/rms-to-speak-on-somenet",
"title": "RMS to speak on SomeNet"
},
{
"url": "https://tech.slashdot.org/story/98/06/03/1212250/e14-in-gnome-cvs",
"title": "E14 in GNOME CVS"
},
{
"url": "https://slashdot.org/story/98/06/03/1140206/berners-lee-awarded",
"title": "Berners-Lee awarded"
},
{
"url": "https://it.slashdot.org/story/98/06/03/0846202/password-spamming-screwup",
"title": "Password Spamming Screwup"
},
{
"url": "https://linux.slashdot.org/story/98/06/03/0843213/linux-kongress-germany-3-4-june",
"title": "Linux Kongress, Germany 3-4 June"
},
{
"url": "https://tech.slashdot.org/story/98/06/03/0831224/strongarm1500-based-set-top-box-demoed",
"title": "StrongARM1500 Based Set-Top Box Demoed"
},
{
"url": "https://news.slashdot.org/story/98/06/02/1954216/tuesday-quickies",
"title": "Tuesday Quickies"
},
{
"url": "https://slashdot.org/story/98/06/02/1631231/x86-news",
"title": "x86 news"
},
{
"url": "https://linux.slashdot.org/story/98/06/02/1620243/redhat-51-includes-redneck-support",
"title": "Redhat 5.1 Includes Redneck Support"
},
{
"url": "https://linux.slashdot.org/story/98/06/02/1443229/more-positive-press",
"title": "More positive press"
},
{
"url": "https://news.slashdot.org/story/98/06/02/1311258/security-flaws-found-in-winnt-vpns",
"title": "Security Flaws Found in WinNT VPNs"
},
{
"url": "https://tech.slashdot.org/story/98/06/02/1143244/sprint-opens-new-network",
"title": "Sprint opens new network"
},
{
"url": "https://news.slashdot.org/story/98/06/02/1139226/cobalt-endorses-open-source-software-model",
"title": "Cobalt Endorses Open Source Software Model"
},
{
"url": "https://linux.slashdot.org/story/98/06/02/0847209/linux-expo-pictures",
"title": "Linux Expo Pictures"
},
{
"url": "https://slashdot.org/story/98/06/02/0819240/high-tech-immigration",
"title": "High Tech Immigration"
},
{
"url": "https://ask.slashdot.org/story/98/06/02/0814222/ask-slashdotlinux-isps",
"title": "Ask Slashdot:Linux ISPs"
},
{
"url": "https://news.slashdot.org/story/98/06/02/0810256/byte-magazine-update",
"title": "Byte Magazine Update"
},
{
"url": "https://news.slashdot.org/story/98/06/01/2224209/slashdot-given-yippee-award-from-zdnet",
"title": "Slashdot given Yippee award from... ZDNet!?"
},
{
"url": "https://linux.slashdot.org/story/98/06/01/1642250/linux-software-cd",
"title": "Linux Software CD"
},
{
"url": "https://slashdot.org/story/98/06/01/1021250/us-finalizing-domain-name-proposal",
"title": "US finalizing domain name proposal"
},
{
"url": "https://news.slashdot.org/story/98/06/01/0928208/book-reviewessential-system-administration",
"title": "Book Review:Essential System Administration"
},
{
"url": "https://slashdot.org/story/98/06/01/0759230/internet-addiction",
"title": "Internet Addiction"
},
{
"url": "https://hardware.slashdot.org/story/98/06/01/0755205/pilot-roms-free-for-download",
"title": "Pilot ROMS Free For Download"
},
{
"url": "https://it.slashdot.org/story/98/06/01/075300/the-great-pink-out",
"title": "The Great Pink-Out"
},
{
"url": "https://news.slashdot.org/story/98/05/31/1650242/robs-returnlinuxexpo-wrap-up",
"title": "Rob's Return/LinuxExpo Wrap Up"
},
{
"url": "https://slashdot.org/story/98/05/31/1621222/color-reactiveness-shows-up-in-gnome-cvs-tree",
"title": "Color-Reactiveness Shows Up In Gnome CVS Tree"
},
{
"url": "https://news.slashdot.org/story/98/05/31/1619219/another-journalist-tries-linux",
"title": "Another Journalist Tries Linux"
},
{
"url": "https://linux.slashdot.org/story/98/05/31/1610223/lsb-approved-by-7-distros",
"title": "LSB Approved by 7 Distros"
},
{
"url": "https://linux.slashdot.org/story/98/05/30/1243228/asp-for-linux",
"title": "ASP for Linux"
},
{
"url": "https://linux.slashdot.org/story/98/05/30/1240205/corel-extends-linux-supportcnux-platform",
"title": "Corel extends Linux SupportCnux Platform"
},
{
"url": "https://slashdot.org/story/98/05/30/1238245/ms-and-e-commerce",
"title": "MS and E-Commerce"
},
{
"url": "https://tech.slashdot.org/story/98/05/30/1236245/another-nail-in-sgis-coffin",
"title": "Another Nail in SGI's Coffin"
},
{
"url": "https://news.slashdot.org/story/98/05/30/1235217/former-german-compuserve-chef-felix-somm-sentenced",
"title": "Former german Compuserve Chef Felix Somm sentenced"
},
{
"url": "https://news.slashdot.org/story/98/05/30/0727248/the-open-group-talks-with-open-source-advocates",
"title": "The Open Group talks with Open Source advocates"
},
{
"url": "https://linux.slashdot.org/story/98/05/29/2035236/friday-linuxexpo-summary",
"title": "Friday LinuxExpo Summary"
},
{
"url": "https://tech.slashdot.org/story/98/05/29/2025203/windowmaker-0150-released",
"title": "WindowMaker 0.15.0 released"
},
{
"url": "https://slashdot.org/story/98/05/29/1925209/merced-delayed",
"title": "Merced Delayed"
},
{
"url": "https://tech.slashdot.org/story/98/05/29/1626231/emacs-vs-vi----linuxexpo-paintball",
"title": "Emacs vs. vi -- LinuxExpo Paintball"
},
{
"url": "https://linux.slashdot.org/story/98/05/29/1624233/tales-from-linuxexpo",
"title": "Tales from LinuxExpo"
},
{
"url": "https://news.slashdot.org/story/98/05/29/1622220/slashnet-growth",
"title": "SlashNET Growth"
},
{
"url": "https://slashdot.org/story/98/05/29/0919206/infiniteos-to-be-gpled",
"title": "InfiniteOS to be GPLed"
},
{
"url": "https://news.slashdot.org/story/98/05/29/0917256/cmpnet-spotlight-on-open-source",
"title": "CMPNET Spotlight on Open Source"
},
{
"url": "https://news.slashdot.org/story/98/05/29/0916235/what-happened-yesterday",
"title": "What Happened Yesterday?"
},
{
"url": "https://linux.slashdot.org/story/98/05/29/0913256/photos-from-linux-expo-almost-live",
"title": "Photos from Linux Expo (almost live)"
},
{
"url": "https://news.slashdot.org/story/98/05/29/0912200/power-pc-chips-600-mhz-1-ghz-versions-coming",
"title": "Power PC chips: 600 MHz, 1 GHz versions coming"
},
{
"url": "https://slashdot.org/story/98/05/29/098226/update-on-sun-joining-linux-international",
"title": "Update on Sun joining Linux International"
},
{
"url": "https://news.slashdot.org/story/98/05/29/094249/byte-magazine-to-shut-down",
"title": "Byte Magazine to Shut Down"
},
{
"url": "https://tech.slashdot.org/story/98/05/29/092233/softwindows-for-unix",
"title": "Softwindows for Unix"
},
{
"url": "https://news.slashdot.org/story/98/05/27/1952203/important-slashdot-info-please-read",
"title": "Important Slashdot Info (Please Read!)"
},
{
"url": "https://slashdot.org/story/98/05/27/1826258/final-quickies-before-leaving-michigan",
"title": "Final Quickies Before Leaving Michigan"
},
{
"url": "https://slashdot.org/story/98/05/27/1512253/gw2k-breaks-win98-ranks",
"title": "GW2k breaks Win98 ranks"
},
{
"url": "https://news.slashdot.org/story/98/05/27/1356228/eric-raymond-on-open-source",
"title": "Eric Raymond on Open Source"
},
{
"url": "https://news.slashdot.org/story/98/05/27/1211237/interweather-netstat-open-source-and-slashdot",
"title": "InterWeather, NetStat, Open Source, and Slashdot,"
},
{
"url": "https://slashdot.org/story/98/05/27/126240/infiniteos-and-gpld-code",
"title": "InfiniteOS and GPLd Code?"
},
{
"url": "https://linux.slashdot.org/story/98/05/27/0915227/pcquest-and-linux",
"title": "PCQuest and Linux"
},
{
"url": "https://books.slashdot.org/story/98/05/27/0911230/practical-unix-and-internet-security",
"title": "Practical Unix and Internet Security"
},
{
"url": "https://slashdot.org/story/98/05/27/0844224/ftc-considers-action-against-intel",
"title": "FTC Considers Action Against Intel"
},
{
"url": "https://tech.slashdot.org/story/98/05/27/0841249/editorialthe-kdegnome-flamewar",
"title": "Editorial:The KDE/Gnome Flamewar"
},
{
"url": "https://linux.slashdot.org/story/98/05/27/0833239/ask-slashdotlinux-and-stocks",
"title": "Ask Slashdot:Linux and Stocks"
},
{
"url": "https://news.slashdot.org/story/98/05/27/0830232/adam-clarks-legendary-compression",
"title": "Adam Clark's Legendary Compression"
},
{
"url": "https://news.slashdot.org/story/98/05/27/0825233/toms-hardware-guide-goes-private",
"title": "Tom's Hardware Guide Goes Private"
},
{
"url": "https://tech.slashdot.org/story/98/05/27/0814257/various-themesorg-updates",
"title": "Various Themes.org Updates"
},
{
"url": "https://tech.slashdot.org/story/98/05/27/089244/magicpoint-x11-presentation-tool",
"title": "MagicPoint X11 Presentation Tool"
},
{
"url": "https://apple.slashdot.org/story/98/05/26/1451227/end-of-the-supermac",
"title": "End of the SuperMac"
},
{
"url": "https://slashdot.org/story/98/05/26/1432235/buy-ms-stock-now-cheap",
"title": "Buy MS stock now! Cheap!"
},
{
"url": "https://slashdot.org/story/98/05/26/145243/the-internet-and-the-poor",
"title": "The Internet and the Poor"
},
{
"url": "https://apple.slashdot.org/story/98/05/26/1358218/infiniteos",
"title": "InfiniteOS"
},
{
"url": "https://tech.slashdot.org/story/98/05/26/1356238/artificially-created-music",
"title": "Artificially Created Music"
},
{
"url": "https://news.slashdot.org/story/98/05/26/1353200/lotus-ceo-on-open-source",
"title": "Lotus CEO on Open Source"
},
{
"url": "https://news.slashdot.org/story/98/05/26/096229/book-review-programming-perl",
"title": "Book Review: Programming Perl"
},
{
"url": "https://tech.slashdot.org/story/98/05/26/0853201/amd-unveils-k6-2",
"title": "AMD unveils K6-2"
},
{
"url": "https://ask.slashdot.org/story/98/05/26/0852206/ask-slashdotbooting-xterminals",
"title": "Ask Slashdot:Booting XTerminals"
},
{
"url": "https://linux.slashdot.org/story/98/05/26/0823212/editorialthe-purer-os",
"title": "Editorial:The Purer OS"
},
{
"url": "https://news.slashdot.org/story/98/05/26/0815206/a-critique-of-esrs-articles",
"title": "A Critique of ESR's articles"
},
{
"url": "https://linux.slashdot.org/story/98/05/26/0813206/porting-games-to-linux-faq",
"title": "Porting Games to Linux FAQ"
},
{
"url": "https://news.slashdot.org/story/98/05/26/085227/commontone-webified-database",
"title": "CommonTone Webified Database"
},
{
"url": "https://linux.slashdot.org/story/98/05/26/081238/redhat-v51-hits-the-wire",
"title": "RedHat v5.1 hits the Wire"
},
{
"url": "https://news.slashdot.org/story/98/05/25/1949259/russians-puts-renssleaer-drop-squad-to-shame",
"title": "Russians puts Renssleaer Drop Squad to shame"
},
{
"url": "https://news.slashdot.org/story/98/05/25/1943200/the-linux-monitor-database",
"title": "The Linux Monitor Database"
},
{
"url": "https://news.slashdot.org/story/98/05/25/1933256/itsy-website-updates",
"title": "Itsy Website Updates"
},
{
"url": "https://news.slashdot.org/story/98/05/25/1636233/slashdot-source-information",
"title": "Slashdot Source Information"
},
{
"url": "https://news.slashdot.org/story/98/05/25/1446251/the-saab-moose-test",
"title": "The Saab Moose Test"
},
{
"url": "https://slashdot.org/story/98/05/25/1441232/gimp-manual-10-is-out",
"title": "Gimp Manual 1.0 is Out"
},
{
"url": "https://ask.slashdot.org/story/98/05/25/106212/ask-slashdotchanges-in-latitude",
"title": "Ask Slashdot:Changes in Latitude"
},
{
"url": "https://games.slashdot.org/story/98/05/25/0934229/new-snes9x",
"title": "New SNES9x"
},
{
"url": "https://news.slashdot.org/story/98/05/24/1723249/a-pair-of-pixar-pics",
"title": "A Pair of Pixar Pics"
},
{
"url": "https://games.slashdot.org/story/98/05/24/161400/unreal-on-linux-petition",
"title": "Unreal on Linux Petition"
},
{
"url": "https://tech.slashdot.org/story/98/05/24/160700/reasons-for-doszilla-and-javazilla",
"title": "Reasons for DOSzilla and JAVAzilla"
},
{
"url": "https://bsd.slashdot.org/story/98/05/24/100600/freebsd-newsletter-issue-2",
"title": "FreeBSD Newsletter Issue #2"
},
{
"url": "https://news.slashdot.org/story/98/05/23/202100/saturdays-quickies",
"title": "Saturdays Quickies"
},
{
"url": "https://news.slashdot.org/story/98/04/23/126237/dave-and-robs-excellent-adventure",
"title": "Dave and Rob's Excellent(?) Adventure"
},
{
"url": "https://news.slashdot.org/story/98/04/23/0951258/reviewfear-and-loathing-in-las-vegas",
"title": "Review:Fear and Loathing in Las Vegas"
},
{
"url": "https://linux.slashdot.org/story/98/05/23/092600/the-case-against-linux",
"title": "The Case Against Linux"
},
{
"url": "https://it.slashdot.org/story/98/04/23/0912241/californian-programmer-probed-for-crypto-export",
"title": "Californian Programmer Probed for Crypto Export"
},
{
"url": "https://linux.slashdot.org/story/98/04/23/0910217/project-heresy-round-4",
"title": "Project Heresy: Round 4"
},
{
"url": "https://linux.slashdot.org/story/98/04/23/093248/red-hat-linux-51-really-announced",
"title": "Red Hat Linux 5.1 really Announced"
},
{
"url": "https://news.slashdot.org/story/98/04/22/2248213/scheduling-slashdot-downtime",
"title": "Scheduling Slashdot Downtime"
},
{
"url": "https://news.slashdot.org/story/98/04/22/1755237/assorted-friday-quickies",
"title": "Assorted Friday Quickies"
},
{
"url": "https://news.slashdot.org/story/98/04/22/1725255/hacker-v-cracker",
"title": "Hacker v. Cracker"
},
{
"url": "https://slashdot.org/story/98/04/22/1720244/intel-buys-dec-semiconductor-manufacturing",
"title": "Intel buys DEC Semiconductor Manufacturing"
},
{
"url": "https://news.slashdot.org/story/98/04/22/150236/jva-invaders-abducted",
"title": "J*va Invaders Abducted"
},
{
"url": "https://tech.slashdot.org/story/98/04/22/1150225/open-group-releases-unix-98-specification",
"title": "Open Group Releases Unix 98 Specification"
},
{
"url": "https://yro.slashdot.org/story/98/04/22/1013211/microsofts-delay-denied",
"title": "Microsoft's Delay Denied"
},
{
"url": "https://features.slashdot.org/story/98/04/22/094252/editorialanalogies-and-monopolies",
"title": "Editorial:Analogies and Monopolies"
},
{
"url": "https://ask.slashdot.org/story/98/04/22/0856221/ask-slashdotunix-laptops",
"title": "Ask Slashdot:Unix Laptops"
},
{
"url": "https://news.slashdot.org/story/98/04/22/0838236/the-transmeta-article",
"title": "The Transmeta Article"
},
{
"url": "https://slashdot.org/story/98/04/22/001205/interweather-to-open-source",
"title": "InterWeather to Open Source"
},
{
"url": "https://slashdot.org/story/98/04/21/2355218/open-source-paper-finished",
"title": "Open-source Paper Finished"
},
{
"url": "https://slashdot.org/story/98/04/21/1730214/sun-joins-linux-international",
"title": "Sun Joins Linux International"
},
{
"url": "https://bsd.slashdot.org/story/98/04/21/169227/openbsd-23-shipping",
"title": "OpenBSD 2.3 Shipping"
},
{
"url": "https://linux.slashdot.org/story/98/04/21/1535215/redhat-v51-release-date-announced",
"title": "RedHat v5.1 Release Date Announced"
},
{
"url": "https://tech.slashdot.org/story/98/04/21/1456252/packard-bell-to-use-cyrix-chips",
"title": "Packard Bell to use Cyrix Chips"
},
{
"url": "https://slashdot.org/story/98/04/21/1431228/bluetooth-wireless-networking",
"title": "BlueTooth Wireless Networking"
},
{
"url": "https://it.slashdot.org/story/98/04/21/1330217/bad-news-for-commercial-spammers",
"title": "Bad News for Commercial Spammers"
},
{
"url": "https://tech.slashdot.org/story/98/04/21/1015223/editorialcomputers-and-education",
"title": "Editorial:Computers and Education"
},
{
"url": "https://developers.slashdot.org/story/98/04/21/105216/happy-3rd-birthday-java",
"title": "Happy 3rd Birthday Java!"
},
{
"url": "https://tech.slashdot.org/story/98/04/21/101243/latest-rumors-on-galaxy-4",
"title": "Latest rumors on Galaxy 4"
},
{
"url": "https://slashdot.org/story/98/04/21/0957242/beos-review--anandtech",
"title": "BeOS Review @ AnandTech"
},
{
"url": "https://slashdot.org/story/98/04/21/0955230/wto-nixes-net-taxes-for-12mos",
"title": "WTO Nixes Net Taxes for 12mos"
},
{
"url": "https://news.slashdot.org/story/98/04/21/0953214/run-your-car-with-water-400-miles-for-a-buck",
"title": "Run your Car with Water (400 Miles for a buck)"
},
{
"url": "https://slashdot.org/story/98/04/21/0948233/gnu-and-perl-docs-addressed-by-tomc",
"title": "GNU and Perl Docs Addressed by TomC"
},
{
"url": "https://news.slashdot.org/story/98/04/21/0922250/lost-in-time-lost-in-space",
"title": "Lost in Time, Lost in Space"
},
{
"url": "https://apple.slashdot.org/story/98/04/21/0921230/make-an-aquarium-out-of-that-old-mac",
"title": "Make an Aquarium out of that old Mac"
},
{
"url": "https://tech.slashdot.org/story/98/04/21/0919212/alex-st-john-on-corels-announcement",
"title": "Alex St. John on Corel's Announcement"
},
{
"url": "https://slashdot.org/story/98/04/21/0912251/aol-buys-icq",
"title": "AOL buys ICQ"
},
{
"url": "https://linux.slashdot.org/story/98/04/20/2122228/linux-21103-released",
"title": "Linux 2.1.103 Released"
},
{
"url": "https://news.slashdot.org/story/98/04/20/192244/the-biotech-century-book-review",
"title": "The Biotech Century (Book Review)"
},
{
"url": "https://news.slashdot.org/story/98/04/20/1650201/lets-do-the-space-warp-again",
"title": "Let's do the Space Warp again"
},
{
"url": "https://games.slashdot.org/story/98/04/20/153212/unreal-goes-gold-really",
"title": "Unreal Goes Gold (Really)"
},
{
"url": "https://tech.slashdot.org/story/98/04/20/1458226/developercom-article-on-mozilla-source",
"title": "Developer.com Article on Mozilla Source"
},
{
"url": "https://slashdot.org/story/98/04/20/132208/eu-vs-worldcom",
"title": "EU vs WorldCom"
},
{
"url": "https://news.slashdot.org/story/98/04/20/111214/l0pht-warns-congress",
"title": "L0pht Warns Congress"
},
{
"url": "https://linux.slashdot.org/story/98/04/20/1057230/hardware-linux-keys",
"title": "Hardware: Linux keys"
},
{
"url": "https://news.slashdot.org/story/98/04/20/1053204/rob-rants-about-a-couple-current-slashdot-issues",
"title": "Rob Rants About a Couple Current Slashdot Issues"
},
{
"url": "https://ask.slashdot.org/story/98/04/20/0948237/ask-slashdotnetscapes-email-client",
"title": "Ask Slashdot:Netscape's Email Client"
},
{
"url": "https://slashdot.org/story/98/04/20/0943214/solaris-64-bit-beta",
"title": "Solaris 64-Bit Beta"
},
{
"url": "https://news.slashdot.org/story/98/04/20/0940244/galaxy-4-dies-and-takes-pagers-with-it",
"title": "Galaxy 4 Dies (and takes pagers with it)"
},
{
"url": "https://slashdot.org/story/98/04/20/0930256/w3cs-platform-for-privacy",
"title": "W3C's Platform for Privacy"
},
{
"url": "https://games.slashdot.org/story/98/04/20/0923227/blizzard-sues-micro-star",
"title": "Blizzard sues Micro Star"
},
{
"url": "https://tech.slashdot.org/story/98/04/20/0911240/color-reactive-guis-gnome",
"title": "Color-Reactive GUIs & Gnome"
},
{
"url": "https://slashdot.org/story/98/04/20/0515201/caldera-cuts-fasttrack-price",
"title": "Caldera cuts Fasttrack price"
},
{
"url": "https://linux.slashdot.org/story/98/04/19/2347208/g3-compatible-linuxppc-released",
"title": "G3 compatible LinuxPPC released"
},
{
"url": "https://news.slashdot.org/story/98/04/19/2340208/late-night-quickies",
"title": "Late Night Quickies"
},
{
"url": "https://news.slashdot.org/story/98/04/19/1558200/tech-visas-approved",
"title": "Tech visas approved"
},
{
"url": "https://slashdot.org/story/98/04/19/1425251/smoking-gun-in-microsoft-memos",
"title": "Smoking gun in Microsoft Memos"
},
{
"url": "https://linux.slashdot.org/story/98/04/19/1422231/linux-advocacy-for-business",
"title": "Linux Advocacy for Business"
},
{
"url": "https://apple.slashdot.org/story/98/04/19/1420202/posix-on-top-of-macos",
"title": "POSIX on top of MacOS"
},
{
"url": "https://linux.slashdot.org/story/98/04/19/1033234/featurethe-linux-standard-base-system",
"title": "Feature:The Linux Standard Base System"
},
{
"url": "https://ask.slashdot.org/story/98/04/19/1026245/ask-slashdottrouble-after-kde-install",
"title": "Ask Slashdot:Trouble After KDE Install"
},
{
"url": "https://tech.slashdot.org/story/98/04/19/1021240/amazing-new-video-compression",
"title": "Amazing(?) New Video Compression"
},
{
"url": "https://news.slashdot.org/story/98/04/19/1017201/name-the-international-space-station",
"title": "Name the International Space Station"
},
{
"url": "https://slashdot.org/story/98/04/19/1015206/rms-plugin-clarification",
"title": "RMS plugin clarification"
},
{
"url": "https://tech.slashdot.org/story/98/04/19/097207/charles-hines-leaves-fvwm-2x",
"title": "Charles Hines Leaves fvwm 2.x"
},
{
"url": "https://tech.slashdot.org/story/98/04/19/093254/project-magicsmoke",
"title": "Project MagicSmoke"
},
{
"url": "https://news.slashdot.org/story/98/04/18/1932209/mondays-quickies",
"title": "Monday's Quickies"
},
{
"url": "https://linux.slashdot.org/story/98/04/18/1928223/linux-perspective",
"title": "Linux Perspective"
},
{
"url": "https://news.slashdot.org/story/98/04/18/1918226/several-slashdot-faqs-please-read",
"title": "Several Slashdot FAQs (Please Read)"
},
{
"url": "https://linux.slashdot.org/story/98/04/18/1913233/linux-ecc-testers-wanted",
"title": "Linux ECC Testers Wanted"
},
{
"url": "https://slashdot.org/story/98/04/18/1420253/paper-on-open-source-development-method",
"title": "Paper on open-source Development Method"
},
{
"url": "https://news.slashdot.org/story/98/04/18/148215/open-group-to-close",
"title": "Open Group to Close?"
},
{
"url": "https://tech.slashdot.org/story/98/04/18/143218/wearable-pcs",
"title": "Wearable PCs"
},
{
"url": "https://yro.slashdot.org/story/98/04/18/1037216/ms-vs-the-universe",
"title": "MS vs The Universe"
},
{
"url": "https://slashdot.org/story/98/05/18/095600/apple-summary",
"title": "Apple Summary"
},
{
"url": "https://ask.slashdot.org/story/98/04/18/0950218/ask-slashdotbooting-solaris-from-linux",
"title": "Ask Slashdot:Booting Solaris From Linux"
},
{
"url": "https://news.slashdot.org/story/98/04/18/0927200/roadmap-for-consumer-privacy",
"title": "Roadmap for Consumer Privacy"
},
{
"url": "https://news.slashdot.org/story/98/04/18/0924258/editoriallicense-fun",
"title": "Editorial:License Fun"
},
{
"url": "https://slashdot.org/story/98/05/18/090700/more-fun-for-ms",
"title": "More Fun for MS"
},
{
"url": "https://slashdot.org/story/98/04/17/214214/gimp-09931",
"title": "Gimp 0.99.31"
},
{
"url": "https://hardware.slashdot.org/story/98/04/17/1414253/uclinux-kit-and-kernel-patch",
"title": "uClinux kit and kernel patch"
},
{
"url": "https://slashdot.org/story/98/04/17/1150229/ms-special-report",
"title": "MS Special Report"
},
{
"url": "https://linux.slashdot.org/story/98/04/17/1059208/3d-shooting-game-for-linuxmesa3dfx-released",
"title": "3D Shooting game for Linux/Mesa/3Dfx released!"
},
{
"url": "https://news.slashdot.org/story/98/05/17/104800/project-heresy-round-3",
"title": "Project Heresy Round 3"
},
{
"url": "https://games.slashdot.org/story/98/05/17/104300/great-progress-on-n64-emulator",
"title": "Great Progress on N64 Emulator"
},
{
"url": "https://news.slashdot.org/story/98/04/17/1038244/pc-mag-on-mit-wearables-project",
"title": "PC Mag on MIT Wearables Project"
},
{
"url": "https://linux.slashdot.org/story/98/04/17/0727252/red-hat-releases-secure-web-server",
"title": "Red Hat releases Secure Web Server"
},
{
"url": "https://news.slashdot.org/story/98/05/16/180600/a-batch-of-saturday-quickies",
"title": "A Batch of Saturday Quickies"
},
{
"url": "https://yro.slashdot.org/story/98/04/16/1658228/ms-talks-break-down",
"title": "MS talks break down"
},
{
"url": "https://tech.slashdot.org/story/98/04/16/1657249/proposed-mozilla-stabilization-schedule",
"title": "Proposed Mozilla Stabilization Schedule"
},
{
"url": "https://news.slashdot.org/story/98/04/16/1611229/book-review-good-omens",
"title": "Book Review: Good Omens"
},
{
"url": "https://tech.slashdot.org/story/98/05/16/131700/new-e14-preview",
"title": "New E14 Preview"
},
{
"url": "https://slashdot.org/story/98/04/16/1058215/copyright-bill-passed",
"title": "Copyright Bill Passed"
},
{
"url": "https://linux.slashdot.org/story/98/04/16/1049203/free-mp3-encoder-for-linux",
"title": "Free mp3 Encoder For Linux"
},
{
"url": "https://apple.slashdot.org/story/98/05/16/104700/amelio-on-the-new-apple",
"title": "Amelio on the New Apple"
},
{
"url": "https://linux.slashdot.org/story/98/04/16/1039228/linux-drives-cars",
"title": "Linux Drives Cars!"
},
{
"url": "https://ask.slashdot.org/story/98/04/16/1024229/ask-slashdotfun-with-ldap",
"title": "Ask Slashdot:Fun with LDAP"
},
{
"url": "https://news.slashdot.org/story/98/05/15/172700/batch-of-friday-fun",
"title": "Batch of Friday Fun"
},
{
"url": "https://news.slashdot.org/story/98/04/15/1417202/internet-users-rally-behind-ms",
"title": "Internet Users Rally Behind MS?"
},
{
"url": "https://ask.slashdot.org/story/98/04/15/1348224/ask-slashdotmacos-8-and-linux-servers",
"title": "Ask Slashdot:MacOS 8 and Linux Servers"
},
{
"url": "https://slashdot.org/story/98/05/15/122800/emulation-contest",
"title": "Emulation Contest"
},
{
"url": "https://news.slashdot.org/story/98/05/15/122500/faked-hacker-article",
"title": "Faked Hacker Article"
},
{
"url": "https://news.slashdot.org/story/98/05/15/121800/amoeba-is-now-free",
"title": "Amoeba is Now Free"
},
{
"url": "https://linux.slashdot.org/story/98/05/15/121500/linux-conferences",
"title": "Linux Conferences"
},
{
"url": "https://yro.slashdot.org/story/98/04/15/1130233/interesting-perspective-on-ms-lawsuit",
"title": "Interesting Perspective on MS Lawsuit"
},
{
"url": "https://slashdot.org/story/98/04/15/1049221/cyberspace-too-confusing-for-janet-reno",
"title": "Cyberspace too confusing for Janet Reno"
},
{
"url": "https://slashdot.org/story/98/04/15/1046239/microsoft-releasing-source-code",
"title": "Microsoft Releasing Source Code?"
},
{
"url": "https://tech.slashdot.org/story/98/05/15/104400/vqf-music-format",
"title": "VQF music format"
},
{
"url": "https://linux.slashdot.org/story/98/04/15/1040232/linux-21102-released",
"title": "Linux 2.1.102 Released"
},
{
"url": "https://apple.slashdot.org/story/98/04/15/1039230/rhapsody-dr2-screenshots",
"title": "Rhapsody DR2 screenshots"
},
{
"url": "https://it.slashdot.org/story/98/04/14/1810241/pro-privacy-crypto-bill",
"title": "Pro-Privacy Crypto Bill"
},
{
"url": "https://slashdot.org/story/98/05/14/180800/rms-on-gpl-and-plug-ins",
"title": "RMS on GPL and Plug-ins"
},
{
"url": "https://it.slashdot.org/story/98/05/14/170900/partial-victory-for-anti-spammers",
"title": "Partial Victory for Anti-Spammers"
},
{
"url": "https://news.slashdot.org/story/98/05/14/142800/starwarsx-files-info",
"title": "StarWars/X-Files Info"
},
{
"url": "https://games.slashdot.org/story/98/05/14/123100/winestarcraft",
"title": "Wine+StarCraft"
},
{
"url": "https://yro.slashdot.org/story/98/05/14/122700/ms-delays-win-98",
"title": "MS Delays Win '98"
},
{
"url": "https://news.slashdot.org/story/98/05/14/112300/emulating-the-emulator",
"title": "Emulating the Emulator"
},
{
"url": "https://news.slashdot.org/story/98/04/14/0948245/open-source-infrastructure-editorial",
"title": "Open Source Infrastructure (editorial)"
},
{
"url": "https://tech.slashdot.org/story/98/05/14/094000/nsbios",
"title": "NSBIOS"
},
{
"url": "https://developers.slashdot.org/story/98/04/14/0936203/pressuring-sun-for-a-jdklinux-port",
"title": "Pressuring Sun for a JDK/Linux Port"
},
{
"url": "https://tech.slashdot.org/story/98/04/14/0930208/new-amiga-rumors",
"title": "New Amiga Rumors"
},
{
"url": "https://news.slashdot.org/story/98/04/14/0926205/code-crusader",
"title": "Code Crusader"
},
{
"url": "https://linux.slashdot.org/story/98/04/14/0919248/another-linux-site",
"title": "Another Linux Site"
},
{
"url": "https://tech.slashdot.org/story/98/05/14/091500/illegally-altered-chips-in-thousands-of-pcs",
"title": "Illegally Altered Chips In thousands of PCs!"
},
{
"url": "https://slashdot.org/story/98/04/13/1852213/batch-of-internet-quickees",
"title": "Batch of Internet Quickees"
},
{
"url": "https://linux.slashdot.org/story/98/05/13/184600/batch-of-linux-quickees",
"title": "Batch of Linux Quickees"
},
{
"url": "https://news.slashdot.org/story/98/04/13/1615258/free-software-article-in-wired",
"title": "Free Software Article in Wired"
},
{
"url": "https://news.slashdot.org/story/98/04/13/168213/woz-gives-address",
"title": "Woz Gives Address"
},
{
"url": "https://news.slashdot.org/story/98/05/13/103600/behold-the-tulipcam",
"title": "Behold, the TulipCam!"
},
{
"url": "https://ask.slashdot.org/story/98/05/13/094300/ask-slashdotthe-debut",
"title": "Ask Slashdot:The Debut"
},
{
"url": "https://news.slashdot.org/story/98/04/13/0934205/dumbing-down-of-programming",
"title": "Dumbing Down of Programming"
},
{
"url": "https://linux.slashdot.org/story/98/04/13/0917217/linux-quebec-linuxconf-and-rh51",
"title": "Linux-Quebec, LinuxConf and RH5.1"
},
{
"url": "https://slashdot.org/story/98/04/13/0914222/new-laws-regarding-digital-data-distribution",
"title": "New Laws Regarding Digital Data Distribution"
},
{
"url": "https://tech.slashdot.org/story/98/04/13/0912226/mozilla-gets-unofficial-throbber",
"title": "Mozilla Gets Unofficial Throbber"
},
{
"url": "https://yro.slashdot.org/story/98/04/13/094247/courts-decide-microsoft-can-bundle-browser",
"title": "Courts Decide Microsoft can Bundle Browser"
},
{
"url": "https://linux.slashdot.org/story/98/04/13/0430246/red-hat-software-releases-extreme-linux",
"title": "Red Hat Software releases Extreme Linux"
},
{
"url": "https://tech.slashdot.org/story/98/04/13/0356234/messenger-source-code-to-be-released-soon",
"title": "Messenger source code to be released soon"
},
{
"url": "https://news.slashdot.org/story/98/05/12/201800/couple-of-quickees",
"title": "Couple of Quickees"
},
{
"url": "https://news.slashdot.org/story/98/05/12/193700/slashnet-notes",
"title": "SlashNET Notes"
},
{
"url": "https://tech.slashdot.org/story/98/05/12/192300/history-of-unix",
"title": "History of Unix"
},
{
"url": "https://it.slashdot.org/story/98/04/12/1915219/new-support-on-anti-spam-front",
"title": "New Support on Anti-Spam Front"
},
{
"url": "https://slashdot.org/story/98/05/12/170600/sun-sues-microsoft",
"title": "Sun Sues Microsoft"
},
{
"url": "https://news.slashdot.org/story/98/04/12/1628214/beyond-the-cathedral-beyond-the-bazaar",
"title": "Beyond the Cathedral, Beyond the Bazaar"
},
{
"url": "https://tech.slashdot.org/story/98/04/12/1241201/ancient-unix-source-code",
"title": "Ancient Unix Source Code"
},
{
"url": "https://news.slashdot.org/story/98/05/12/113000/nifty-new-bmw",
"title": "Nifty New BMW"
},
{
"url": "https://it.slashdot.org/story/98/05/12/112500/encryption-compromises",
"title": "Encryption Compromises?"
},
{
"url": "https://news.slashdot.org/story/98/05/12/112100/msnbc-polls-questioned",
"title": "MSNBC Polls Questioned?"
},
{
"url": "https://tech.slashdot.org/story/98/04/12/118226/mp3-and-patents-editorial",
"title": "MP3 and Patents (editorial)"
},
{
"url": "https://linux.slashdot.org/story/98/05/12/110000/linux-needs-wysiwyg-web-tools",
"title": "Linux needs Wysiwyg Web Tools"
},
{
"url": "https://tech.slashdot.org/story/98/04/12/1050232/standardizing-unix",
"title": "Standardizing Unix"
},
{
"url": "https://slashdot.org/story/98/04/12/1044226/intel-cpu-product-roadmap",
"title": "Intel CPU Product Roadmap"
},
{
"url": "https://news.slashdot.org/story/98/05/11/211700/slashnet-irc-goes-live",
"title": "SlashNET IRC Goes Live!"
},
{
"url": "https://news.slashdot.org/story/98/04/11/1854207/deep-impact-review",
"title": "Deep Impact (review)"
},
{
"url": "https://news.slashdot.org/story/98/05/11/183200/a-batch-of-quickees",
"title": "A Batch of Quickees"
},
{
"url": "https://apple.slashdot.org/story/98/04/11/1545222/macos-x",
"title": "MacOS X"
},
{
"url": "https://news.slashdot.org/story/98/04/11/1520228/sbc-and-ameritech-merging",
"title": "SBC and Ameritech Merging"
},
{
"url": "https://news.slashdot.org/story/98/05/11/133400/what-if-wintel-fell",
"title": "What if Wintel Fell?"
},
{
"url": "https://tech.slashdot.org/story/98/04/11/1326223/k6-3d-release-date",
"title": "K6-3D Release Date"
},
{
"url": "https://news.slashdot.org/story/98/05/11/132500/stephen-hawking-visits-silicon-graphics",
"title": "Stephen Hawking Visits Silicon Graphics"
},
{
"url": "https://linux.slashdot.org/story/98/04/11/0925221/corel-and-linux-computers-editorial",
"title": "Corel and Linux Computers (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/05/11/091900/fund-for-open-source-software",
"title": "Fund for Open Source Software"
},
{
"url": "https://tech.slashdot.org/story/98/04/11/0914257/incredible-windowmaker-web-page",
"title": "Incredible WindowMaker Web Page"
},
{
"url": "https://news.slashdot.org/story/98/04/11/0910249/tcltk-scriptics",
"title": "Tcl/Tk Scriptics"
},
{
"url": "https://tech.slashdot.org/story/98/05/11/090900/netscape-engineering-sign",
"title": "Netscape Engineering Sign"
},
{
"url": "https://tech.slashdot.org/story/98/05/11/090500/enlightenment-14",
"title": "Enlightenment 14"
},
{
"url": "https://games.slashdot.org/story/98/04/11/091225/blizzard-spa-and-starhack-site",
"title": "Blizzard, SPA and StarHack site"
},
{
"url": "https://tech.slashdot.org/story/98/05/10/155800/mozilla-releases-nglayout-aka-raptor",
"title": "Mozilla releases NGLayout (aka Raptor)"
},
{
"url": "https://news.slashdot.org/story/98/05/10/112000/happy-birthday-to-me-and-other-fun-stuff",
"title": "Happy Birthday To Me (and other fun stuff)"
},
{
"url": "https://news.slashdot.org/story/98/04/10/1028201/public-software-institute",
"title": "Public Software Institute"
},
{
"url": "https://slashdot.org/story/98/05/10/102200/rms-responds-to-be-use-of-gpld-code",
"title": "RMS responds to Be use of GPL'd code"
},
{
"url": "https://news.slashdot.org/story/98/05/10/101800/another-potential-portable-mp3-player",
"title": "Another Potential Portable MP3 Player"
},
{
"url": "https://slashdot.org/story/98/05/10/100900/music-contest-6",
"title": "Music Contest 6"
},
{
"url": "https://apple.slashdot.org/story/98/05/09/150300/mac-gui--linux-rumor",
"title": "Mac GUI + Linux Rumor?"
},
{
"url": "https://hardware.slashdot.org/story/98/04/09/1450222/palmvnc-now-out",
"title": "PalmVNC Now Out"
},
{
"url": "https://news.slashdot.org/story/98/05/09/144500/misc-slashdot-notes",
"title": "Misc Slashdot Notes"
},
{
"url": "https://news.slashdot.org/story/98/04/09/1345221/esr-on-somenet-tonight",
"title": "ESR on Somenet Tonight"
},
{
"url": "https://news.slashdot.org/story/98/04/09/136202/letter-to-dell---linux-on-dell-hardware",
"title": "Letter to Dell - Linux on Dell Hardware"
},
{
"url": "https://news.slashdot.org/story/98/05/09/125000/joke-wallpapers",
"title": "Joke Wallpapers"
},
{
"url": "https://slashdot.org/story/98/04/09/1055206/a-batch-of-sun-stuff",
"title": "A Batch of Sun Stuff"
},
{
"url": "https://linux.slashdot.org/story/98/04/08/2219252/linux-21101-released",
"title": "Linux 2.1.101 Released"
},
{
"url": "https://linux.slashdot.org/story/98/04/08/2149218/project-heresy",
"title": "Project Heresy"
},
{
"url": "https://news.slashdot.org/story/98/04/08/1825222/an-array-of-nifty-quickees",
"title": "An Array Of Nifty Quickees"
},
{
"url": "https://linux.slashdot.org/story/98/04/08/1740201/parallel-compilers-for-linux-on-merced",
"title": "Parallel Compilers for Linux on Merced"
},
{
"url": "https://linux.slashdot.org/story/98/04/08/1616252/linuxcorel-at-newscom",
"title": "Linux/Corel At News.com"
},
{
"url": "https://linux.slashdot.org/story/98/04/08/147234/linux-web-map-moves",
"title": "Linux Web Map Moves"
},
{
"url": "https://news.slashdot.org/story/98/04/08/1136243/wired-sold",
"title": "Wired Sold"
},
{
"url": "https://linux.slashdot.org/story/98/04/08/1134254/linux-ports-one-body-running-on-many-legs",
"title": "Linux Ports: One Body Running on Many Legs"
},
{
"url": "https://news.slashdot.org/story/98/04/08/1134201/open-sources-achilles-heal-editorial",
"title": "Open Source's Achilles Heal (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/04/08/1011206/qa-forums",
"title": "Q&A Forums"
},
{
"url": "https://slashdot.org/story/98/05/08/094400/beoss-future",
"title": "BeOS's Future"
},
{
"url": "https://slashdot.org/story/98/04/08/0936206/looming-suits-hit-microsoft-shares",
"title": "Looming suits hit Microsoft shares"
},
{
"url": "https://slashdot.org/story/98/04/08/0931253/blitzkrieg-server",
"title": "Blitzkrieg Server"
},
{
"url": "https://linux.slashdot.org/story/98/04/08/0620212/linux-21100-released",
"title": "Linux 2.1.100 Released"
},
{
"url": "https://linux.slashdot.org/story/98/04/07/1946216/corels-big-announcement",
"title": "Corels Big Announcement"
},
{
"url": "https://hardware.slashdot.org/story/98/04/07/1912228/palmpilot-book-by-oreily",
"title": "PalmPilot book by O'Reily"
},
{
"url": "https://tech.slashdot.org/story/98/04/07/1523204/motorola-announces-altivec",
"title": "Motorola Announces AltiVec"
},
{
"url": "https://linux.slashdot.org/story/98/04/07/1516241/corel-announcement-on-linuxnet-tonight-live",
"title": "Corel Announcement on LinuxNet tonight, live."
},
{
"url": "https://tech.slashdot.org/story/98/04/07/151220/techweb-praises-unix",
"title": "Techweb Praises UNIX"
},
{
"url": "https://apple.slashdot.org/story/98/04/07/1456223/the-imac-debate-editorial",
"title": "The iMac Debate (editorial)"
},
{
"url": "https://tech.slashdot.org/story/98/05/07/113600/judge-dismisses-wang-patent-claim-against-netscape",
"title": "Judge Dismisses Wang Patent Claim Against Netscape"
},
{
"url": "https://news.slashdot.org/story/98/04/07/0937246/students-e-mail-barrage-clogs-university-computer",
"title": "Students E-mail Barrage Clogs University Computer"
},
{
"url": "https://linux.slashdot.org/story/98/04/07/0947215/the-linux-labor-force-editorial",
"title": "The Linux Labor Force (editorial)"
},
{
"url": "https://linux.slashdot.org/story/98/04/07/0927205/linux-in-hong-kong",
"title": "Linux in Hong Kong"
},
{
"url": "https://linux.slashdot.org/story/98/04/06/212203/linux-marketshare-at-isps-zdnet-story",
"title": "Linux marketshare at ISPs (zdnet story)"
},
{
"url": "https://apple.slashdot.org/story/98/05/06/145900/apples-big-surprise",
"title": "Apples Big Surprise"
},
{
"url": "https://tech.slashdot.org/story/98/04/06/147230/more-source-code-from-netscape",
"title": "More source code from Netscape"
},
{
"url": "https://news.slashdot.org/story/98/04/06/1234238/star-trek-lawsuit",
"title": "Star Trek Lawsuit"
},
{
"url": "https://news.slashdot.org/story/98/04/06/1020259/stupid-perl-tricks",
"title": "Stupid Perl Tricks"
},
{
"url": "https://slashdot.org/story/98/04/06/105238/pentagon-hacks-conservation-group",
"title": "Pentagon Hacks Conservation Group?"
},
{
"url": "https://linux.slashdot.org/story/98/04/06/0950245/the-crusher-os-editorial",
"title": "The Crusher OS (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/04/06/0930253/keeping-stuff-safe",
"title": "Keeping Stuff Safe"
},
{
"url": "https://tech.slashdot.org/story/98/05/06/091000/itsy-ultimate-linux-handheld",
"title": "Itsy: Ultimate Linux Handheld?"
},
{
"url": "https://apple.slashdot.org/story/98/04/06/0853244/wwwapplecom-whoa",
"title": "www.apple.com (Whoa)"
},
{
"url": "https://slashdot.org/story/98/04/06/0848213/be-makes-good-on-gpl",
"title": "Be Makes Good on GPL"
},
{
"url": "https://slashdot.org/story/98/04/05/2047206/guest-tile-of-the-week",
"title": "Guest Tile of the Week"
},
{
"url": "https://news.slashdot.org/story/98/04/05/2018244/kinds-of-software",
"title": "Kinds of Software"
},
{
"url": "https://news.slashdot.org/story/98/04/05/1624207/making-money-on-open-source",
"title": "Making Money on Open Source"
},
{
"url": "https://slashdot.org/story/98/04/05/1554259/net-terrorism",
"title": "Net-Terrorism"
},
{
"url": "https://slashdot.org/story/98/04/05/1433215/every-comic-on-the-web",
"title": "Every Comic on the Web?"
},
{
"url": "https://apple.slashdot.org/story/98/04/05/1041222/macintouch-seeks-virtualpclinux-users",
"title": "Macintouch Seeks VirtualPC/Linux Users"
},
{
"url": "https://tech.slashdot.org/story/98/04/05/1039220/unix-vendors-flock-to-merced",
"title": "Unix Vendors Flock to Merced"
},
{
"url": "https://linux.slashdot.org/story/98/04/05/1034239/how-not-to-kill-linux-editorial",
"title": "How Not to Kill Linux (editorial)"
},
{
"url": "https://slashdot.org/story/98/04/05/1027231/gimp-09929",
"title": "Gimp 0.99.29"
},
{
"url": "https://news.slashdot.org/story/98/04/05/1022235/modes-of-production",
"title": "Modes of Production"
},
{
"url": "https://news.slashdot.org/story/98/04/05/1016241/free-art-and-the-geek-culture",
"title": "Free Art and the Geek Culture"
},
{
"url": "https://slashdot.org/story/98/04/05/0658207/sun-releases-chip",
"title": "Sun Releases Chip"
},
{
"url": "https://tech.slashdot.org/story/98/04/04/1946239/sunibm-joint-unix",
"title": "Sun/IBM Joint Unix?"
},
{
"url": "https://news.slashdot.org/story/98/04/04/1924255/corel-and-open-source",
"title": "Corel and Open Source"
},
{
"url": "https://linux.slashdot.org/story/98/04/04/1623214/the-linux-package-problem",
"title": "The Linux Package Problem"
},
{
"url": "https://apple.slashdot.org/story/98/04/04/1518202/service-for-mklinux",
"title": "Service for MkLinux"
},
{
"url": "https://slashdot.org/story/98/04/04/144212/microsoft-warns-wall-street",
"title": "Microsoft warns Wall Street"
},
{
"url": "https://linux.slashdot.org/story/98/04/04/1355240/stampede-linux-version-079",
"title": "Stampede Linux Version 0.79"
},
{
"url": "https://linux.slashdot.org/story/98/04/04/125205/netscape-and-linux",
"title": "Netscape and Linux"
},
{
"url": "https://news.slashdot.org/story/98/04/04/1130248/att-and-lycos-in-deal",
"title": "AT&T and Lycos in deal"
},
{
"url": "https://news.slashdot.org/story/98/04/04/0934234/hardware-support-on-freenix-editorial",
"title": "Hardware Support on Freenix (editorial)"
},
{
"url": "https://linux.slashdot.org/story/98/04/04/0920220/kirc-developer-speaks-out",
"title": "Kirc Developer Speaks Out"
},
{
"url": "https://news.slashdot.org/story/98/04/03/1856215/stupid-perl-tricks",
"title": "Stupid Perl Tricks"
},
{
"url": "https://slashdot.org/story/98/04/03/179203/is-efnet-dying",
"title": "Is EFNet Dying?"
},
{
"url": "https://games.slashdot.org/story/98/04/03/1659227/carmack-on-quake2-server-backdoor",
"title": "Carmack on Quake2 Server Backdoor"
},
{
"url": "https://linux.slashdot.org/story/98/04/03/1646245/nick-petreley-and-debugging-linux-drivers",
"title": "Nick Petreley and Debugging Linux Drivers"
},
{
"url": "https://apple.slashdot.org/story/98/04/03/1632241/rhapsody-and-mklinux-to-coexist",
"title": "Rhapsody and MkLinux to coexist?"
},
{
"url": "https://news.slashdot.org/story/98/04/03/1323227/misc-slashdot-notes",
"title": "Misc Slashdot Notes"
},
{
"url": "https://news.slashdot.org/story/98/04/03/1211258/guns-germs-and-steel-review",
"title": "Guns, Germs and Steel Review"
},
{
"url": "https://news.slashdot.org/story/98/04/03/1210247/running-linux-review",
"title": "Running Linux Review"
},
{
"url": "https://news.slashdot.org/story/98/04/03/128228/microserfs-review",
"title": "Microserfs Review"
},
{
"url": "https://slashdot.org/story/98/04/03/1117221/bloated-code-diaries",
"title": "Bloated Code Diaries"
},
{
"url": "https://news.slashdot.org/story/98/04/03/1113221/wired-sold",
"title": "Wired Sold?"
},
{
"url": "https://slashdot.org/story/98/04/02/1755249/competition-to-ipv6",
"title": "Competition to IPV6"
},
{
"url": "https://slashdot.org/story/98/04/02/1752212/sun-joins-linux-international",
"title": "Sun joins Linux International"
},
{
"url": "https://news.slashdot.org/story/98/05/21/21939/slashdot-code-updating",
"title": "Slashdot Code Updating"
},
{
"url": "https://linux.slashdot.org/story/98/05/21/21132/linux-ftp-watcher-updates",
"title": "Linux FTP Watcher Updates"
},
{
"url": "https://news.slashdot.org/story/98/05/21/292/kraftwerk-tour",
"title": "Kraftwerk Tour"
},
{
"url": "https://news.slashdot.org/story/98/05/21/222/interview-with-steve-wozniak",
"title": "Interview with Steve Wozniak"
},
{
"url": "https://news.slashdot.org/story/98/05/11/7508/a-batch-of-fun-quickees",
"title": "A Batch of Fun Quickees"
},
{
"url": "https://hardware.slashdot.org/story/98/05/11/7120/vnc-for-the-palmpilot",
"title": "VNC for the PalmPilot!"
},
{
"url": "https://linux.slashdot.org/story/98/05/11/65550/another-linux-eda-article",
"title": "Another Linux EDA article"
},
{
"url": "https://tech.slashdot.org/story/98/05/11/62113/amd-names-chip",
"title": "AMD Names Chip"
},
{
"url": "https://news.slashdot.org/story/98/05/11/45622/open-source-ala-npr",
"title": "Open Source ala NPR"
},
{
"url": "https://yro.slashdot.org/story/98/05/11/0168/techs-back-ms",
"title": "Techs back MS"
},
{
"url": "https://it.slashdot.org/story/98/05/19/549/novell-figures-the-cost-of-spam",
"title": "Novell Figures the Cost of Spam"
},
{
"url": "https://linux.slashdot.org/story/98/05/19/4237/linux-on-your-fridge",
"title": "Linux on Your Fridge"
},
{
"url": "https://slashdot.org/story/98/05/19/1848/intel-will-assist-linuxmerced",
"title": "Intel Will Assist Linux/Merced"
},
{
"url": "https://tech.slashdot.org/story/98/05/19/347/1993-the-sourceware-operating-system-proposal",
"title": "1993: The Sourceware Operating System Proposal"
},
{
"url": "https://tech.slashdot.org/story/98/05/18/5255/divx-lives",
"title": "Divx Lives"
},
{
"url": "https://slashdot.org/story/98/05/18/4516/whitehouse-to-release-new-internet-plan",
"title": "Whitehouse to release new internet plan"
},
{
"url": "https://linux.slashdot.org/story/98/04/30/195444/linux-2199",
"title": "Linux 2.1.99"
},
{
"url": "https://news.slashdot.org/story/98/04/30/191756/rob-clears-out-his-mailbox",
"title": "Rob Clears Out His Mailbox"
},
{
"url": "https://games.slashdot.org/story/98/04/30/1675/donald-p-driscoll-vs-blizzard-entertainment",
"title": "Donald P. Driscoll vs. Blizzard Entertainment"
},
{
"url": "https://linux.slashdot.org/story/98/04/30/160400/mark-tebbe-changes-his-mind",
"title": "Mark Tebbe changes his mind"
},
{
"url": "https://news.slashdot.org/story/98/04/30/16232/lego-star-wars",
"title": "Lego & Star Wars"
},
{
"url": "https://it.slashdot.org/story/98/04/30/155817/crypto-in-canada",
"title": "Crypto in Canada"
},
{
"url": "https://slashdot.org/story/98/04/30/151149/rousing-speech",
"title": "Rousing speech"
},
{
"url": "https://news.slashdot.org/story/98/04/30/123328/redux-of-the-apollo-mission",
"title": "Redux of the Apollo Mission"
},
{
"url": "https://tech.slashdot.org/story/98/04/30/111537/x11-licensing-fun",
"title": "X11 Licensing Fun"
},
{
"url": "https://news.slashdot.org/story/98/04/30/105222/corel-announcement",
"title": "Corel Announcement"
},
{
"url": "https://tech.slashdot.org/story/98/04/30/10363/new-mozilla-code-and-public-cvs-is-online",
"title": "New Mozilla Code, and Public CVS is Online!"
},
{
"url": "https://news.slashdot.org/story/98/04/30/103333/borland-name-change",
"title": "Borland Name Change"
},
{
"url": "https://tech.slashdot.org/story/98/04/30/102922/prototype-quantum-transistor",
"title": "Prototype Quantum Transistor"
},
{
"url": "https://news.slashdot.org/story/98/04/30/10035/hank-the-dwarf-is-validated",
"title": "Hank the Dwarf is Validated"
},
{
"url": "https://news.slashdot.org/story/98/04/30/02250/stupid-perl-tricks",
"title": "Stupid Perl Tricks"
},
{
"url": "https://news.slashdot.org/story/98/04/29/185329/slashdot-wins-some-awards",
"title": "Slashdot Wins Some Awards"
},
{
"url": "https://tech.slashdot.org/story/98/04/29/183618/samsung-sampling-256mb-chips",
"title": "Samsung Sampling 256MB Chips"
},
{
"url": "https://slashdot.org/story/98/04/29/1586/political-misuse-of-web",
"title": "Political Misuse of Web"
},
{
"url": "https://news.slashdot.org/story/98/04/29/14446/the-road-ahead-of-free-software",
"title": "The Road Ahead (of Free Software)"
},
{
"url": "https://slashdot.org/story/98/04/29/134648/john-dvorak-on-win98",
"title": "John Dvorak on Win98"
},
{
"url": "https://news.slashdot.org/story/98/04/29/124312/os-wars-to-cure-cystic-fibrosis",
"title": "OS Wars to cure Cystic Fibrosis"
},
{
"url": "https://news.slashdot.org/story/98/04/29/124046/porn-press-fbi",
"title": "Porn, Press, & FBI"
},
{
"url": "https://slashdot.org/story/98/04/29/123413/streaming-technology",
"title": "Streaming Technology"
},
{
"url": "https://slashdot.org/story/98/04/29/123220/compaq-and-unix",
"title": "Compaq and UNIX"
},
{
"url": "https://linux.slashdot.org/story/98/04/29/11058/plustek-plans-linuxunx-drivers-for-scanner",
"title": "PlusTek Plans Linux/UN*X drivers for Scanner"
},
{
"url": "https://it.slashdot.org/story/98/04/29/10564/rc5-effort",
"title": "RC5 Effort"
},
{
"url": "https://apple.slashdot.org/story/98/04/29/95634/apple-billboard-defaced",
"title": "Apple Billboard Defaced"
},
{
"url": "https://news.slashdot.org/story/98/04/29/9508/the-real-grass-roots-movement",
"title": "The Real Grass Roots Movement"
},
{
"url": "https://yro.slashdot.org/story/98/04/29/94858/ms-vs-everyone",
"title": "MS vs Everyone"
},
{
"url": "https://developers.slashdot.org/story/98/04/28/23132/game-programing-in-java",
"title": "Game Programing in Java"
},
{
"url": "https://linux.slashdot.org/story/98/04/28/164711/boot-mag-includes-debian-on-cd",
"title": "Boot Mag includes Debian on CD"
},
{
"url": "https://tech.slashdot.org/story/98/04/28/163829/themesorg-is-up",
"title": "Themes.org Is Up"
},
{
"url": "https://slashdot.org/story/98/04/28/155141/intel-vs-ftc",
"title": "Intel vs FTC"
},
{
"url": "https://news.slashdot.org/story/98/04/28/12173/body-transplants",
"title": "Body Transplants"
},
{
"url": "https://linux.slashdot.org/story/98/04/28/10280/linux-beta-of-faximum",
"title": "Linux Beta of Faximum"
},
{
"url": "https://news.slashdot.org/story/98/04/28/102527/code-crusader-0130",
"title": "Code Crusader 0.13.0"
},
{
"url": "https://linux.slashdot.org/story/98/04/28/102229/linux-hardware-geek-mailing-list",
"title": "Linux Hardware Geek Mailing List"
},
{
"url": "https://slashdot.org/story/98/04/28/101924/vote-for-hank",
"title": "Vote for Hank"
},
{
"url": "https://linux.slashdot.org/story/98/04/28/10810/linux-vs-nt-poll",
"title": "Linux vs. NT poll"
},
{
"url": "https://developers.slashdot.org/story/98/04/28/10038/free-java-operating-system",
"title": "Free Java Operating System"
},
{
"url": "https://slashdot.org/story/98/04/28/94733/amazon-acquires-imdb",
"title": "Amazon acquires IMDB"
},
{
"url": "https://linux.slashdot.org/story/98/04/27/202416/lotus-on-linux",
"title": "Lotus on Linux?"
},
{
"url": "https://slashdot.org/story/98/04/27/202140/caldera-ceo-on-ms",
"title": "Caldera CEO on MS"
},
{
"url": "https://news.slashdot.org/story/98/04/27/20547/south-park-deal",
"title": "South Park Deal"
},
{
"url": "https://linux.slashdot.org/story/98/04/27/152357/oracle-on-linux",
"title": "Oracle on Linux?"
},
{
"url": "https://it.slashdot.org/story/98/04/27/142120/uk-encryption-proposals",
"title": "UK Encryption Proposals"
},
{
"url": "https://slashdot.org/story/98/04/27/12837/suck-ponders-microsoft",
"title": "Suck ponders Microsoft"
},
{
"url": "https://news.slashdot.org/story/98/04/27/104717/prometheus-truecolor-source-release",
"title": "Prometheus Truecolor Source Release"
},
{
"url": "https://tech.slashdot.org/story/98/04/27/92020/kde-beta-4-user-review-feature",
"title": "KDE Beta 4 User Review (feature)"
},
{
"url": "https://linux.slashdot.org/story/98/04/27/9843/linux-based-car-mp3-player",
"title": "Linux-based Car MP3 Player"
},
{
"url": "https://tech.slashdot.org/story/98/04/27/9440/mozilla-survey",
"title": "Mozilla Survey"
},
{
"url": "https://tech.slashdot.org/story/98/04/27/9137/192-gflops-linuxalpha-beowulf-cluster",
"title": "19.2 Gflops Linux/Alpha Beowulf Cluster"
},
{
"url": "https://slashdot.org/story/98/04/27/85837/gimp-9928-out-now",
"title": "gimp .99.28 out now"
},
{
"url": "https://slashdot.org/story/98/04/26/202815/intel-xeon",
"title": "Intel Xeon"
},
{
"url": "https://linux.slashdot.org/story/98/04/26/114212/couple-of-linux-things",
"title": "Couple of Linux Things"
},
{
"url": "https://linux.slashdot.org/story/98/04/26/113144/funny-linux-cartoon",
"title": "Funny Linux Cartoon"
},
{
"url": "https://slashdot.org/story/98/04/26/11266/hacker-insurance",
"title": "Hacker Insurance"
},
{
"url": "https://tech.slashdot.org/story/98/04/26/112216/penny-sized-cd-that-holds-400gb",
"title": "Penny-sized CD that holds 400GB"
},
{
"url": "https://news.slashdot.org/story/98/04/25/204311/povrayorg-in-trouble",
"title": "Povray.org in Trouble"
},
{
"url": "https://slashdot.org/story/98/04/25/153954/tesla-weird-science-con",
"title": "Tesla Weird Science con"
},
{
"url": "https://news.slashdot.org/story/98/04/25/122020/slashdot-testing",
"title": "Slashdot Testing"
},
{
"url": "https://it.slashdot.org/story/98/04/25/114619/political-spam",
"title": "Political Spam"
},
{
"url": "https://slashdot.org/story/98/04/25/113314/attorney-generals-try-blocking-win98",
"title": "Attorney Generals Try Blocking Win98"
},
{
"url": "https://slashdot.org/story/98/04/25/11631/sun-sues-sunline-over-sun",
"title": "Sun Sues Sunline over Sun"
},
{
"url": "https://news.slashdot.org/story/98/04/24/165445/dave-winer-on-advocacy",
"title": "Dave Winer on Advocacy"
},
{
"url": "https://slashdot.org/story/98/04/24/164931/ms-attempted-coersion-of-netscape",
"title": "MS attempted Coersion of Netscape"
},
{
"url": "https://news.slashdot.org/story/98/04/24/164433/koko-visiting-chat-room",
"title": "Koko Visiting Chat Room"
},
{
"url": "https://games.slashdot.org/story/98/04/24/12022/game-emulator-news",
"title": "Game Emulator News"
},
{
"url": "https://news.slashdot.org/story/98/04/24/101828/electric-monk-and-lycos",
"title": "Electric Monk and Lycos"
},
{
"url": "https://news.slashdot.org/story/98/04/24/92221/pithy-quotes",
"title": "Pithy Quotes"
},
{
"url": "https://slashdot.org/story/98/04/24/91824/us-reminded-that-internet-is-international",
"title": "US Reminded That Internet is International"
},
{
"url": "https://tech.slashdot.org/story/98/04/24/91146/wang-sues-netscape",
"title": "Wang sues Netscape"
},
{
"url": "https://linux.slashdot.org/story/98/04/24/957/2198",
"title": "2.1.98"
},
{
"url": "https://slashdot.org/story/98/04/23/213532/ftc-orders-dec-intel-deals-motified",
"title": "FTC orders DEC-Intel deals motified"
},
{
"url": "https://linux.slashdot.org/story/98/04/23/212539/linux-penguins-and-the-montreal-biodome",
"title": "Linux, Penguins and the Montreal Biodome"
},
{
"url": "https://news.slashdot.org/story/98/04/23/202837/computer-bowl-tomorrow",
"title": "Computer Bowl Tomorrow"
},
{
"url": "https://linux.slashdot.org/story/98/04/23/144134/linux-advocacy-at-linux-gazette",
"title": "Linux Advocacy at Linux Gazette"
},
{
"url": "https://games.slashdot.org/story/98/04/23/143234/linux-ports-of-games",
"title": "Linux Ports Of Games"
},
{
"url": "https://slashdot.org/story/98/04/23/11632/followup-on-electric-monk",
"title": "Followup on Electric Monk"
},
{
"url": "https://games.slashdot.org/story/98/04/23/105955/demo-coding-on-n64",
"title": "Demo-Coding on n64"
},
{
"url": "https://slashdot.org/story/98/04/23/103348/aol-dismissed-as-defendant",
"title": "AOL dismissed as defendant"
},
{
"url": "https://slashdot.org/story/98/04/23/102517/us-pushs-for-wto-for-no-net-tax",
"title": "US pushs for WTO for no net tax"
},
{
"url": "https://news.slashdot.org/story/98/04/23/927/sco-reorganizes-management",
"title": "SCO Reorganizes Management"
},
{
"url": "https://slashdot.org/story/98/04/22/204756/redhat-scores-at-comdex",
"title": "RedHat Scores At Comdex!"
},
{
"url": "https://slashdot.org/story/98/04/22/203917/sun-reorginizing",
"title": "Sun Reorginizing"
},
{
"url": "https://tech.slashdot.org/story/98/04/22/20368/linux-lcd-display-purchases",
"title": "Linux LCD Display Purchases"
},
{
"url": "https://slashdot.org/story/98/04/22/175425/microsoft-buying-educators",
"title": "Microsoft Buying Educators?"
},
{
"url": "https://news.slashdot.org/story/98/04/22/141017/the-slashdot-source-code",
"title": "The Slashdot Source Code"
},
{
"url": "https://news.slashdot.org/story/98/04/22/132619/random-documentation-generation",
"title": "Random Documentation Generation"
},
{
"url": "https://games.slashdot.org/story/98/04/22/131657/newton-quake",
"title": "Newton Quake"
},
{
"url": "https://news.slashdot.org/story/98/04/22/115321/davenet-on-opensource",
"title": "Davenet on Opensource"
},
{
"url": "https://slashdot.org/story/98/04/22/93835/streaming-mp3-servers",
"title": "Streaming mp3 Servers"
},
{
"url": "https://linux.slashdot.org/story/98/04/22/93518/linux-and-education-editorial",
"title": "Linux and Education (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/04/22/91528/southpark-movie",
"title": "Southpark Movie?"
},
{
"url": "https://linux.slashdot.org/story/98/04/22/8713/linux-center-opens-domain",
"title": "Linux Center Opens Domain"
},
{
"url": "https://slashdot.org/story/98/04/22/8157/microsoft-moral-defense-website-and-apache",
"title": "Microsoft Moral Defense Website (and Apache)"
},
{
"url": "https://games.slashdot.org/story/98/04/22/75545/blizzard-e-mail-sniffing-continued",
"title": "Blizzard E-Mail Sniffing Continued"
},
{
"url": "https://linux.slashdot.org/story/98/04/22/75141/red-hat-51",
"title": "Red Hat 5.1?"
},
{
"url": "https://slashdot.org/story/98/04/22/74056/linux-at-comdex",
"title": "Linux at Comdex"
},
{
"url": "https://slashdot.org/story/98/04/21/19136/join-us-now-and-share-the-remix",
"title": "Join us Now and Share the Remix"
},
{
"url": "https://news.slashdot.org/story/98/04/21/184842/stump-jeff-at-zdnet",
"title": "Stump Jeff at ZDNet"
},
{
"url": "https://slashdot.org/story/98/04/21/18384/electric-monk-and-alta-vista",
"title": "Electric Monk and Alta Vista"
},
{
"url": "https://tech.slashdot.org/story/98/04/21/161051/sex-and-unix",
"title": "Sex and Unix"
},
{
"url": "https://slashdot.org/story/98/04/21/12463/pokeyorg-set-free",
"title": "Pokey.Org set free!"
},
{
"url": "https://developers.slashdot.org/story/98/04/21/113911/microsoft-and-java",
"title": "Microsoft And Java"
},
{
"url": "https://news.slashdot.org/story/98/04/21/113131/cloning-and-other-fun-topics",
"title": "Cloning and Other Fun Topics"
},
{
"url": "https://tech.slashdot.org/story/98/04/21/104648/window-managers-and-more",
"title": "Window Managers and More"
},
{
"url": "https://news.slashdot.org/story/98/04/21/103659/interview-with-larry-wall",
"title": "Interview with Larry Wall"
},
{
"url": "https://apple.slashdot.org/story/98/04/21/101115/powermac-g3300-beats-compaq-pii-400",
"title": "PowerMac G3/300 beats Compaq PII 400"
},
{
"url": "https://news.slashdot.org/story/98/04/21/73926/us-west-offers-high-speed",
"title": "US West offers high speed"
},
{
"url": "https://news.slashdot.org/story/98/04/20/202245/geek-response",
"title": "Geek Response"
},
{
"url": "https://linux.slashdot.org/story/98/04/20/201929/lcd-system-stats-for-linux",
"title": "LCD System Stats for Linux"
},
{
"url": "https://news.slashdot.org/story/98/04/20/18249/stupid-perl-scripts",
"title": "Stupid Perl Scripts"
},
{
"url": "https://slashdot.org/story/98/04/20/144640/more-comdex",
"title": "More COMDEX"
},
{
"url": "https://hardware.slashdot.org/story/98/04/20/135834/rumours-of-a-color-palmpilot",
"title": "Rumours of a Color PalmPilot!"
},
{
"url": "https://linux.slashdot.org/story/98/04/20/135415/mining-co-awards-linux-sites",
"title": "Mining Co Awards Linux Sites"
},
{
"url": "https://news.slashdot.org/story/98/04/20/133826/slashdot-ooops",
"title": "Slashdot Ooops"
},
{
"url": "https://developers.slashdot.org/story/98/04/20/11817/java-linux-activator",
"title": "Java Linux Activator"
},
{
"url": "https://slashdot.org/story/98/04/20/11731/report-from-comdex",
"title": "Report from COMDEX"
},
{
"url": "https://tech.slashdot.org/story/98/04/20/83547/netscape-bashed-in-computer-shopper",
"title": "Netscape Bashed in Computer Shopper"
},
{
"url": "https://linux.slashdot.org/story/98/04/20/81552/interesting-gartner-group-reports",
"title": "Interesting Gartner Group Reports"
},
{
"url": "https://slashdot.org/story/98/04/20/81224/submissions-call-for-gimp-10-cd",
"title": "Submissions Call For Gimp 1.0 CD"
},
{
"url": "https://slashdot.org/story/98/04/20/8946/xanadu-zigzag-and-ted-nelson",
"title": "Xanadu, ZigZag and Ted Nelson"
},
{
"url": "https://linux.slashdot.org/story/98/04/20/8044/linux-office-suites-intro",
"title": "Linux Office Suites Intro"
},
{
"url": "https://news.slashdot.org/story/98/04/19/175155/paul-reynolds-on-software",
"title": "Paul Reynolds on Software"
},
{
"url": "https://news.slashdot.org/story/98/04/19/174845/new-geek-web-site",
"title": "New Geek Web Site"
},
{
"url": "https://tech.slashdot.org/story/98/04/19/174159/kde-beta-4",
"title": "KDE Beta 4"
},
{
"url": "https://slashdot.org/story/98/04/19/13610/riaa-cracking-down-on-mp3-sites",
"title": "RIAA cracking down on MP3 sites"
},
{
"url": "https://slashdot.org/story/98/04/19/13157/nsa-hackers-find-pentagon-wide-open",
"title": "NSA Hackers find Pentagon wide open"
},
{
"url": "https://news.slashdot.org/story/98/04/19/125115/free-software-goes-corporate",
"title": "Free Software Goes Corporate"
},
{
"url": "https://slashdot.org/story/98/04/18/14117/petreley-on-ms",
"title": "Petreley On MS"
},
{
"url": "https://linux.slashdot.org/story/98/04/18/135650/penguin-mating-habits",
"title": "Penguin Mating Habits"
},
{
"url": "https://news.slashdot.org/story/98/04/18/134810/the-perfect-os",
"title": "The Perfect OS"
},
{
"url": "https://slashdot.org/story/98/04/18/134514/dns-trademark-infringement",
"title": "DNS Trademark Infringement?"
},
{
"url": "https://linux.slashdot.org/story/98/04/18/115939/linux-2197-released",
"title": "Linux 2.1.97 Released"
},
{
"url": "https://games.slashdot.org/story/98/04/17/23277/blizzard-violates-gamers-privacy",
"title": "Blizzard Violates Gamers Privacy?"
},
{
"url": "https://slashdot.org/story/98/04/17/13129/implications-of-intel-rulings",
"title": "Implications of Intel Rulings"
},
{
"url": "https://slashdot.org/story/98/04/17/13534/rms-on-licenses",
"title": "RMS on Licenses"
},
{
"url": "https://news.slashdot.org/story/98/04/17/124217/fcc-may-exempt-software-companies-from-damages",
"title": "FCC May Exempt Software Companies From Damages"
},
{
"url": "https://news.slashdot.org/story/98/04/17/121339/peep-web-page",
"title": "Peep Web Page"
},
{
"url": "https://linux.slashdot.org/story/98/04/17/9354/linux-advocacy-editorial",
"title": "Linux Advocacy (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/04/17/92152/os-survey-yahoo",
"title": "OS Survey @Yahoo"
},
{
"url": "https://slashdot.org/story/98/04/17/91530/barksdale-returns-300000-shares",
"title": "Barksdale returns 300,000 shares"
},
{
"url": "https://news.slashdot.org/story/98/04/17/91338/seti-at-home",
"title": "SETI at home"
},
{
"url": "https://news.slashdot.org/story/98/04/17/9856/postgres-php-and-redhat-tutorial",
"title": "Postgres PHP and RedHat Tutorial"
},
{
"url": "https://slashdot.org/story/98/04/17/9434/solaris-wins-award",
"title": "Solaris Wins Award"
},
{
"url": "https://linux.slashdot.org/story/98/04/17/8597/linus-30",
"title": "Linus 3.0"
},
{
"url": "https://slashdot.org/story/98/04/17/85713/gnome-logo-voting-starts",
"title": "GNOME Logo Voting Starts"
},
{
"url": "https://slashdot.org/story/98/04/16/201930/microsoft-abandons-ceti",
"title": "Microsoft Abandons CETI"
},
{
"url": "https://it.slashdot.org/story/98/04/16/19954/encryption-and-clinton-administration",
"title": "Encryption and Clinton Administration"
},
{
"url": "https://news.slashdot.org/story/98/04/16/19658/summer-con-announcement",
"title": "Summer Con announcement"
},
{
"url": "https://linux.slashdot.org/story/98/04/16/19454/peter-coffee-editorial",
"title": "Peter Coffee Editorial"
},
{
"url": "https://it.slashdot.org/story/98/04/16/19231/ip-frag-exploit-in-linux-kernel",
"title": "IP Frag Exploit in Linux Kernel"
},
{
"url": "https://news.slashdot.org/story/98/04/16/135253/netscape-will-cause-the-death-of-web-standards",
"title": "Netscape Will Cause the Death of Web Standards"
},
{
"url": "https://news.slashdot.org/story/98/04/16/114123/future-of-sgi",
"title": "Future of SGI"
},
{
"url": "https://it.slashdot.org/story/98/04/16/111925/bind-security-problem",
"title": "Bind security problem"
},
{
"url": "https://games.slashdot.org/story/98/04/16/11727/xmame-project-needs-developers",
"title": "Xmame Project Needs Developers."
},
{
"url": "https://tech.slashdot.org/story/98/04/16/11218/raptor-project",
"title": "Raptor Project"
},
{
"url": "https://hardware.slashdot.org/story/98/04/16/105546/palmpilot-8mb-upgrage",
"title": "PalmPilot 8MB upgrage"
},
{
"url": "https://tech.slashdot.org/story/98/04/15/23344/unix-in-2002",
"title": "Unix in 2002"
},
{
"url": "https://news.slashdot.org/story/98/04/15/172210/assorted-tidbits",
"title": "Assorted Tidbits"
},
{
"url": "https://slashdot.org/story/98/04/15/154140/reports-from-www7",
"title": "Reports from WWW7"
},
{
"url": "https://news.slashdot.org/story/98/04/15/153822/new-gov-estimates-about-it",
"title": "New Gov. estimates about IT"
},
{
"url": "https://slashdot.org/story/98/04/15/145946/intel-cuts-3000-jobs",
"title": "Intel cuts 3000 jobs"
},
{
"url": "https://slashdot.org/story/98/04/15/145812/be-and-lilo",
"title": "Be and LILO"
},
{
"url": "https://news.slashdot.org/story/98/04/15/144833/rob-whines-and-complains",
"title": "Rob Whines and Complains"
},
{
"url": "https://tech.slashdot.org/story/98/04/15/14423/the-future-of-the-x86-market-feature",
"title": "The Future of the x86 Market (Feature)"
},
{
"url": "https://news.slashdot.org/story/98/04/15/143043/scitech-mgl-opening-source",
"title": "SciTech MGL Opening Source"
},
{
"url": "https://slashdot.org/story/98/04/15/12437/netstatnet-faces-trouble",
"title": "Netstat.net Faces Trouble"
},
{
"url": "https://news.slashdot.org/story/98/04/15/12346/download-corrupts-modems",
"title": "Download Corrupts Modems"
},
{
"url": "https://it.slashdot.org/story/98/04/15/102739/nsa-details-key-recovery-risks",
"title": "NSA Details Key-Recovery Risks"
},
{
"url": "https://it.slashdot.org/story/98/04/15/84019/maryland-bans-spam",
"title": "Maryland Bans Spam"
},
{
"url": "https://tech.slashdot.org/story/98/04/15/83722/xml-parser-for-mozilla",
"title": "XML Parser for Mozilla"
},
{
"url": "https://news.slashdot.org/story/98/04/15/83156/blender-beta-today",
"title": "Blender Beta Today"
},
{
"url": "https://linux.slashdot.org/story/98/04/14/214939/review-of-redhat-50-at-www32bitsonlinecom",
"title": "Review of Redhat 5.0 at www.32bitsonline.com"
},
{
"url": "https://news.slashdot.org/story/98/04/14/213641/jared-diamond-wins-pulitzer-prize",
"title": "Jared Diamond Wins Pulitzer Prize"
},
{
"url": "https://news.slashdot.org/story/98/04/14/213110/school-pays-30k-in-web-page-lawsuit",
"title": "School Pays $30k in Web Page Lawsuit"
},
{
"url": "https://tech.slashdot.org/story/98/04/14/211458/andressen-speaks",
"title": "Andressen Speaks"
},
{
"url": "https://linux.slashdot.org/story/98/04/14/183143/linux-2196-released",
"title": "Linux 2.1.96 Released"
},
{
"url": "https://tech.slashdot.org/story/98/04/14/144636/cyrix-announces-mii",
"title": "Cyrix Announces MII"
},
{
"url": "https://slashdot.org/story/98/04/14/134638/gte-network-services-to-offer-adsl-service",
"title": "GTE Network Services to offer ADSL service"
},
{
"url": "https://news.slashdot.org/story/98/04/14/13335/macromedia-publishes-flash-spec",
"title": "Macromedia Publishes Flash Spec"
},
{
"url": "https://tech.slashdot.org/story/98/04/14/13634/mozillafree-software-editorial-at-pcweek",
"title": "Mozilla/Free Software editorial at PCWeek"
},
{
"url": "https://news.slashdot.org/story/98/04/14/13427/measuring-the-impact-of-free-software",
"title": "Measuring the Impact of Free Software"
},
{
"url": "https://tech.slashdot.org/story/98/04/14/123846/the-new-unix",
"title": "The New Unix"
},
{
"url": "https://developers.slashdot.org/story/98/04/14/122754/javasoft-restructuring",
"title": "JavaSoft Restructuring"
},
{
"url": "https://slashdot.org/story/98/04/14/114850/gore-unveiling-internet2",
"title": "Gore unveiling Internet2"
},
{
"url": "https://news.slashdot.org/story/98/04/14/11433/interesting-aberdeen-papers",
"title": "Interesting Aberdeen Papers"
},
{
"url": "https://news.slashdot.org/story/98/04/14/112942/slashdot-notes",
"title": "Slashdot Notes"
},
{
"url": "https://slashdot.org/story/98/04/14/11150/apache-wins-product-of-the-year",
"title": "Apache Wins Product of the year!"
},
{
"url": "https://slashdot.org/story/98/04/14/105452/adobe-proposes-inline-image-format",
"title": "Adobe Proposes Inline Image Format"
},
{
"url": "https://slashdot.org/story/98/04/14/91052/dvorak-on-ms",
"title": "Dvorak on MS"
},
{
"url": "https://slashdot.org/story/98/04/14/972/gtk-10-officially-released",
"title": "GTK+ 1.0 Officially Released"
},
{
"url": "https://slashdot.org/story/98/04/13/154426/court-rules-against-intel",
"title": "Court rules against Intel"
},
{
"url": "https://linux.slashdot.org/story/98/04/13/151140/linux-humor-site",
"title": "Linux Humor Site"
},
{
"url": "https://tech.slashdot.org/story/98/04/13/151355/mozilla-news",
"title": "Mozilla News"
},
{
"url": "https://news.slashdot.org/story/98/04/13/15728/gsm-phones-hacked",
"title": "GSM phones hacked"
},
{
"url": "https://features.slashdot.org/story/98/04/13/124719/inevitable-microsoft-decline-editorial",
"title": "Inevitable Microsoft Decline (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/04/13/123748/re-emergence-of-unix-threatens-nt",
"title": "Re-Emergence of Unix threatens NT"
},
{
"url": "https://slashdot.org/story/98/04/13/101647/anonymous-industry-proposal-on-ms",
"title": "Anonymous Industry Proposal on MS"
},
{
"url": "https://linux.slashdot.org/story/98/04/13/9929/linux-in-india",
"title": "Linux in India"
},
{
"url": "https://games.slashdot.org/story/98/04/13/9534/crack-releases-satan-paint-source",
"title": "Crack Releases Satan Paint Source"
},
{
"url": "https://hardware.slashdot.org/story/98/04/13/925/npr-on-the-pilot",
"title": "NPR On the Pilot"
},
{
"url": "https://yro.slashdot.org/story/98/04/12/232732/more-trouble-for-microsoft",
"title": "More trouble for Microsoft"
},
{
"url": "https://slashdot.org/story/98/04/12/16277/anonymous-web-publishing-rewebbers",
"title": "Anonymous web publishing: Rewebbers"
},
{
"url": "https://slashdot.org/story/98/04/12/104116/primitive-volcanic-gods-choose-beos",
"title": "Primitive Volcanic Gods Choose BeOS"
},
{
"url": "https://developers.slashdot.org/story/98/04/12/103634/free-java-implentations",
"title": "Free Java implentations."
},
{
"url": "https://tech.slashdot.org/story/98/04/12/94127/purchase-of-firefly-hurts-netscape",
"title": "Purchase of Firefly hurts Netscape"
},
{
"url": "https://slashdot.org/story/98/04/11/12133/gimp-09925-and-26-released",
"title": "GIMP 0.99.25 and 26 Released."
},
{
"url": "https://news.slashdot.org/story/98/04/11/12758/interface-concepts",
"title": "Interface Concepts"
},
{
"url": "https://linux.slashdot.org/story/98/04/11/114459/linux-and-the-usps",
"title": "Linux and the USPS"
},
{
"url": "https://news.slashdot.org/story/98/04/10/22116/homesteading",
"title": "Homesteading"
},
{
"url": "https://slashdot.org/story/98/04/10/20130/yahoo-a-profit-many-hits",
"title": "Yahoo: A Profit & Many Hits"
},
{
"url": "https://slashdot.org/story/98/04/10/195622/gtk-100-in-cvs",
"title": "GTK+ 1.0.0 in CVS!"
},
{
"url": "https://slashdot.org/story/98/04/10/174240/amd-gains-rights-to-slot-1",
"title": "AMD gains rights to Slot 1"
},
{
"url": "https://linux.slashdot.org/story/98/04/10/151036/2195-hits-the-net",
"title": "2.1.95 Hits The net"
},
{
"url": "https://news.slashdot.org/story/98/04/10/125328/stupid-perl-tricks",
"title": "Stupid Perl Tricks"
},
{
"url": "https://slashdot.org/story/98/04/10/123913/microsoft-uses-monopoly-power-again",
"title": "Microsoft uses monopoly power again"
},
{
"url": "https://slashdot.org/story/98/04/10/121924/microsoft-pr",
"title": "Microsoft PR"
},
{
"url": "https://news.slashdot.org/story/98/04/10/12168/open-source-makes-sense-editorial",
"title": "Open Source Makes Sense (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/04/10/121058/i-cringely-on-netscapelinux",
"title": "I, Cringely on Netscape/Linux"
},
{
"url": "https://linux.slashdot.org/story/98/04/10/103426/npr-linux-forum",
"title": "NPR Linux Forum"
},
{
"url": "https://tech.slashdot.org/story/98/04/10/10727/netscape-stocks-rise",
"title": "Netscape Stocks Rise"
},
{
"url": "https://news.slashdot.org/story/98/04/10/10520/hackers-vs-crackers",
"title": "Hackers vs. Crackers"
},
{
"url": "https://linux.slashdot.org/story/98/04/92/2218/interview-with-linus",
"title": "Interview with Linus"
},
{
"url": "https://developers.slashdot.org/story/98/04/91/72931/hp-backs-down-from-java-fragmentation",
"title": "HP backs down from Java fragmentation"
},
{
"url": "https://tech.slashdot.org/story/98/04/91/71612/mips-dies",
"title": "MIPS dies"
},
{
"url": "https://hardware.slashdot.org/story/98/04/91/62857/3com-and-microsoft-settle-palm",
"title": "3Com and Microsoft Settle Palm"
},
{
"url": "https://slashdot.org/story/98/04/91/62457/new-intel-chips",
"title": "New Intel Chips"
},
{
"url": "https://it.slashdot.org/story/98/04/91/51529/spam-king-renounces-throne",
"title": "Spam King renounces throne"
},
{
"url": "https://it.slashdot.org/story/98/04/91/1548/crypto-story-at-usatoday",
"title": "Crypto Story at USAToday"
},
{
"url": "https://news.slashdot.org/story/98/04/91/05527/larry-wall-interview",
"title": "Larry Wall Interview"
},
{
"url": "https://slashdot.org/story/98/04/91/03838/linux-vs-nt-at-caldera",
"title": "Linux vs. NT at Caldera."
},
{
"url": "https://news.slashdot.org/story/98/04/91/03351/slashdot-notes",
"title": "Slashdot Notes"
},
{
"url": "https://slashdot.org/story/98/04/91/01351/domain-name-fees-illegal",
"title": "Domain Name Fees Illegal"
},
{
"url": "https://tech.slashdot.org/story/98/04/91/0835/new-mozilla-source",
"title": "New Mozilla Source"
},
{
"url": "https://developers.slashdot.org/story/98/04/99/5411/lantimes-and-windows-only-java",
"title": "LANTimes and Windows-Only Java"
},
{
"url": "https://linux.slashdot.org/story/98/04/82/25213/linux-2194-released",
"title": "Linux 2.1.94 Released"
},
{
"url": "https://news.slashdot.org/story/98/04/81/6258/babylon-5-to-be-followed-by-crusade",
"title": "Babylon 5 to be followed by Crusade"
},
{
"url": "https://news.slashdot.org/story/98/04/81/52811/linux-on-npr",
"title": "Linux on NPR"
},
{
"url": "https://apple.slashdot.org/story/98/04/81/51948/macos-rumours",
"title": "MacOS rumours"
},
{
"url": "https://tech.slashdot.org/story/98/04/81/51255/the-kde-free-qt-foundation",
"title": "The KDE Free Qt Foundation"
},
{
"url": "https://slashdot.org/story/98/04/81/5018/free-software-providers-align-goals",
"title": "Free Software providers align goals"
},
{
"url": "https://tech.slashdot.org/story/98/04/81/42410/xfree-responds",
"title": "XFree Responds"
},
{
"url": "https://tech.slashdot.org/story/98/04/81/24627/the-x-situation-editorial",
"title": "The X Situation (editorial)"
},
{
"url": "https://developers.slashdot.org/story/98/04/81/22853/new-kaffe-released",
"title": "New Kaffe Released"
},
{
"url": "https://slashdot.org/story/98/04/81/2245/is-sun-on-the-decline",
"title": "Is Sun on the Decline?"
},
{
"url": "https://slashdot.org/story/98/04/81/21438/mathml-official",
"title": "MathML Official"
},
{
"url": "https://tech.slashdot.org/story/98/04/81/2716/run-linux-under-windows",
"title": "Run Linux Under Windows"
},
{
"url": "https://slashdot.org/story/98/04/89/166/new-gtk-and-gimp",
"title": "New GTK and Gimp"
},
{
"url": "https://slashdot.org/story/98/04/80/228/3d-software",
"title": "3d software"
},
{
"url": "https://slashdot.org/story/98/04/71/9464/k6-300",
"title": "K6 300"
},
{
"url": "https://news.slashdot.org/story/98/04/71/74011/college-dropouts-computer-industry",
"title": "College Dropouts & Computer Industry"
},
{
"url": "https://tech.slashdot.org/story/98/04/71/73730/netscape-embraces-linux",
"title": "Netscape Embraces Linux"
},
{
"url": "https://it.slashdot.org/story/98/04/71/72720/new-encyrption-product",
"title": "New encyrption product"
},
{
"url": "https://slashdot.org/story/98/04/71/72014/government-programmer-draft",
"title": "Government Programmer Draft"
},
{
"url": "https://tech.slashdot.org/story/98/04/71/62516/quantum-computing",
"title": "Quantum Computing"
},
{
"url": "https://slashdot.org/story/98/04/71/62242/more-windows-complaints",
"title": "More Windows Complaints"
},
{
"url": "https://slashdot.org/story/98/04/71/11136/merced-successor",
"title": "Merced Successor"
},
{
"url": "https://news.slashdot.org/story/98/04/71/151/driven-feature",
"title": "Driven (feature)"
},
{
"url": "https://tech.slashdot.org/story/98/04/71/05840/the-skinny-on-netscape",
"title": "The Skinny on Netscape"
},
{
"url": "https://news.slashdot.org/story/98/04/71/03053/more-media-interest-in-linux",
"title": "More media interest in Linux"
},
{
"url": "https://tech.slashdot.org/story/98/04/71/02915/mozilla-info",
"title": "Mozilla Info"
},
{
"url": "https://slashdot.org/story/98/04/71/0813/satellite-internet-and-linux",
"title": "Satellite Internet and Linux"
},
{
"url": "https://it.slashdot.org/story/98/04/71/2918/democrats-for-cryptography",
"title": "Democrats for Cryptography"
},
{
"url": "https://tech.slashdot.org/story/98/04/71/1754/qtscape-release",
"title": "QtScape Release"
},
{
"url": "https://linux.slashdot.org/story/98/04/62/24030/linux-2193",
"title": "Linux 2.1.93"
},
{
"url": "https://slashdot.org/story/98/04/62/11340/the-personal-supercomputer",
"title": "The Personal Supercomputer"
},
{
"url": "https://hardware.slashdot.org/story/98/04/62/1632/microsoft-drops-palmpc",
"title": "Microsoft Drops PalmPC"
},
{
"url": "https://tech.slashdot.org/story/98/04/61/45243/netscape-source-let-down",
"title": "Netscape Source let-down?"
},
{
"url": "https://tech.slashdot.org/story/98/04/61/31253/sgs-thomson-to-clone-slot-1",
"title": "SGS-Thomson to clone Slot 1"
},
{
"url": "https://it.slashdot.org/story/98/04/61/22547/meganet-encryption",
"title": "Meganet Encryption"
},
{
"url": "https://slashdot.org/story/98/04/61/2193/nessus-security-tool",
"title": "Nessus Security Tool"
},
{
"url": "https://yro.slashdot.org/story/98/04/61/21449/new-ms-case",
"title": "New MS Case?"
},
{
"url": "https://tech.slashdot.org/story/98/04/61/0528/atx-strongarm-system",
"title": "ATX StrongARM System"
},
{
"url": "https://news.slashdot.org/story/98/04/61/0507/x86-cpu-price-drop",
"title": "x86 CPU Price Drop?"
},
{
"url": "https://news.slashdot.org/story/98/04/68/2843/berst-on-nt-ms-and-linux",
"title": "Berst on NT, MS and Linux"
},
{
"url": "https://tech.slashdot.org/story/98/04/68/2118/pc-on-a-chip",
"title": "PC on a Chip"
},
{
"url": "https://news.slashdot.org/story/98/04/51/52618/free-and-commercial-software-feature",
"title": "Free and Commercial Software (feature)"
},
{
"url": "https://slashdot.org/story/98/04/51/41743/fcc-and-net-long-distance",
"title": "FCC and Net Long Distance"
},
{
"url": "https://tech.slashdot.org/story/98/04/51/22024/the-future-of-computing",
"title": "The Future of Computing"
},
{
"url": "https://tech.slashdot.org/story/98/04/51/2332/merced-8086-or-i432",
"title": "Merced: 8086 or i432?"
},
{
"url": "https://slashdot.org/story/98/04/42/23550/daily-gnome-gimp-and-gtk-rpms-out-of-cvs",
"title": "Daily GNOME, GIMP and Gtk RPMS out of CVS"
},
{
"url": "https://apple.slashdot.org/story/98/04/42/22131/qt3-licensing-woes",
"title": "QT3 Licensing Woes"
},
{
"url": "https://news.slashdot.org/story/98/04/41/54036/some-slashdot-notes",
"title": "Some Slashdot Notes"
},
{
"url": "https://news.slashdot.org/story/98/04/41/35559/lost-in-space-review",
"title": "Lost In Space (review)"
},
{
"url": "https://tech.slashdot.org/story/98/04/41/33651/anti-divx",
"title": "Anti DIVX"
},
{
"url": "https://news.slashdot.org/story/98/04/41/3296/hp-renews-commitment-unix",
"title": "HP renews commitment UNIX"
},
{
"url": "https://games.slashdot.org/story/98/04/41/3108/quake-2-tetris",
"title": "Quake 2 Tetris"
},
{
"url": "https://linux.slashdot.org/story/98/04/40/2413/linux-in-electronic-design-automation",
"title": "Linux in Electronic Design Automation"
},
{
"url": "https://tech.slashdot.org/story/98/04/31/65511/idt-redesigns-c6-chip",
"title": "IDT redesigns C6 chip"
},
{
"url": "https://it.slashdot.org/story/98/04/31/64343/spamnet-coming-soon",
"title": "SPAMnet Coming Soon"
},
{
"url": "https://slashdot.org/story/98/04/31/64210/emailing-elected-officials",
"title": "Emailing Elected Officials"
},
{
"url": "https://news.slashdot.org/story/98/04/31/552/web-now-320-million-pages",
"title": "Web now 320 million pages"
},
{
"url": "https://linux.slashdot.org/story/98/04/31/45436/linux-vs-windows",
"title": "Linux vs. Windows"
},
{
"url": "https://linux.slashdot.org/story/98/04/22/3489/marc-andreessen-on-linux",
"title": "Marc Andreessen On Linux"
},
{
"url": "https://slashdot.org/story/98/04/21/71454/freshmeat-needs-a-new-home",
"title": "Freshmeat Needs a New Home"
},
{
"url": "https://linux.slashdot.org/story/98/04/21/64150/cool-linux-articles",
"title": "Cool Linux Articles"
},
{
"url": "https://news.slashdot.org/story/98/04/21/63531/freeware-summit",
"title": "Freeware Summit"
},
{
"url": "https://developers.slashdot.org/story/98/04/21/62857/javaone-highlights",
"title": "JavaOne Highlights"
},
{
"url": "https://it.slashdot.org/story/98/04/21/61818/usenet-spam-cancel-moratorium",
"title": "Usenet Spam Cancel Moratorium"
},
{
"url": "https://linux.slashdot.org/story/98/04/21/6752/linux-helping-dallas-schools",
"title": "Linux Helping Dallas Schools"
},
{
"url": "https://slashdot.org/story/98/04/21/14552/apache-still-growing",
"title": "Apache Still Growing"
},
{
"url": "https://tech.slashdot.org/story/98/04/21/1314/communicator-405-released",
"title": "Communicator 4.05 released"
},
{
"url": "https://linux.slashdot.org/story/98/04/21/05859/should-you-try-a-devel-kernel-editorial",
"title": "Should You Try a Devel Kernel? (editorial)"
},
{
"url": "https://tech.slashdot.org/story/98/04/29/2526/encrypted-mozilla",
"title": "Encrypted Mozilla"
},
{
"url": "https://news.slashdot.org/story/98/04/28/331/nsf-budget-wars",
"title": "NSF Budget Wars"
},
{
"url": "https://linux.slashdot.org/story/98/04/12/11441/linux-2192-released",
"title": "Linux 2.1.92 Released"
},
{
"url": "https://it.slashdot.org/story/98/04/11/6230/california-moves-towards-spam-ban",
"title": "California Moves Towards Spam Ban"
},
{
"url": "https://news.slashdot.org/story/98/04/11/606/marc-andreessen-at-svlug",
"title": "Marc Andreessen at SVLUG"
},
{
"url": "https://developers.slashdot.org/story/98/04/11/34628/sun-ibm-working-on-javaos-for-business",
"title": "Sun, IBM working on JavaOS for Business"
},
{
"url": "https://news.slashdot.org/story/98/04/11/2030/free-software-news",
"title": "Free Software News"
},
{
"url": "https://tech.slashdot.org/story/98/04/11/03338/netscape-bigwigs-on-source-release",
"title": "Netscape Bigwigs On Source Release"
},
{
"url": "https://tech.slashdot.org/story/98/04/11/0302/electronic-stamps",
"title": "Electronic Stamps"
},
{
"url": "https://tech.slashdot.org/story/98/04/11/02444/x11-64-no-longer-free-but-xf86-is",
"title": "X11 6.4 No Longer Free (But XF86 is)"
},
{
"url": "https://news.slashdot.org/story/98/04/19/5658/slashdot-template-updates",
"title": "Slashdot Template Updates"
},
{
"url": "https://news.slashdot.org/story/98/04/19/2526/tidal-wave",
"title": "Tidal Wave!"
},
{
"url": "https://linux.slashdot.org/story/98/03/31/21417/april-linux-gazette-up",
"title": "April Linux Gazette Up"
},
{
"url": "https://apple.slashdot.org/story/98/03/31/2141/g3-for-1499us",
"title": "G3 for 1499$US"
},
{
"url": "https://tech.slashdot.org/story/98/03/31/18541/necessary-hardware",
"title": "Necessary Hardware(?)"
},
{
"url": "https://tech.slashdot.org/story/98/03/31/171928/use-netscape-mirrors-people",
"title": "Use Netscape Mirrors People!"
},
{
"url": "https://slashdot.org/story/98/03/31/124036/the-end-of-microsoft-as-we-know-it",
"title": "The End of Microsoft As We Know It?"
},
{
"url": "https://tech.slashdot.org/story/98/03/31/12357/java-decoder-ring",
"title": "Java Decoder Ring"
},
{
"url": "https://tech.slashdot.org/story/98/03/31/11728/mozilla-source-code-released",
"title": "Mozilla Source Code Released."
},
{
"url": "https://slashdot.org/story/98/03/31/105530/indiana-commits-to-ms",
"title": "Indiana commits to MS"
},
{
"url": "https://news.slashdot.org/story/98/03/31/04545/slashhot-java-liason-released",
"title": "SlashHOT! Java Liason Released"
},
{
"url": "https://news.slashdot.org/story/98/03/31/03122/mitnick-denied-computers",
"title": "Mitnick Denied Computers"
},
{
"url": "https://apple.slashdot.org/story/98/03/30/153237/no-deadline-for-jobs",
"title": "No deadline for Jobs"
},
{
"url": "https://tech.slashdot.org/story/98/03/30/152843/microsoft-takes-control",
"title": "Microsoft takes control"
},
{
"url": "https://it.slashdot.org/story/98/03/30/145536/spammers-hurt",
"title": "Spammers hurt"
},
{
"url": "https://slashdot.org/story/98/03/30/14541/linux-in-an-os2-dos-box",
"title": "Linux in an OS/2 DOS box!"
},
{
"url": "https://slashdot.org/story/98/03/30/14414/why-windows-is-easy-for-kids-to-learn",
"title": "Why Windows is easy for kids to learn"
},
{
"url": "https://tech.slashdot.org/story/98/03/30/121120/plastic-transistors",
"title": "Plastic Transistors"
},
{
"url": "https://news.slashdot.org/story/98/03/30/10133/several-slashdot-notes",
"title": "Several Slashdot Notes"
},
{
"url": "https://linux.slashdot.org/story/98/03/30/9502/linux--comdexr",
"title": "Linux @ Comdex(R)"
},
{
"url": "https://news.slashdot.org/story/98/03/30/94226/3d-interfaces",
"title": "3D Interfaces"
},
{
"url": "https://news.slashdot.org/story/98/03/30/93759/simpsons-actors-demand-raises",
"title": "Simpsons Actors Demand Raises"
},
{
"url": "https://it.slashdot.org/story/98/03/30/92615/fbi-battles-for-encryption",
"title": "FBI Battles For Encryption"
},
{
"url": "https://news.slashdot.org/story/98/03/29/192339/adobe-profits-down",
"title": "Adobe Profits Down"
},
{
"url": "https://tech.slashdot.org/story/98/03/29/16554/eplus-dr10-released",
"title": "ePlus DR10 Released"
},
{
"url": "https://tech.slashdot.org/story/98/03/29/153844/mozilla-documentation-released",
"title": "Mozilla Documentation Released"
},
{
"url": "https://linux.slashdot.org/story/98/03/29/101843/linux-at-the-economist",
"title": "Linux at the Economist"
},
{
"url": "https://slashdot.org/story/98/03/28/151124/taxation-and-the-net",
"title": "Taxation and the Net"
},
{
"url": "https://news.slashdot.org/story/98/03/28/1450/welcome-to-the-new-slashdot",
"title": "Welcome to the New Slashdot"
},
{
"url": "https://slashdot.org/story/98/03/27/180300/ti-has-good-idea",
"title": "TI has good idea"
},
{
"url": "https://linux.slashdot.org/story/98/03/27/112500/linux-at-uniforum-nz",
"title": "Linux at UniForum NZ"
},
{
"url": "https://slashdot.org/story/98/03/27/112300/iis-success-stories",
"title": "IIS Success Stories"
},
{
"url": "https://tech.slashdot.org/story/98/03/27/111800/more-views-on-the-npl",
"title": "More Views on the NPL"
},
{
"url": "https://slashdot.org/story/98/03/27/105800/intel-might-sue-apple-over-ads",
"title": "Intel Might Sue Apple over Ads"
},
{
"url": "https://linux.slashdot.org/story/98/03/27/105400/alan-cox-joins-redhat",
"title": "Alan Cox Joins RedHat"
},
{
"url": "https://slashdot.org/story/98/03/27/105100/yet-another-gimp",
"title": "Yet Another Gimp"
},
{
"url": "https://tech.slashdot.org/story/98/03/26/233600/mozillaorg-party",
"title": "Mozilla.org Party"
},
{
"url": "https://linux.slashdot.org/story/98/03/26/212800/linux-in-the-press",
"title": "Linux in the Press"
},
{
"url": "https://linux.slashdot.org/story/98/03/26/204500/two-dot-one-dot-ninety-one",
"title": "Two dot one dot Ninety One"
},
{
"url": "https://slashdot.org/story/98/03/26/195800/digital-caught-mis-informing-again",
"title": "Digital caught mis-informing AGAIN"
},
{
"url": "https://news.slashdot.org/story/98/03/26/165300/corel-loses-money",
"title": "Corel Loses Money"
},
{
"url": "https://it.slashdot.org/story/98/03/26/164900/washington-passes-antispam-bill",
"title": "Washington Passes AntiSpam Bill"
},
{
"url": "https://slashdot.org/story/98/03/26/122700/javaos-by-sun",
"title": "JavaOS by Sun"
},
{
"url": "https://news.slashdot.org/story/98/03/26/120800/stupid-html-tricks",
"title": "Stupid HTML Tricks"
},
{
"url": "https://news.slashdot.org/story/98/03/26/114500/should-corporations-stay-off-the-net",
"title": "Should Corporations Stay off the Net?"
},
{
"url": "https://tech.slashdot.org/story/98/03/26/114100/rms-and-the-npl",
"title": "RMS and the NPL"
},
{
"url": "https://news.slashdot.org/story/98/03/26/113700/cebit-report",
"title": "CeBIT Report"
},
{
"url": "https://slashdot.org/story/98/03/26/112900/new-intel-ceo",
"title": "New Intel CEO"
},
{
"url": "https://games.slashdot.org/story/98/03/26/014900/3d-gaming-on-linux",
"title": "3D Gaming On Linux"
},
{
"url": "https://tech.slashdot.org/story/98/03/26/014300/x2-crushes-k56flex",
"title": "X2 Crushes K56Flex"
},
{
"url": "https://slashdot.org/story/98/03/26/014100/digital-and-alpha",
"title": "Digital and Alpha"
},
{
"url": "https://slashdot.org/story/98/03/25/173300/x86-losing-set-top-battle",
"title": "x86 losing set-top battle"
},
{
"url": "https://news.slashdot.org/story/98/03/25/152700/tidal-wave-of-articles",
"title": "Tidal Wave of Articles"
},
{
"url": "https://news.slashdot.org/story/98/03/25/111400/iomega-ceo-resigns",
"title": "Iomega CEO resigns"
},
{
"url": "https://bsd.slashdot.org/story/98/03/25/110500/freebsd-226-released",
"title": "FreeBSD 2.2.6 Released"
},
{
"url": "https://features.slashdot.org/story/98/03/25/110300/microsoft-and-the-rest-of-us-editorial",
"title": "Microsoft and the Rest of Us (editorial)"
},
{
"url": "https://linux.slashdot.org/story/98/03/25/105900/ggi-moving-to-bsd",
"title": "GGI Moving To BSD?"
},
{
"url": "https://slashdot.org/story/98/03/25/105500/intel-math-lib-for-linux",
"title": "Intel Math Lib for Linux"
},
{
"url": "https://linux.slashdot.org/story/98/03/25/105300/norton-writes-linux-book",
"title": "Norton Writes Linux Book"
},
{
"url": "https://slashdot.org/story/98/03/25/104900/freshmeat",
"title": "Freshmeat"
},
{
"url": "https://news.slashdot.org/story/98/03/25/104700/slashdot-downtime",
"title": "Slashdot Downtime"
},
{
"url": "https://slashdot.org/story/98/03/24/210300/bad-microsoft-no-logo",
"title": "Bad Microsoft! No Logo!"
},
{
"url": "https://developers.slashdot.org/story/98/03/24/191500/quicktime-for-java",
"title": "Quicktime for Java"
},
{
"url": "https://tech.slashdot.org/story/98/03/24/154100/hackers-and-money",
"title": "Hackers and Money"
},
{
"url": "https://tech.slashdot.org/story/98/03/24/105000/mpeg-cameras",
"title": "MPEG Cameras"
},
{
"url": "https://tech.slashdot.org/story/98/03/24/104600/airship-based-phone",
"title": "Airship based Phone?"
},
{
"url": "https://linux.slashdot.org/story/98/03/24/103300/dan-schafer-on-linux",
"title": "Dan Schafer on Linux"
},
{
"url": "https://tech.slashdot.org/story/98/03/24/102200/coders-compile-mozilla",
"title": "Coders Compile Mozilla"
},
{
"url": "https://linux.slashdot.org/story/98/03/24/004400/titanic-and-linux-take-home-oscar",
"title": "Titanic (And Linux) Take Home Oscar"
},
{
"url": "https://slashdot.org/story/98/03/23/172700/eu-oks-digital-compaq",
"title": "EU oks Digital-Compaq"
},
{
"url": "https://news.slashdot.org/story/98/03/23/130400/is-there-a-tech-labor-shortage",
"title": "Is There a Tech Labor Shortage?"
},
{
"url": "https://developers.slashdot.org/story/98/03/23/121000/java-news",
"title": "Java News"
},
{
"url": "https://apple.slashdot.org/story/98/03/23/114700/should-i-stay-or-should-i-go",
"title": "Should I stay or should I go?"
},
{
"url": "https://tech.slashdot.org/story/98/03/23/114100/tcp-optimizations-for-satellites",
"title": "TCP Optimizations For Satellites"
},
{
"url": "https://slashdot.org/story/98/03/23/095701/unix-financial-package",
"title": "Unix Financial Package"
},
{
"url": "https://news.slashdot.org/story/98/03/23/095700/online-poll",
"title": "Online Poll"
},
{
"url": "https://it.slashdot.org/story/98/03/23/095300/chaffing-and-winnowing",
"title": "Chaffing and Winnowing"
},
{
"url": "https://apple.slashdot.org/story/98/03/23/094900/carmack-on-rhapsody",
"title": "Carmack on Rhapsody"
},
{
"url": "https://linux.slashdot.org/story/98/03/22/133700/redhat-earns-another-award",
"title": "RedHat Earns Another Award"
},
{
"url": "https://slashdot.org/story/98/03/22/112600/pokeyorg-attacked-by-prema",
"title": "Pokey.org Attacked by Prema"
},
{
"url": "https://developers.slashdot.org/story/98/03/22/111400/gpld-jvm",
"title": "GPLd JVM?"
},
{
"url": "https://tech.slashdot.org/story/98/03/22/111000/quantum-computers",
"title": "Quantum Computers"
},
{
"url": "https://slashdot.org/story/98/03/22/110700/kashpureff-pleads-guilty",
"title": "Kashpureff Pleads Guilty"
},
{
"url": "https://tech.slashdot.org/story/98/03/20/150800/700-mhz-pii",
"title": "700 mhz PII"
},
{
"url": "https://slashdot.org/story/98/03/20/144800/intel-cuts-p2-price",
"title": "Intel Cuts P2 Price"
},
{
"url": "https://it.slashdot.org/story/98/03/20/133800/pgp-to-be-sold-abroad",
"title": "PGP To Be Sold Abroad"
},
{
"url": "https://news.slashdot.org/story/98/03/20/122600/unix-creators-admit-hoax",
"title": "Unix Creators Admit Hoax"
},
{
"url": "https://games.slashdot.org/story/98/03/20/122100/direct3d-takes-hits",
"title": "Direct3D Takes Hits"
},
{
"url": "https://developers.slashdot.org/story/98/03/20/115400/java-linux-port",
"title": "Java Linux Port"
},
{
"url": "https://linux.slashdot.org/story/98/03/20/095600/linux-needs-music-software",
"title": "Linux Needs Music Software"
},
{
"url": "https://developers.slashdot.org/story/98/03/20/095300/hp-to-make-custom-java",
"title": "HP To Make Custom Java"
},
{
"url": "https://slashdot.org/story/98/03/20/095100/new-gimp-and-gtk",
"title": "New Gimp and GTK"
},
{
"url": "https://slashdot.org/story/98/03/20/125400/signatures-against-i2o-nda",
"title": "Signatures Against I2O NDA"
},
{
"url": "https://news.slashdot.org/story/98/03/19/214800/cool-quickies",
"title": "Cool Quickies"
},
{
"url": "https://slashdot.org/story/98/03/19/193200/beos-for-intel-released",
"title": "BeOS for Intel Released"
},
{
"url": "https://it.slashdot.org/story/98/03/19/162500/eccp-97-challenge-solved",
"title": "ECCp-97 Challenge Solved"
},
{
"url": "https://linux.slashdot.org/story/98/03/19/162100/linux-viable-alternative",
"title": "Linux Viable Alternative?"
},
{
"url": "https://news.slashdot.org/story/98/03/19/154200/brain-wavesmusic",
"title": "Brain Waves=Music"
},
{
"url": "https://news.slashdot.org/story/98/03/19/113500/analyzer-busted",
"title": "Analyzer Busted"
},
{
"url": "https://tech.slashdot.org/story/98/03/19/105900/cheap-flash-storage",
"title": "Cheap Flash Storage"
},
{
"url": "https://slashdot.org/story/98/03/19/102300/excellent-gimp-pr-at-ibm",
"title": "Excellent Gimp PR at IBM"
},
{
"url": "https://it.slashdot.org/story/98/03/19/100700/anti-spam-website",
"title": "Anti Spam Website"
},
{
"url": "https://slashdot.org/story/98/03/19/100400/sendmail-updates",
"title": "Sendmail Updates"
},
{
"url": "https://slashdot.org/story/98/03/19/100100/apache-on-wsj-and-msnbc",
"title": "Apache on WSJ and MSNBC"
},
{
"url": "https://linux.slashdot.org/story/98/03/18/231600/bruce-perens-leaves-debian",
"title": "Bruce Perens Leaves Debian"
},
{
"url": "https://tech.slashdot.org/story/98/03/18/201100/klyx-beta",
"title": "KLyX Beta"
},
{
"url": "https://tech.slashdot.org/story/98/03/18/200600/afterstep-lives",
"title": "AfterStep Lives"
},
{
"url": "https://tech.slashdot.org/story/98/03/18/185600/cyrix-chip-to-run-ce",
"title": "Cyrix Chip to Run CE"
},
{
"url": "https://games.slashdot.org/story/98/03/18/183900/game-boy-digital-camera",
"title": "Game Boy Digital Camera"
},
{
"url": "https://news.slashdot.org/story/98/03/18/142300/slashdots-2-millionth-hit",
"title": "Slashdot's 2 Millionth Hit!"
},
{
"url": "https://slashdot.org/story/98/03/18/140800/merced-and-an-nda",
"title": "Merced and an NDA"
},
{
"url": "https://news.slashdot.org/story/98/03/18/140100/perl-and-xml-future",
"title": "Perl and XML Future"
},
{
"url": "https://hardware.slashdot.org/story/98/03/18/135600/pilot-in-space",
"title": "Pilot in Space"
},
{
"url": "https://tech.slashdot.org/story/98/03/18/100700/eplus-information",
"title": "ePlus Information"
},
{
"url": "https://yro.slashdot.org/story/98/03/18/093100/doj-expands-suit-to-java",
"title": "DoJ Expands Suit to Java"
},
{
"url": "https://news.slashdot.org/story/98/03/18/092800/internet-world-on-open-source",
"title": "Internet World on Open Source"
},
{
"url": "https://linux.slashdot.org/story/98/03/18/092500/linux-2190",
"title": "Linux 2.1.90"
},
{
"url": "https://tech.slashdot.org/story/98/03/18/092000/atts-new-format-better-than-mp3",
"title": "AT&T's New Format Better than MP3?"
},
{
"url": "https://slashdot.org/story/98/03/18/001300/free-software-on-tv",
"title": "Free Software on TV"
},
{
"url": "https://it.slashdot.org/story/98/03/17/214200/slashdot-rc5-cracking-effort",
"title": "Slashdot RC5 Cracking Effort"
},
{
"url": "https://slashdot.org/story/98/03/17/174200/gimp-on-wired",
"title": "Gimp on Wired"
},
{
"url": "https://tech.slashdot.org/story/98/03/17/162200/cpu-news",
"title": "CPU News"
},
{
"url": "https://yro.slashdot.org/story/98/03/17/125600/sun-asked-about-ms-dealings",
"title": "Sun asked about MS dealings"
},
{
"url": "https://games.slashdot.org/story/98/03/17/123600/starcraft-for-linux",
"title": "StarCraft for Linux?"
},
{
"url": "https://slashdot.org/story/98/03/17/101800/internic-stuff",
"title": "InterNic Stuff"
},
{
"url": "https://games.slashdot.org/story/98/03/17/092000/return-of-centipede",
"title": "Return of Centipede!"
},
{
"url": "https://tech.slashdot.org/story/98/03/17/091800/linux-be-and-the-system",
"title": "Linux, Be, and the System"
},
{
"url": "https://linux.slashdot.org/story/98/03/17/091500/linux-on-psion-5s",
"title": "Linux on Psion 5's"
},
{
"url": "https://yro.slashdot.org/story/98/03/16/084000/lessig-leaning-towards-action",
"title": "Lessig leaning towards action"
},
{
"url": "https://linux.slashdot.org/story/98/03/16/103000/open-letter-to-cnet-editorial",
"title": "Open Letter to CNet (editorial)"
},
{
"url": "https://slashdot.org/story/98/03/16/102100/intel-shutting-down-p2-competition",
"title": "Intel Shutting Down P2 Competition"
},
{
"url": "https://news.slashdot.org/story/98/03/16/101800/government-evesdropping",
"title": "Government Evesdropping"
},
{
"url": "https://developers.slashdot.org/story/98/03/16/100600/campaign-for-sun-to-support-linux-java",
"title": "Campaign for Sun to Support Linux Java"
},
{
"url": "https://news.slashdot.org/story/98/03/16/100400/notes-to-slashdot-readers-important",
"title": "Notes to Slashdot Readers (important)"
},
{
"url": "https://linux.slashdot.org/story/98/03/16/094500/year-of-linux-humor",
"title": "Year of Linux (humor)"
},
{
"url": "https://slashdot.org/story/98/03/16/094100/us-and-europe-battle-of-net",
"title": "US and Europe Battle of 'Net"
},
{
"url": "https://linux.slashdot.org/story/98/03/16/093900/debian-frozen",
"title": "Debian Frozen"
},
{
"url": "https://slashdot.org/story/98/03/16/082900/win98-june-25",
"title": "Win98-June 25"
},
{
"url": "https://slashdot.org/story/98/03/16/081900/free-speech-battle-continues",
"title": "Free Speech Battle Continues"
},
{
"url": "https://hardware.slashdot.org/story/98/03/15/160900/piloted-to-the-promised-land",
"title": "Piloted to the Promised Land"
},
{
"url": "https://tech.slashdot.org/story/98/03/15/160600/56k-standards-solid-x2-upgrades",
"title": "56k Standards Solid. X2 Upgrades"
},
{
"url": "https://tech.slashdot.org/story/98/03/15/103100/rms-on-the-npl",
"title": "RMS on the NPL"
},
{
"url": "https://slashdot.org/story/98/03/15/101800/gtk-news",
"title": "GTK News"
},
{
"url": "https://games.slashdot.org/story/98/03/15/101400/unix-ultima-online-client",
"title": "Unix Ultima Online Client"
},
{
"url": "https://tech.slashdot.org/story/98/03/13/200600/the-fall-of-cyrix",
"title": "The Fall of Cyrix?"
},
{
"url": "https://slashdot.org/story/98/03/13/153900/modtcl-released",
"title": "Mod_TCL Released"
},
{
"url": "https://linux.slashdot.org/story/98/03/13/145800/linux-in-sandiego-and-la",
"title": "Linux in SanDiego and LA"
},
{
"url": "https://news.slashdot.org/story/98/03/13/121600/some-open-source-news",
"title": "Some Open Source News"
},
{
"url": "https://linux.slashdot.org/story/98/03/13/121400/linux-installfest-in-boston",
"title": "Linux InstallFest in Boston"
},
{
"url": "https://news.slashdot.org/story/98/03/13/104200/mci-worldcom-merger-the-new-att",
"title": "MCI Worldcom Merger the new AT&T?"
},
{
"url": "https://linux.slashdot.org/story/98/03/13/100000/live-near-seattle",
"title": "Live Near Seattle?"
},
{
"url": "https://news.slashdot.org/story/98/03/13/095400/sendmail-inc",
"title": "Sendmail Inc."
},
{
"url": "https://news.slashdot.org/story/98/03/13/093300/free-books",
"title": "Free Books"
},
{
"url": "https://slashdot.org/story/98/03/13/092700/digital-stops-rumors",
"title": "Digital Stops Rumors"
},
{
"url": "https://it.slashdot.org/story/98/03/12/095300/spam-king-crashes",
"title": "Spam King Crashes"
},
{
"url": "https://linux.slashdot.org/story/98/03/12/211900/cnet-to-evaluate-linux",
"title": "CNet to Evaluate Linux"
},
{
"url": "https://tech.slashdot.org/story/98/03/12/160600/gnustep-releases-code",
"title": "GNUStep Releases Code!"
},
{
"url": "https://linux.slashdot.org/story/98/03/12/155600/debian-20-freezes",
"title": "Debian 2.0 Freezes"
},
{
"url": "https://slashdot.org/story/98/03/12/155400/gimp-09920",
"title": "Gimp 0.99.20"
},
{
"url": "https://tech.slashdot.org/story/98/03/12/120900/open-circuit-design",
"title": "Open Circuit Design"
},
{
"url": "https://news.slashdot.org/story/98/03/12/113900/is-learning-unix-worth-the-effort",
"title": "Is Learning UNIX Worth the Effort?"
},
{
"url": "https://tech.slashdot.org/story/98/03/12/113200/the-problem-of-integration-editorial",
"title": "The Problem of Integration (editorial)"
},
{
"url": "https://news.slashdot.org/story/98/03/12/112200/cmdrtaco-seeks-a-pc110",
"title": "CmdrTaco Seeks a PC110"
},
{
"url": "https://tech.slashdot.org/story/98/03/12/111800/generative-music",
"title": "Generative Music"
},
{
"url": "https://slashdot.org/story/98/03/12/111300/the-quiet-influence-of-free-software",
"title": "The Quiet Influence of Free Software"
},
{
"url": "https://tech.slashdot.org/story/98/03/11/201400/dvd-ram-is-coming",
"title": "DVD-RAM is Coming"
},
{
"url": "https://games.slashdot.org/story/98/03/11/162500/ultima-online-under-fire",
"title": "Ultima Online Under Fire"
},
{
"url": "https://news.slashdot.org/story/98/03/11/161800/future-of-ui-design-and-microsoft",
"title": "Future of UI Design and Microsoft"
},
{
"url": "https://tech.slashdot.org/story/98/03/11/145600/jupiter-devices-unveiled",
"title": "Jupiter Devices Unveiled"
},
{
"url": "https://apple.slashdot.org/story/98/03/11/124100/death-of-newton",
"title": "Death of Newton"
},
{
"url": "https://it.slashdot.org/story/98/03/11/122900/fight-against-spam-continues",
"title": "Fight Against Spam Continues"
},
{
"url": "https://tech.slashdot.org/story/98/03/11/122200/netscape-news",
"title": "Netscape News"
},
{
"url": "https://slashdot.org/story/98/03/11/103800/microsoft-manipulating-java",
"title": "Microsoft Manipulating Java"
},
{
"url": "https://news.slashdot.org/story/98/03/11/094900/apache-notes",
"title": "Apache Notes"
},
{
"url": "https://news.slashdot.org/story/98/03/11/094000/the-new-sco",
"title": "The New SCO"
},
{
"url": "https://news.slashdot.org/story/98/03/11/093500/consolidation-of-unix-causing-its-downfall",
"title": "Consolidation of Unix Causing Its Downfall?"
},
{
"url": "https://news.slashdot.org/story/98/03/10/210800/gnew-gnome",
"title": "Gnew Gnome"
},
{
"url": "https://tech.slashdot.org/story/98/03/10/185700/new-gw2k-amigas",
"title": "New GW2k Amigas"
},
{
"url": "https://hardware.slashdot.org/story/98/03/10/185400/palmpilot-iii-flurry",
"title": "PalmPilot III Flurry"
},
{
"url": "https://linux.slashdot.org/story/98/03/10/140300/redhat-estimates-linux-installs",
"title": "RedHat Estimates Linux Installs"
},
{
"url": "https://slashdot.org/story/98/03/10/132100/apples-new-product",
"title": "Apple's new product"
},
{
"url": "https://developers.slashdot.org/story/98/03/10/131900/java-lobby",
"title": "Java Lobby"
},
{
"url": "https://news.slashdot.org/story/98/03/10/115800/gtk-themes-first-fruits",
"title": "GTK Themes First Fruits"
},
{
"url": "https://hardware.slashdot.org/story/98/03/10/115500/debianpilot-list-opens",
"title": "Debian/Pilot List Opens"
},
{
"url": "https://news.slashdot.org/story/98/03/10/101000/corels-suite-editorial",
"title": "Corel's Suite (editorial)"
},
{
"url": "https://slashdot.org/story/98/03/10/093600/exciting-gimp-news",
"title": "Exciting Gimp News"
},
{
"url": "https://news.slashdot.org/story/98/03/10/081900/more-ado-about-net-tax",
"title": "More ado about Net Tax"
},
{
"url": "https://slashdot.org/story/98/03/09/154900/linux-webwatcher-gets-a-new-home",
"title": "Linux Webwatcher Gets a New Home"
},
{
"url": "https://it.slashdot.org/story/98/03/09/122400/slashdot-and-rc5",
"title": "Slashdot and RC5"
},
{
"url": "https://news.slashdot.org/story/98/03/09/093200/the-new-generation-of-hackers-editorial",
"title": "The New Generation of Hackers (editorial)"
},
{
"url": "https://linux.slashdot.org/story/98/03/09/090700/linux-training-in-the-uk",
"title": "Linux Training in the UK"
},
{
"url": "https://games.slashdot.org/story/98/03/09/090500/another-emulator",
"title": "Another Emulator"
},
{
"url": "https://hardware.slashdot.org/story/98/03/09/085900/palm-iii-reviews",
"title": "Palm III Reviews"
},
{
"url": "https://linux.slashdot.org/story/98/03/09/085700/nader-dell-linux",
"title": "Nader, Dell & Linux"
},
{
"url": "https://news.slashdot.org/story/98/03/08/195300/deja-news-and-linux",
"title": "Deja News and Linux"
},
{
"url": "https://news.slashdot.org/story/98/03/08/194900/definition-of-geek",
"title": "Definition of \"Geek\""
},
{
"url": "https://games.slashdot.org/story/98/03/08/143200/snes-9x-development-to-continue",
"title": "SNES 9x Development to Continue"
},
{
"url": "https://news.slashdot.org/story/98/03/08/142300/linux-unix-the-computer-chronicles",
"title": "Linux, Unix & The Computer Chronicles"
},
{
"url": "https://slashdot.org/story/98/03/06/221700/why-they-all-go-nt",
"title": "Why they all go NT"
},
{
"url": "https://slashdot.org/story/98/03/06/220300/microsoft-presents-avaj",
"title": "Microsoft presents AVAJ"
},
{
"url": "https://slashdot.org/story/98/03/06/154900/microsoft-demands-recall",
"title": "Microsoft Demands Recall"
},
{
"url": "https://slashdot.org/story/98/03/06/145700/apache-gets-praise",
"title": "Apache Gets Praise"
},
{
"url": "https://slashdot.org/story/98/03/06/145100/us-to-throw-good-money-away",
"title": "US to throw good money away"
},
{
"url": "https://slashdot.org/story/98/03/06/131900/low-end-dev-suites-by-sun",
"title": "Low End Dev. Suites by Sun"
},
{
"url": "https://hardware.slashdot.org/story/98/03/06/095700/palm-iii-info",
"title": "Palm III Info"
},
{
"url": "https://it.slashdot.org/story/98/03/06/095100/uk-on-encryption",
"title": "UK On Encryption"
},
{
"url": "https://tech.slashdot.org/story/98/03/06/094900/xfree86-332",
"title": "XFree86 3.3.2"
},
{
"url": "https://linux.slashdot.org/story/98/03/06/094600/linux-mentioned-at-usa-today",
"title": "Linux Mentioned at USA Today"
},
{
"url": "https://linux.slashdot.org/story/98/03/06/094300/redhat-at-zdnet",
"title": "RedHat at ZDNet"
},
{
"url": "https://games.slashdot.org/story/98/03/06/094000/quake2-source",
"title": "Quake2 Source"
},
{
"url": "https://slashdot.org/story/98/03/05/233600/imminent-war-of-attrition",
"title": "Imminent war of attrition?"
},
{
"url": "https://slashdot.org/story/98/03/05/224000/open-market-grabs-patents",
"title": "Open Market grabs patents"
},
{
"url": "https://linux.slashdot.org/story/98/03/05/170400/open-source-award",
"title": "Open Source Award"
},
{
"url": "https://news.slashdot.org/story/98/03/05/162800/crossfire-transcripts",
"title": "Crossfire Transcripts"
},
{
"url": "https://hardware.slashdot.org/story/98/03/05/160600/palm-files-suit",
"title": "Palm Files Suit"
},
{
"url": "https://hardware.slashdot.org/story/98/03/05/152700/palmpilot-prices-cut",
"title": "PalmPilot Prices Cut"
},
{
"url": "https://slashdot.org/story/98/03/05/151200/netscape-releases-draft-license",
"title": "Netscape releases draft license"
},
{
"url": "https://slashdot.org/story/98/03/05/150700/beos-r3x86-to-ship-early",
"title": "BeOS R3/x86 to Ship Early"
},
{
"url": "https://slashdot.org/story/98/03/05/120400/sunworld-on-gui-toolkits",
"title": "Sunworld on GUI Toolkits"
},
{
"url": "https://news.slashdot.org/story/98/03/05/111300/postgresql-63-released",
"title": "PostgreSQL 6.3 Released"
},
{
"url": "https://news.slashdot.org/story/98/03/05/111000/hotmail-booboo",
"title": "Hotmail Booboo"
},
{
"url": "https://hardware.slashdot.org/story/98/03/05/110800/3com-to-port-linux-to-pilot",
"title": "3com to Port Linux to Pilot!"
},
{
"url": "https://linux.slashdot.org/story/98/03/04/220700/linux-rally",
"title": "Linux Rally"
},
{
"url": "https://linux.slashdot.org/story/98/03/04/215400/linux-hardware-survey",
"title": "Linux Hardware Survey"
},
{
"url": "https://slashdot.org/story/98/03/04/214500/microsoft-lawsuit-timeline",
"title": "Microsoft Lawsuit Timeline"
},
{
"url": "https://news.slashdot.org/story/98/03/04/214200/computer-privacy",
"title": "Computer Privacy"
},
{
"url": "https://tech.slashdot.org/story/98/03/04/160300/cheap-big-storage",
"title": "Cheap Big Storage"
},
{
"url": "https://it.slashdot.org/story/98/03/04/155800/more-teardrop-news",
"title": "More Teardrop News"
},
{
"url": "https://it.slashdot.org/story/98/03/04/142500/spam-without-headers",
"title": "Spam Without Headers"
},
{
"url": "https://linux.slashdot.org/story/98/03/04/131300/humorous-linux-article",
"title": "Humorous Linux Article"
},
{
"url": "https://linux.slashdot.org/story/98/03/04/101700/redhat-pr-at-zdnet",
"title": "RedHat PR at ZDNet"
},
{
"url": "https://news.slashdot.org/story/98/03/04/101500/slashdot-banned-powerwavecom",
"title": "Slashdot Banned @Powerwave.com!"
},
{
"url": "https://tech.slashdot.org/story/98/03/04/100800/finger-chip-technology",
"title": "Finger Chip Technology"
},
{
"url": "https://slashdot.org/story/98/03/04/100500/new-gcc-out",
"title": "New GCC Out"
},
{
"url": "https://slashdot.org/story/98/03/04/095000/98-webby-nominees",
"title": "98 Webby Nominees"
},
{
"url": "https://slashdot.org/story/98/03/04/092200/ibm-to-make-java-chips",
"title": "IBM to Make Java Chips"
},
{
"url": "https://slashdot.org/story/98/03/04/092100/apache-rules-netcraft",
"title": "Apache Rules @Netcraft"
},
{
"url": "https://news.slashdot.org/story/98/03/04/091900/nasa-nuked-by-teardrop",
"title": "Nasa Nuked by Teardrop"
},
{
"url": "https://games.slashdot.org/story/98/03/04/081900/really-riven",
"title": "Really Riven"
},
{
"url": "https://it.slashdot.org/story/98/03/03/173400/new-teardrop-attack",
"title": "New Teardrop Attack"
},
{
"url": "https://news.slashdot.org/story/98/03/03/111900/moonlight-source-released",
"title": "MoonLight Source Released"
},
{
"url": "https://slashdot.org/story/98/03/03/111600/27-states-vs-microsoft",
"title": "27 States vs. Microsoft"
},
{
"url": "https://news.slashdot.org/story/98/03/03/111200/languages-that-suck",
"title": "Languages That Suck"
},
{
"url": "https://tech.slashdot.org/story/98/03/03/111000/dvd-from-creative-labs",
"title": "DVD from Creative Labs"
},
{
"url": "https://slashdot.org/story/98/03/03/083000/g3-servers-rolled-out",
"title": "G3 servers rolled out"
},
{
"url": "https://news.slashdot.org/story/98/03/02/221300/netcast-of-senate",
"title": "Netcast of Senate"
},
{
"url": "https://slashdot.org/story/98/03/02/144400/uncomfirmed-intelnetscape-rumor",
"title": "Uncomfirmed Intel/Netscape Rumor"
},
{
"url": "https://linux.slashdot.org/story/98/03/02/143300/linus-to-speak-at-svlug",
"title": "Linus To Speak at SVLUG"
},
{
"url": "https://linux.slashdot.org/story/98/03/02/143100/preloading-linux-on-hardware",
"title": "Preloading Linux on Hardware"
},
{
"url": "https://linux.slashdot.org/story/98/03/02/142800/network-world-on-linux",
"title": "Network World on Linux"
},
{
"url": "https://tech.slashdot.org/story/98/03/02/142600/introducing-the-mpman",
"title": "Introducing the MPMan"
},
{
"url": "https://slashdot.org/story/98/03/02/103900/gimp-contest-finished",
"title": "Gimp Contest Finished"
},
{
"url": "https://apple.slashdot.org/story/98/03/02/103600/rhapsodyos-report",
"title": "RhapsodyOS Report"
},
{
"url": "https://linux.slashdot.org/story/98/03/02/103300/new-distributions",
"title": "New Distributions"
},
{
"url": "https://slashdot.org/story/98/03/02/100600/gimp-09919",
"title": "Gimp 0.99.19"
},
{
"url": "https://news.slashdot.org/story/98/03/01/184100/teens-with-careers",
"title": "Teens with Careers"
},
{
"url": "https://linux.slashdot.org/story/98/03/01/114000/redhat-at-best-buy",
"title": "RedHat at Best Buy"
},
{
"url": "https://developers.slashdot.org/story/98/03/01/113500/java-games-on-developercom",
"title": "Java Games on Developer.com"
},
{
"url": "https://tech.slashdot.org/story/98/03/01/112700/unixreview-on-kde",
"title": "UnixReview on KDE"
},
{
"url": "https://news.slashdot.org/story/98/03/01/112400/open-source-hardware",
"title": "Open Source Hardware"
},
{
"url": "https://tech.slashdot.org/story/98/03/01/112000/denser-discs",
"title": "Denser Discs"
},
{
"url": "https://news.slashdot.org/story/98/03/01/111700/maxwell-word-processor",
"title": "Maxwell Word Processor"
},
{
"url": "https://slashdot.org/story/98/02/27/202100/netscape-kills-javagator",
"title": "Netscape kills Javagator"
},
{
"url": "https://news.slashdot.org/story/98/02/27/144300/genetics-algorithims-growing",
"title": "Genetics Algorithims Growing"
},
{
"url": "https://news.slashdot.org/story/98/02/27/142000/gnomoney-project",
"title": "GnoMoney Project"
},
{
"url": "https://slashdot.org/story/98/02/27/141400/rms-responds",
"title": "RMS Responds"
},
{
"url": "https://news.slashdot.org/story/98/02/27/104300/need-some-new-cds",
"title": "Need Some New CDs?"
},
{
"url": "https://apple.slashdot.org/story/98/02/27/103300/the-death-of-newton",
"title": "The Death of Newton"
},
{
"url": "https://hardware.slashdot.org/story/98/02/27/092900/palmpilot-iii",
"title": "PalmPilot III"
},
{
"url": "https://tech.slashdot.org/story/98/02/27/092700/beowulf-replacing-supercomputers",
"title": "Beowulf Replacing Supercomputers?"
},
{
"url": "https://slashdot.org/story/98/02/27/092400/ibm-to-make-amd-chips",
"title": "IBM To Make AMD Chips"
},
{
"url": "https://slashdot.org/story/98/02/27/091600/gnu-win32-b19-released",
"title": "GNU-Win32 b19 Released"
},
{
"url": "https://tech.slashdot.org/story/98/02/26/170500/windowmaker-014",
"title": "WindowMaker 0.14"
},
{
"url": "https://games.slashdot.org/story/98/02/26/170000/video-game-cover-censored",
"title": "Video Game Cover Censored"
},
{
"url": "https://games.slashdot.org/story/98/02/26/152900/gameboy-emulator-for-ce",
"title": "GameBoy Emulator for CE"
},
{
"url": "https://linux.slashdot.org/story/98/02/26/105600/stream-of-linux-articles",
"title": "Stream of Linux Articles"
},
{
"url": "https://developers.slashdot.org/story/98/02/26/104800/jfc-11-swing-released",
"title": "JFC 1.1 \"Swing\" Released\""
},
{
"url": "https://slashdot.org/story/98/02/26/103400/new-gpl-apps",
"title": "New GPL Apps"
},
{
"url": "https://news.slashdot.org/story/98/02/26/103200/no-new-net-taxes",
"title": "No new Net Taxes"
},
{
"url": "https://developers.slashdot.org/story/98/02/26/102700/new-linux-jdk",
"title": "New Linux JDK"
},
{
"url": "https://slashdot.org/story/98/02/26/101600/kde-installation-guide",
"title": "KDE Installation Guide"
},
{
"url": "https://tech.slashdot.org/story/98/02/26/101300/tech-labor-shortage-myth",
"title": "Tech Labor Shortage Myth?"
},
{
"url": "https://linux.slashdot.org/story/98/02/26/100600/linux-and-small-businesses",
"title": "Linux and Small Businesses"
},
{
"url": "https://hardware.slashdot.org/story/98/02/26/065600/pilot-emulator-for-ce",
"title": "Pilot Emulator for CE"
},
{
"url": "https://slashdot.org/story/98/02/25/151900/mmx2-in-deschutes",
"title": "MMX2 in Deschutes?"
},
{
"url": "https://linux.slashdot.org/story/98/02/25/143400/gartnergroup-and-linux",
"title": "GartnerGroup and Linux"
},
{
"url": "https://games.slashdot.org/story/98/02/25/092900/quake2-news",
"title": "Quake2 News"
},
{
"url": "https://it.slashdot.org/story/98/02/24/233500/des2-broken",
"title": "Des2 Broken"
},
{
"url": "https://slashdot.org/story/98/02/24/233000/nerd-trivia",
"title": "Nerd Trivia"
},
{
"url": "https://slashdot.org/story/98/02/24/191400/sun-reduces-x86-costs",
"title": "Sun Reduces x86 Costs"
},
{
"url": "https://slashdot.org/story/98/02/24/141300/europe-heads-backwards",
"title": "Europe heads backwards"
},
{
"url": "https://slashdot.org/story/98/02/24/120500/new-ie-for-unix",
"title": "New IE for Unix"
},
{
"url": "https://tech.slashdot.org/story/98/02/24/115600/mozillaorg-and-linux",
"title": "Mozilla.org And Linux"
},
{
"url": "https://slashdot.org/story/98/02/24/114700/mnemonic-announces-first-release",
"title": "Mnemonic Announces First Release"
},
{
"url": "https://news.slashdot.org/story/98/02/24/114200/neogeo-talks-back-on-blender",
"title": "NeoGeo Talks Back on Blender"
},
{
"url": "https://developers.slashdot.org/story/98/02/24/113700/new-kaffe",
"title": "New Kaffe"
},
{
"url": "https://news.slashdot.org/story/98/02/24/112800/www-dns-slashdot-and-other-evils",
"title": "www, DNS, Slashdot and other Evils"
},
{
"url": "https://slashdot.org/story/98/02/23/165800/intel-to-use-strongarm-",
"title": "Intel to use StrongARM !!!"
},
{
"url": "https://tech.slashdot.org/story/98/02/23/162900/mozillaorg-opens-doors",
"title": "Mozilla.org Opens Doors"
},
{
"url": "https://tech.slashdot.org/story/98/02/23/154700/netscape-gives-good-press-for-mysql-and-linux",
"title": "Netscape gives Good Press for MySQL and Linux"
},
{
"url": "https://news.slashdot.org/story/98/02/23/154400/vnc-remote-access-desktops",
"title": "VNC Remote Access Desktops"
},
{
"url": "https://apple.slashdot.org/story/98/02/23/140800/rhapsodylinux-merging",
"title": "Rhapsody/Linux Merging?"
},
{
"url": "https://slashdot.org/story/98/02/23/100900/linus-and-richard-awarded",
"title": "Linus and Richard awarded."
},
{
"url": "https://slashdot.org/story/98/02/23/120500/can-you-rely-on-the-consultant",
"title": "Can you rely on the Consultant?"
},
{
"url": "https://news.slashdot.org/story/98/02/22/162600/woman-deletes-the-internet",
"title": "Woman Deletes The Internet"
},
{
"url": "https://slashdot.org/story/98/02/22/125500/blender-and-freeopen-software",
"title": "Blender and Free/Open Software"
},
{
"url": "https://tech.slashdot.org/story/98/02/22/124900/kirc-devel-stalls",
"title": "kIRC Devel Stalls"
},
{
"url": "https://slashdot.org/story/98/02/22/111200/the-rationale-behind-microsoft-bashing",
"title": "The Rationale Behind Microsoft Bashing"
},
{
"url": "https://slashdot.org/story/98/02/22/105100/does-your-os-suck-or-rule",
"title": "Does Your OS Suck or Rule?"
},
{
"url": "https://slashdot.org/story/98/02/22/104700/ms-monopoly-compared-to-auto-industry",
"title": "MS Monopoly Compared to Auto Industry"
},
{
"url": "https://slashdot.org/story/98/02/20/150800/bill-borg-causes-lawsuits",
"title": "Bill Borg Causes Lawsuits?"
},
{
"url": "https://hardware.slashdot.org/story/98/02/20/124100/the-palmpilot-cult",
"title": "The PalmPilot Cult"
},
{
"url": "https://news.slashdot.org/story/98/02/20/094000/eiffel-for-linux",
"title": "Eiffel for Linux"
},
{
"url": "https://it.slashdot.org/story/98/02/20/093700/us-cryptography-policy",
"title": "US Cryptography Policy"
},
{
"url": "https://news.slashdot.org/story/98/02/20/093500/blender-3d-software",
"title": "Blender 3D Software"
},
{
"url": "https://slashdot.org/story/98/02/19/174000/beos-to-include-partition-magic",
"title": "BeOS to include Partition Magic"
},
{
"url": "https://news.slashdot.org/story/98/02/19/120800/help-robget-a-mug",
"title": "Help Rob/Get a Mug!"
},
{
"url": "https://slashdot.org/story/98/02/19/112600/sun-on-press-releases",
"title": "Sun On Press Releases"
},
{
"url": "https://slashdot.org/story/98/02/19/112300/beos-humor-site",
"title": "BeOS Humor Site"
},
{
"url": "https://news.slashdot.org/story/98/02/19/083800/computer-sciences-rejects-ca",
"title": "Computer Sciences rejects CA"
},
{
"url": "https://news.slashdot.org/story/98/02/18/210800/humorous-proof-of-ie5-at-bootnet",
"title": "Humorous Proof of IE5 at Bootnet"
},
{
"url": "https://slashdot.org/story/98/02/18/200800/quantum-transitors-trumpeted",
"title": "Quantum Transitors Trumpeted!"
},
{
"url": "https://tech.slashdot.org/story/98/02/18/185800/intelligent-robots-will-kill-us-all",
"title": "Intelligent Robots Will Kill Us All!"
},
{
"url": "https://news.slashdot.org/story/98/02/18/165900/ipo-for-ziff-davis",
"title": "IPO for Ziff-Davis"
},
{
"url": "https://tech.slashdot.org/story/98/02/18/152800/new-pilot-cdpd-modem",
"title": "New Pilot CDPD Modem"
},
{
"url": "https://slashdot.org/story/98/02/18/152500/lost-in-space",
"title": "Lost in space"
},
{
"url": "https://news.slashdot.org/story/98/02/18/150800/employee-trashes-omega",
"title": "Employee Trashes Omega"
},
{
"url": "https://slashdot.org/story/98/02/18/120800/core-servers-stolen",
"title": "CORE Servers Stolen"
},
{
"url": "https://news.slashdot.org/story/98/02/18/120600/sco-emulates-win95",
"title": "Sco Emulates Win95"
},
{
"url": "https://it.slashdot.org/story/98/02/18/120200/new-des-clients",
"title": "New DES Clients"
},
{
"url": "https://slashdot.org/story/98/02/18/120000/rms-speaks-against-open",
"title": "RMS Speaks Against \"Open\""
},
{
"url": "https://slashdot.org/story/98/02/18/115700/gnu-bios-project",
"title": "Gnu Bios Project"
},
{
"url": "https://news.slashdot.org/story/98/02/18/083800/oracle-loses-nc-chief",
"title": "Oracle loses NC chief"
},
{
"url": "https://tech.slashdot.org/story/98/02/18/083200/3com-first-with-new-modem",
"title": "3com first with new modem"
},
{
"url": "https://slashdot.org/story/98/02/17/224500/money-money-money",
"title": "Money, Money, Money..."
},
{
"url": "https://slashdot.org/story/98/02/17/223800/redhat-wins-productivity-award",
"title": "Redhat wins Productivity Award"
},
{
"url": "https://tech.slashdot.org/story/98/02/17/164000/hitachi-makes-breakthrough",
"title": "Hitachi Makes Breakthrough"
},
{
"url": "https://games.slashdot.org/story/98/02/17/162600/the-iceboy",
"title": "The IceBoy"
},
{
"url": "https://tech.slashdot.org/story/98/02/17/152800/seagate-makes-breakthrough",
"title": "Seagate Makes Breakthrough"
},
{
"url": "https://slashdot.org/story/98/02/17/151500/microsoft-tidbits",
"title": "Microsoft Tidbits"
},
{
"url": "https://slashdot.org/story/98/02/16/234900/another-design-win-for-apache",
"title": "Another design win for Apache"
},
{
"url": "https://slashdot.org/story/98/02/16/233000/the-new-kid-on-the-block",
"title": "The new kid on the block"
},
{
"url": "https://slashdot.org/story/98/02/16/232000/round-3",
"title": "Round 3"
},
{
"url": "https://linux.slashdot.org/story/98/02/16/220600/linux-2187-released",
"title": "Linux 2.1.87 Released"
},
{
"url": "https://developers.slashdot.org/story/98/02/16/144800/incompatible-ms-java",
"title": "Incompatible MS java?"
},
{
"url": "https://news.slashdot.org/story/98/02/16/144500/insight-project-fruits",
"title": "InSight Project Fruits"
},
{
"url": "https://news.slashdot.org/story/98/02/16/104400/gates-on-the-simpsons",
"title": "Gates on \"The Simpsons\""
},
{
"url": "https://slashdot.org/story/98/02/16/101600/open-sourceorg",
"title": "Open-Source.org"
},
{
"url": "https://linux.slashdot.org/story/98/02/16/101300/fired-for-using-linux",
"title": "Fired for Using Linux?"
},
{
"url": "https://slashdot.org/story/98/02/15/200100/the-bubble",
"title": "The Bubble"
},
{
"url": "https://tech.slashdot.org/story/98/02/15/111800/hpsco-rumours",
"title": "HP/Sco Rumours"
},
{
"url": "https://tech.slashdot.org/story/98/02/15/111200/plastic-screens",
"title": "Plastic Screens"
},
{
"url": "https://linux.slashdot.org/story/98/02/15/110800/linux-forums-infoworld",
"title": "Linux Forums @InfoWorld"
},
{
"url": "https://tech.slashdot.org/story/98/02/13/200300/110v-lan",
"title": "110v Lan"
},
{
"url": "https://slashdot.org/story/98/02/13/200000/x11r64",
"title": "X11R6.4"
},
{
"url": "https://news.slashdot.org/story/98/02/13/104700/linux-and-games-editorial",
"title": "Linux and Games (Editorial)"
},
{
"url": "https://it.slashdot.org/story/98/02/13/103500/slashdot-des-ii",
"title": "Slashdot Des II"
},
{
"url": "https://slashdot.org/story/98/02/13/094300/directv-and-ms-divorce",
"title": "DirecTV and MS Divorce"
},
{
"url": "https://linux.slashdot.org/story/98/02/13/092800/linux--zdnet",
"title": "Linux @ ZDNet"
},
{
"url": "https://developers.slashdot.org/story/98/02/13/092600/sun-pushes-javasoft",
"title": "Sun Pushes JavaSoft"
},
{
"url": "https://linux.slashdot.org/story/98/02/13/092500/redhat-at-fermilab",
"title": "RedHat at Fermilab"
},
{
"url": "https://news.slashdot.org/story/98/02/13/083000/hatch-asks-gates-to-appear",
"title": "Hatch asks Gates to appear"
},
{
"url": "https://slashdot.org/story/98/02/12/234600/the-nt-advantage",
"title": "The NT advantage"
},
{
"url": "https://tech.slashdot.org/story/98/02/12/182200/windowmaker-0131-released",
"title": "WindowMaker 0.13.1 Released"
},
{
"url": "https://slashdot.org/story/98/02/12/180100/free-solaris-for-developers",
"title": "Free Solaris for Developers"
},
{
"url": "https://slashdot.org/story/98/02/12/130500/qt-new-standard",
"title": "QT new standard"
},
{
"url": "https://news.slashdot.org/story/98/02/12/121300/timesoft-sues-ms",
"title": "TimeSoft Sues MS"
},
{
"url": "https://linux.slashdot.org/story/98/02/12/121100/mercedlinux",
"title": "Merced/Linux?"
},
{
"url": "https://news.slashdot.org/story/98/02/12/112300/multithreading-lawsuits",
"title": "Multithreading Lawsuits"
},
{
"url": "https://linux.slashdot.org/story/98/02/12/111900/linux-for-the-pilot",
"title": "Linux for the Pilot"
},
{
"url": "https://news.slashdot.org/story/98/02/12/101700/att-mci-others-to-build-cable",
"title": "AT&T, MCI, others to build cable"
},
{
"url": "https://news.slashdot.org/story/98/02/11/214200/new-server",
"title": "New Server"
},
{
"url": "https://slashdot.org/story/98/02/11/152900/intels-new-3d-chip",
"title": "Intel's New 3D Chip"
},
{
"url": "https://slashdot.org/story/98/02/11/150200/sunworld-on-compaqdec",
"title": "SunWorld on Compaq/DEC"
},
{
"url": "https://tech.slashdot.org/story/98/02/11/125200/bio-chips",
"title": "Bio Chips"
},
{
"url": "https://features.slashdot.org/story/98/02/11/091400/suns-logical-next-step-editorial",
"title": "Sun's Logical Next Step (Editorial)"
},
{
"url": "https://news.slashdot.org/story/98/02/11/083400/sprint-earthlink-in-deal",
"title": "Sprint, Earthlink in deal"
},
{
"url": "https://linux.slashdot.org/story/98/02/10/221600/linux-2186-released",
"title": "Linux 2.1.86 Released"
},
{
"url": "https://slashdot.org/story/98/02/10/221000/sgi-to-sell-nt-boxen",
"title": "SGI to sell NT boxen"
},
{
"url": "https://slashdot.org/story/98/02/10/201200/static-and-dynamic-compilation",
"title": "Static and Dynamic compilation"
},
{
"url": "https://slashdot.org/story/98/02/10/194200/new-threat-from-redmond",
"title": "New Threat from Redmond"
},
{
"url": "https://yro.slashdot.org/story/98/02/10/192000/filters-or-cash",
"title": "Filters or Cash?"
},
{
"url": "https://slashdot.org/story/98/02/10/165000/altos-website",
"title": "AltOS Website"
},
{
"url": "https://slashdot.org/story/98/02/10/152700/court-allows-caldera-complaint",
"title": "Court Allows Caldera Complaint"
},
{
"url": "https://news.slashdot.org/story/98/02/10/140000/us-proposes-tax-free-net",
"title": "US proposes tax-free Net"
},
{
"url": "https://slashdot.org/story/98/02/10/135900/xml-standard",
"title": "XML Standard"
},
{
"url": "https://slashdot.org/story/98/02/10/111400/insight-dies",
"title": "InSight Dies"
},
{
"url": "https://tech.slashdot.org/story/98/02/10/110200/raster-releases-new-imlib",
"title": "Raster Releases New Imlib"
},
{
"url": "https://linux.slashdot.org/story/98/02/10/110000/linux-weekly-news",
"title": "Linux Weekly News"
},
{
"url": "https://news.slashdot.org/story/98/02/10/105500/des-ii-effort",
"title": "DES II Effort"
},
{
"url": "https://news.slashdot.org/story/98/02/10/104900/more-workers-needed",
"title": "More workers needed"
},
{
"url": "https://news.slashdot.org/story/98/02/09/213900/free-softwares-new-name",
"title": "Free Software's New Name"
},
{
"url": "https://news.slashdot.org/story/98/02/09/204900/slashdot-turns-a-million",
"title": "Slashdot turns a Million"
},
{
"url": "https://slashdot.org/story/98/02/09/194700/mitsubishi-stops-alpha-production",
"title": "Mitsubishi Stops Alpha Production"
},
{
"url": "https://slashdot.org/story/98/02/09/150400/digital-fixes-error",
"title": "Digital Fixes Error"
},
{
"url": "https://tech.slashdot.org/story/98/02/09/143300/dave-winer-on-competition",
"title": "Dave Winer on Competition"
},
{
"url": "https://apple.slashdot.org/story/98/02/09/132000/rhapsody-not-for-only-for-servers",
"title": "Rhapsody Not For Only For Servers?"
},
{
"url": "https://linux.slashdot.org/story/98/02/09/101100/linux-21-security-hole",
"title": "Linux 2.1.* Security Hole"
},
{
"url": "https://apple.slashdot.org/story/98/02/09/094200/rhapsodyos-netscape-project",
"title": "RhapsodyOS Netscape Project"
},
{
"url": "https://tech.slashdot.org/story/98/02/09/093300/the-x-desktop-editorial",
"title": "The X Desktop (Editorial)"
},
{
"url": "https://games.slashdot.org/story/98/02/09/092300/quakagotchi",
"title": "Quakagotchi"
},
{
"url": "https://games.slashdot.org/story/98/02/09/092100/carmacks-gambling-skills-benefit-fsf",
"title": "Carmack's Gambling Skills Benefit FSF"
},
{
"url": "https://slashdot.org/story/98/02/08/203400/digital-spreads-mis-information",
"title": "Digital spreads mis-information"
},
{
"url": "https://it.slashdot.org/story/98/02/08/112800/pgp-exportation-complete",
"title": "PGP Exportation Complete"
},
{
"url": "https://it.slashdot.org/story/98/02/08/024900/more-nt-bugs",
"title": "More NT bugs"
},
{
"url": "https://slashdot.org/story/98/02/06/153700/ibm-hits-1ghz",
"title": "IBM hits 1Ghz"
},
{
"url": "https://slashdot.org/story/98/02/06/153500/strong-arm-team-quits",
"title": "Strong ARM team quits"
},
{
"url": "https://tech.slashdot.org/story/98/02/06/152200/chastity-chip",
"title": "Chastity Chip?"
},
{
"url": "https://slashdot.org/story/98/02/06/131100/bills-pie-assailant-update",
"title": "Bill's Pie Assailant Update"
},
{
"url": "https://news.slashdot.org/story/98/02/06/121400/wto-opens-trade",
"title": "WTO opens trade"
},
{
"url": "https://news.slashdot.org/story/98/02/06/104200/toy-story-2-bugs-life",
"title": "Toy Story 2 & Bugs Life"
},
{
"url": "https://slashdot.org/story/98/02/06/094300/cringley-uucp-and-dsl",
"title": "Cringley, UUCP and DSL"
},
{
"url": "https://apple.slashdot.org/story/98/02/06/093100/speedy-g3s",
"title": "Speedy G3's"
},
{
"url": "https://slashdot.org/story/98/02/06/092000/senator-hatch-goes-after-ms",
"title": "Senator Hatch Goes After MS"
},
{
"url": "https://it.slashdot.org/story/98/02/06/091600/us-vs-spam-continues",
"title": "US Vs. Spam Continues"
},
{
"url": "https://yro.slashdot.org/story/98/02/06/083200/ms-inquiry-widens",
"title": "MS inquiry widens"
},
{
"url": "https://slashdot.org/story/98/02/05/233800/john-ousterhout-leaves-sunscript",
"title": "John Ousterhout leaves SunScript"
},
{
"url": "https://tech.slashdot.org/story/98/02/05/171900/netscapes-license",
"title": "Netscape's License"
},
{
"url": "https://slashdot.org/story/98/02/05/162600/be-x86-coming",
"title": "Be x86 Coming"
},
{
"url": "https://linux.slashdot.org/story/98/02/05/162300/new-dosemu",
"title": "New Dosemu"
},
{
"url": "https://tech.slashdot.org/story/98/02/05/161100/should-netscape-sell-linux",
"title": "Should Netscape Sell Linux?"
},
{
"url": "https://news.slashdot.org/story/98/02/05/125200/internet-user-numbers",
"title": "Internet user numbers"
},
{
"url": "https://news.slashdot.org/story/98/02/05/105600/2600-in-danger",
"title": "2600 In Danger"
},
{
"url": "https://news.slashdot.org/story/98/02/05/102700/cooking-pot-markets",
"title": "Cooking pot markets"
},
{
"url": "https://it.slashdot.org/story/98/02/05/100900/des2-bovine-and-slashdot",
"title": "Des2, Bovine and Slashdot"
},
{
"url": "https://news.slashdot.org/story/98/02/05/092500/y2k-page",
"title": "Y2K Page"
},
{
"url": "https://tech.slashdot.org/story/98/02/05/083600/netscape-may-sell-all-or-part",
"title": "Netscape may sell all or part"
},
{
"url": "https://slashdot.org/story/98/02/05/001700/free-software-gains-36-million-new-users-almost",
"title": "Free software gains 36 million new users (almost)"
},
{
"url": "https://slashdot.org/story/98/02/05/000000/ceti-setback",
"title": "CETI setback"
},
{
"url": "https://slashdot.org/story/98/02/04/211100/worthwhile-web-site",
"title": "Worthwhile Web Site"
},
{
"url": "https://slashdot.org/story/98/02/04/165500/kempin-profile",
"title": "Kempin Profile"
},
{
"url": "https://games.slashdot.org/story/98/02/04/144800/girls-games",
"title": "Girls' games"
},
{
"url": "https://slashdot.org/story/98/02/04/142300/bill-gates-takes-pie",
"title": "Bill Gates Takes Pie"
},
{
"url": "https://tech.slashdot.org/story/98/02/04/130800/single-chip-pc",
"title": "Single chip PC"
},
{
"url": "https://news.slashdot.org/story/98/02/04/123400/not-just-interns",
"title": "Not just interns"
},
{
"url": "https://news.slashdot.org/story/98/02/04/101400/slashdot-publicity",
"title": "Slashdot Publicity"
},
{
"url": "https://news.slashdot.org/story/98/02/04/095600/mark-kilgard-disappears",
"title": "Mark Kilgard Disappears"
},
{
"url": "https://news.slashdot.org/story/98/02/04/095100/microsoft-and-ibm-similiarities",
"title": "Microsoft and IBM Similiarities"
},
{
"url": "https://linux.slashdot.org/story/98/02/04/093900/how-many-linux-boxes-are-there",
"title": "How Many Linux Boxes Are There?"
},
{
"url": "https://news.slashdot.org/story/98/02/04/093200/important-article-for-unix",
"title": "Important Article For Unix"
},
{
"url": "https://linux.slashdot.org/story/98/02/04/092200/cool-platforms-for-linux",
"title": "Cool Platforms For Linux"
},
{
"url": "https://news.slashdot.org/story/98/02/04/090300/commerece-tightens-exports",
"title": "Commerece tightens exports"
},
{
"url": "https://linux.slashdot.org/story/98/02/04/071700/linux-2185-released",
"title": "Linux 2.1.85 Released"
},
{
"url": "https://slashdot.org/story/98/02/03/163000/piracy-legal-in-argentina",
"title": "Piracy legal in Argentina"
},
{
"url": "https://it.slashdot.org/story/98/02/03/162300/rsa-to-do-cable-encryption",
"title": "RSA to do Cable encryption"
},
{
"url": "https://slashdot.org/story/98/02/03/161700/rhapsody-relegated-to-server-division",
"title": "Rhapsody relegated to server division"
},
{
"url": "https://tech.slashdot.org/story/98/02/03/160700/qualcomm-licenses-pilot",
"title": "Qualcomm Licenses Pilot"
},
{
"url": "https://tech.slashdot.org/story/98/02/03/145000/wristwatch-phones",
"title": "WristWatch Phones"
},
{
"url": "https://it.slashdot.org/story/98/02/03/144600/hotmail-takes-on-spammers",
"title": "Hotmail Takes on Spammers"
},
{
"url": "https://slashdot.org/story/98/02/03/143900/37th-mersenne-prime-number-found",
"title": "37th Mersenne Prime Number Found"
},
{
"url": "https://slashdot.org/story/98/02/03/125700/opera-v3-review",
"title": "Opera v3 review"
},
{
"url": "https://tech.slashdot.org/story/98/02/03/115600/netscapes-faq",
"title": "Netscape's FAQ"
},
{
"url": "https://news.slashdot.org/story/98/02/03/115400/cool-amd-news",
"title": "Cool AMD News"
},
{
"url": "https://slashdot.org/story/98/02/03/115300/digitalcompaq-and-wintel",
"title": "Digital/Compaq and Wintel"
},
{
"url": "https://slashdot.org/story/98/02/03/114600/domain-name-refunds",
"title": "Domain Name Refunds?"
},
{
"url": "https://tech.slashdot.org/story/98/02/03/114200/computers-restore-sex-drive",
"title": "Computers Restore Sex Drive!"
},
{
"url": "https://yro.slashdot.org/story/98/02/03/084000/lessig-dropped-from-ms-case",
"title": "Lessig dropped from MS Case"
},
{
"url": "https://linux.slashdot.org/story/98/02/02/205500/debian-satellites",
"title": "Debian Satellites"
},
{
"url": "https://news.slashdot.org/story/98/02/02/204600/spa-vs-ms",
"title": "SPA vs. MS"
},
{
"url": "https://slashdot.org/story/98/02/02/200900/ethical-hackers",
"title": "Ethical Hackers!"
},
{
"url": "https://linux.slashdot.org/story/98/02/02/200800/zummy-passes-turing-test",
"title": "Zummy Passes Turing Test"
},
{
"url": "https://slashdot.org/story/98/02/02/194800/microsoft-subpeona",
"title": "Microsoft Subpeona"
},
{
"url": "https://news.slashdot.org/story/98/02/02/182700/slashdot-opens-up-to-advertisers",
"title": "Slashdot Opens Up To Advertisers"
},
{
"url": "https://slashdot.org/story/98/02/02/175200/death-of-mips",
"title": "Death of MIPS?"
},
{
"url": "https://slashdot.org/story/98/02/02/160600/more-industry-consolidation",
"title": "More industry consolidation"
},
{
"url": "https://slashdot.org/story/98/02/02/155500/rodney-matthews-returns",
"title": "Rodney Matthews returns"
},
{
"url": "https://news.slashdot.org/story/98/02/02/151300/universal-to-make-cgi-films-and-effects",
"title": "Universal to make CGI Films and Effects"
},
{
"url": "https://tech.slashdot.org/story/98/02/02/145800/tom-christiansen-on-netscape",
"title": "Tom Christiansen on Netscape"
},
{
"url": "https://slashdot.org/story/98/02/02/142900/states-subpoena-ms",
"title": "States subpoena MS"
},
{
"url": "https://tech.slashdot.org/story/98/02/02/132100/new-wine",
"title": "New Wine"
},
{
"url": "https://slashdot.org/story/98/02/02/131900/gimporg-contest",
"title": "Gimp.org Contest"
},
{
"url": "https://linux.slashdot.org/story/98/02/02/131700/more-linux-t-shirts",
"title": "More Linux T-Shirts"
},
{
"url": "https://tech.slashdot.org/story/98/02/02/131000/new-york-times-on-netscape",
"title": "New York Times on Netscape"
},
{
"url": "https://slashdot.org/story/98/02/02/130800/1000mhz-alphas",
"title": "1000Mhz Alpha's?"
},
{
"url": "https://games.slashdot.org/story/98/02/02/092000/linux-quake-logo-contest",
"title": "Linux Quake Logo Contest"
},
{
"url": "https://slashdot.org/story/98/02/02/091200/free-software-special",
"title": "Free Software special"
},
{
"url": "https://slashdot.org/story/98/02/02/090900/bills-driveway",
"title": "Bill's Driveway"
},
{
"url": "https://slashdot.org/story/98/02/01/163800/sun-on-digitalcompaq",
"title": "Sun on Digital/Compaq"
},
{
"url": "https://tech.slashdot.org/story/98/02/01/115100/kde3-released",
"title": "KDE3 Released"
},
{
"url": "https://linux.slashdot.org/story/98/02/01/114200/infoworld-gives-linux-awards",
"title": "InfoWorld Gives Linux Awards"
},
{
"url": "https://slashdot.org/story/98/02/01/112200/several-ms-tidbits",
"title": "Several MS Tidbits"
},
{
"url": "https://slashdot.org/story/98/02/01/110800/dns-rerouting",
"title": "DNS Rerouting"
},
{
"url": "https://slashdot.org/story/98/02/01/004500/watermark-washing",
"title": "Watermark washing"
},
{
"url": "https://slashdot.org/story/98/02/01/003600/butterflies-help-cool-overheated-chips",
"title": "Butterflies help cool overheated chips"
},
{
"url": "https://news.slashdot.org/story/98/01/30/233000/2020-party",
"title": "20/20 Party"
},
{
"url": "https://linux.slashdot.org/story/98/01/30/211400/linux-2184-released",
"title": "Linux 2.1.84 Released"
},
{
"url": "https://slashdot.org/story/98/01/30/203700/beware-the-click-of-death",
"title": "Beware! The click of death!"
},
{
"url": "https://linux.slashdot.org/story/98/01/30/190200/linux-2183-released",
"title": "Linux 2.1.83 Released"
},
{
"url": "https://it.slashdot.org/story/98/01/30/161600/aclu-defends-spam",
"title": "ACLU Defends Spam"
},
{
"url": "https://games.slashdot.org/story/98/01/30/150800/dune-2-is-back",
"title": "Dune 2 is back"
},
{
"url": "https://slashdot.org/story/98/01/30/134400/forbes-on-intel",
"title": "Forbes on Intel"
},
{
"url": "https://linux.slashdot.org/story/98/01/30/133800/linux-publicity-in-ireland",
"title": "Linux Publicity in Ireland"
},
{
"url": "https://slashdot.org/story/98/01/30/131700/wired-and-gnu",
"title": "Wired and GNU"
},
{
"url": "https://slashdot.org/story/98/01/30/105600/senate-investigating-microsoft",
"title": "Senate Investigating Microsoft"
},
{
"url": "https://slashdot.org/story/98/01/30/105300/aol-a-cracker-target",
"title": "AOL a Cracker Target"
},
{
"url": "https://slashdot.org/story/98/01/30/105100/us-plans-to-privatize-the-net",
"title": "US Plans to Privatize the Net"
},
{
"url": "https://news.slashdot.org/story/98/01/30/090800/slashdot-simulcast-tonight",
"title": "Slashdot Simulcast Tonight!"
},
{
"url": "https://news.slashdot.org/story/98/01/30/090500/amiga-is-back",
"title": "Amiga is Back?"
},
{
"url": "https://slashdot.org/story/98/01/30/090200/gates-to-give-a-billion-to-the-un",
"title": "Gates to Give a Billion to the UN"
},
{
"url": "https://tech.slashdot.org/story/98/01/30/090000/the-future-of-netscape-source",
"title": "The Future of Netscape Source"
},
{
"url": "https://news.slashdot.org/story/98/01/30/083400/feds-extend-credit",
"title": "Feds extend credit"
},
{
"url": "https://slashdot.org/story/98/01/29/232000/is-that-cpu-really-compatible-with-the-x86-standard",
"title": "Is that CPU really compatible with the x86 standard?"
},
{
"url": "https://news.slashdot.org/story/98/01/29/193000/future-of-slashdot-part-2",
"title": "Future of Slashdot (Part 2)"
},
{
"url": "https://developers.slashdot.org/story/98/01/29/184700/freeing-up-java",
"title": "Freeing up Java"
},
{
"url": "https://tech.slashdot.org/story/98/01/29/183800/tim-oreilly-on-ns-source",
"title": "Tim O'Reilly on NS Source"
},
{
"url": "https://tech.slashdot.org/story/98/01/29/172600/new-windowmaker",
"title": "New WindowMaker"
},
{
"url": "https://slashdot.org/story/98/01/29/160100/poetic-justice",
"title": "Poetic Justice"
},
{
"url": "https://slashdot.org/story/98/01/29/150500/bestbuy-drops-macs",
"title": "BestBuy drops Macs"
},
{
"url": "https://slashdot.org/story/98/01/29/122000/quake-2-security-risk",
"title": "Quake 2 security risk"
},
{
"url": "https://news.slashdot.org/story/98/01/29/111900/the-future-of-slashdot-very-important",
"title": "The Future of Slashdot (Very Important!)"
},
{
"url": "https://tech.slashdot.org/story/98/01/29/111400/netscape-mirrors-newsgroups",
"title": "Netscape Mirrors Newsgroups"
},
{
"url": "https://games.slashdot.org/story/98/01/29/111100/linux-descent-running",
"title": "Linux Descent Running"
},
{
"url": "https://news.slashdot.org/story/98/01/29/110900/difference-engine-to-be-built",
"title": "Difference Engine to be Built!"
},
{
"url": "https://news.slashdot.org/story/98/01/28/223100/os2windows-converter",
"title": "OS2/Windows Converter?"
},
{
"url": "https://slashdot.org/story/98/01/28/222000/internet-raytracing-competition",
"title": "Internet Raytracing Competition"
},
{
"url": "https://slashdot.org/story/98/01/28/221600/nanotech-website",
"title": "Nanotech Website"
},
{
"url": "https://tech.slashdot.org/story/98/01/28/171300/amd-makes-cuts",
"title": "AMD Makes Cuts"
},
{
"url": "https://slashdot.org/story/98/01/28/161400/bill-gates-loses-temper",
"title": "Bill Gates loses Temper"
},
{
"url": "https://games.slashdot.org/story/98/01/28/145000/atari-arise-from-your-grave",
"title": "Atari, Arise from Your Grave!"
},
{
"url": "https://news.slashdot.org/story/98/01/28/144400/sperm-and-net",
"title": "Sperm and Net"
},
{
"url": "https://slashdot.org/story/98/01/28/144000/mucho-microsoft",
"title": "Mucho Microsoft"
},
{
"url": "https://linux.slashdot.org/story/98/01/28/143300/msnbc-on-linux",
"title": "MSNBC on Linux?"
},
{
"url": "https://news.slashdot.org/story/98/01/28/143100/corel-bases-nc-on-linux-and-arm",
"title": "Corel bases NC on Linux and ARM"
},
{
"url": "https://news.slashdot.org/story/98/01/28/135900/egghead-to-close-stores",
"title": "Egghead to close stores"
},
{
"url": "https://news.slashdot.org/story/98/01/28/092600/cool-prequel-news",
"title": "Cool Prequel News"
},
{
"url": "https://slashdot.org/story/98/01/28/084700/slashdots-mascot",
"title": "Slashdot's Mascot"
},
{
"url": "https://tech.slashdot.org/story/98/01/27/224500/enlightenment-themes-vote",
"title": "Enlightenment Themes Vote"
},
{
"url": "https://linux.slashdot.org/story/98/01/27/223400/quicktime-lifting-tux",
"title": "Quicktime Lifting Tux?"
},
{
"url": "https://slashdot.org/story/98/01/27/222500/phrack-52-hits-the-net",
"title": "Phrack 52 Hits The Net"
},
{
"url": "https://slashdot.org/story/98/01/27/221500/domain-naming-part-2",
"title": "Domain Naming Part 2"
},
{
"url": "https://apple.slashdot.org/story/98/01/27/220900/macos-81-bonds-with-ie4",
"title": "MacOS 8.1 Bonds With IE4"
},
{
"url": "https://tech.slashdot.org/story/98/01/27/181200/dvorak-on-netscape",
"title": "Dvorak On Netscape"
},
{
"url": "https://linux.slashdot.org/story/98/01/27/180400/stampede",
"title": "Stampede"
},
{
"url": "https://tech.slashdot.org/story/98/01/27/163400/lucent-5x-fiber-optics",
"title": "Lucent 5x fiber optics"
},
{
"url": "https://slashdot.org/story/98/01/27/155300/sega-and-microsoft-teaming-up",
"title": "Sega and Microsoft Teaming Up"
},
{
"url": "https://slashdot.org/story/98/01/27/152100/lego-adds-chips-to-old-blocks",
"title": "Lego adds chips to old blocks"
},
{
"url": "https://news.slashdot.org/story/98/01/27/132700/maes-slow",
"title": "MAEs slow"
},
{
"url": "https://slashdot.org/story/98/01/27/132500/digital-goes-with-nt",
"title": "Digital goes with NT"
},
{
"url": "https://slashdot.org/story/98/01/27/111600/seeking-microsoft-booklet",
"title": "Seeking Microsoft Booklet"
},
{
"url": "https://it.slashdot.org/story/98/01/27/111200/bovine-keeps-going",
"title": "Bovine Keeps Going"
},
{
"url": "https://news.slashdot.org/story/98/01/27/110500/free-source-has-little-value",
"title": "Free Source Has Little Value"
},
{
"url": "https://news.slashdot.org/story/98/01/27/103300/compaq-to-buy-dec",
"title": "Compaq to buy DEC"
},
{
"url": "https://developers.slashdot.org/story/98/01/26/215800/sun-announces-partnership",
"title": "Sun Announces Partnership"
},
{
"url": "https://slashdot.org/story/98/01/26/215200/intel-releases-deschutes",
"title": "Intel Releases Deschutes"
},
{
"url": "https://linux.slashdot.org/story/98/01/26/211500/linux-2182",
"title": "Linux 2.1.82"
},
{
"url": "https://games.slashdot.org/story/98/01/26/110200/new-xmame",
"title": "New Xmame"
},
{
"url": "https://linux.slashdot.org/story/98/01/26/094300/redhat-to-include-navigator",
"title": "RedHat to Include Navigator"
},
{
"url": "https://slashdot.org/story/98/01/26/093200/realaudio-rambling",
"title": "RealAudio Rambling"
},
{
"url": "https://slashdot.org/story/98/01/26/092300/dejanews-upgrade",
"title": "DejaNews Upgrade"
},
{
"url": "https://slashdot.org/story/98/01/26/091600/new-gimp",
"title": "New Gimp"
},
{
"url": "https://slashdot.org/story/98/01/25/224400/decay-of-apple",
"title": "Decay of Apple"
},
{
"url": "https://games.slashdot.org/story/98/01/25/002000/descent-source-released",
"title": "Descent Source Released"
},
{
"url": "https://developers.slashdot.org/story/98/01/25/103100/netscape-backs-off-java",
"title": "Netscape Backs Off Java"
},
{
"url": "https://slashdot.org/story/98/01/25/002001/marc-andreessen-rebutts-claims-of-imminent-ruin",
"title": "Marc Andreessen rebutts claims of imminent ruin."
},
{
"url": "https://linux.slashdot.org/story/98/01/23/220000/linux-2181",
"title": "Linux 2.1.81"
},
{
"url": "https://tech.slashdot.org/story/98/01/23/165300/interesting-netscape-writeup",
"title": "Interesting Netscape Writeup"
},
{
"url": "https://news.slashdot.org/story/98/01/23/154200/charging-your-pilot",
"title": "Charging Your Pilot"
},
{
"url": "https://linux.slashdot.org/story/98/01/23/145500/atlanta-linux-showcase",
"title": "Atlanta Linux Showcase"
},
{
"url": "https://slashdot.org/story/98/01/23/135900/microsoft-in-more-hot-water",
"title": "Microsoft in More Hot Water"
},
{
"url": "https://news.slashdot.org/story/98/01/23/135600/slashdot-headaches",
"title": "Slashdot Headaches"
},
{
"url": "https://tech.slashdot.org/story/98/01/23/105000/openscapeorg-opens-doors",
"title": "Openscape.org Opens Doors"
},
{
"url": "https://linux.slashdot.org/story/98/01/23/101400/debian-at-linuxexpo",
"title": "Debian at LinuxExpo"
},
{
"url": "https://tech.slashdot.org/story/98/01/23/100600/sgi-chooses-new-ceo",
"title": "SGI Chooses New CEO"
},
{
"url": "https://slashdot.org/story/98/01/23/100500/microsoft-and-british-telco",
"title": "Microsoft and British Telco"
},
{
"url": "https://yro.slashdot.org/story/98/01/22/120700/msdoj-settle",
"title": "MS/DOJ Settle"
},
{
"url": "https://tech.slashdot.org/story/98/01/22/120500/netscape-gpls-navigator",
"title": "Netscape GPLs Navigator!"
},
{
"url": "https://news.slashdot.org/story/98/01/22/111600/slashdot-content-stolen",
"title": "Slashdot Content Stolen"
},
{
"url": "https://news.slashdot.org/story/98/01/22/093200/eyeglass-monitors",
"title": "Eyeglass Monitors"
},
{
"url": "https://slashdot.org/story/98/01/22/093000/new-gnome",
"title": "New Gnome"
},
{
"url": "https://it.slashdot.org/story/98/01/22/084000/slashdots-des2-efforts",
"title": "Slashdot's Des2 Efforts"
},
{
"url": "https://slashdot.org/story/98/01/22/083500/ms-in-the-news",
"title": "MS in the news"
},
{
"url": "https://news.slashdot.org/story/98/01/22/083100/programming-for-baby",
"title": "Programming for Baby"
},
{
"url": "https://tech.slashdot.org/story/98/01/22/011500/battle-of-the-supercomputers",
"title": "Battle of the Supercomputers"
},
{
"url": "https://games.slashdot.org/story/98/01/21/095300/riven-scores-big",
"title": "Riven Scores Big"
},
{
"url": "https://slashdot.org/story/98/01/21/095100/dosback-with-a-vengence",
"title": "Dos:Back With a Vengence"
},
{
"url": "https://slashdot.org/story/98/01/21/084500/new-gtk",
"title": "New GTK"
},
{
"url": "https://slashdot.org/story/98/01/21/070000/ssh-update",
"title": "ssh update"
},
{
"url": "https://news.slashdot.org/story/98/01/21/011600/programming-at-old-folks-home",
"title": "Programming at Old Folks Home"
},
{
"url": "https://slashdot.org/story/98/01/20/114200/company-we-love-to-hate",
"title": "Company We Love To Hate"
},
{
"url": "https://it.slashdot.org/story/98/01/20/113600/more-spam-wars",
"title": "More Spam Wars"
},
{
"url": "https://tech.slashdot.org/story/98/01/20/113200/more-netscape-5-buzz",
"title": "More Netscape 5 Buzz"
},
{
"url": "https://linux.slashdot.org/story/98/01/20/101600/linux-2180-released",
"title": "Linux 2.1.80 Released"
},
{
"url": "https://slashdot.org/story/98/01/20/083800/lessig-defends-self",
"title": "Lessig defends self"
},
{
"url": "https://tech.slashdot.org/story/98/01/20/072500/teleportation-anyone",
"title": "Teleportation Anyone?"
},
{
"url": "https://slashdot.org/story/98/01/20/072000/new-bandwidth-options",
"title": "New Bandwidth Options"
},
{
"url": "https://news.slashdot.org/story/98/01/20/071400/more-tamagochi-news",
"title": "More Tamagochi News"
},
{
"url": "https://linux.slashdot.org/story/98/01/19/113100/linus-gains-recognition",
"title": "Linus Gains Recognition"
},
{
"url": "https://slashdot.org/story/98/01/19/094400/microsofts-acquisitions",
"title": "Microsoft's Acquisitions"
},
{
"url": "https://tech.slashdot.org/story/98/01/19/091900/netscape-5-rumours",
"title": "Netscape 5 Rumours"
},
{
"url": "https://linux.slashdot.org/story/98/01/19/091500/redhat-gets-more-pr",
"title": "RedHat Gets More PR"
},
{
"url": "https://it.slashdot.org/story/98/01/19/091200/clintons-new-crypto-diplomat",
"title": "Clinton's new Crypto Diplomat"
},
{
"url": "https://tech.slashdot.org/story/98/01/19/091100/new-e-already-released",
"title": "New E Already Released"
},
{
"url": "https://slashdot.org/story/98/01/19/090900/us-needs-programmers",
"title": "US Needs Programmers"
},
{
"url": "https://news.slashdot.org/story/98/01/18/124000/faster-modems",
"title": "Faster Modems?"
},
{
"url": "https://developers.slashdot.org/story/98/01/18/123700/java-applet-kills-95",
"title": "Java Applet Kills 95"
},
{
"url": "https://slashdot.org/story/98/01/18/123500/digital-cuts-alpha-prices",
"title": "Digital Cuts Alpha Prices"
},
{
"url": "https://slashdot.org/story/98/01/18/121400/deschuetes-to-come-out",
"title": "Deschuetes to Come Out"
},
{
"url": "https://news.slashdot.org/story/98/01/18/114800/1st-part-of-space-station-ready",
"title": "1st part of space station ready"
},
{
"url": "https://slashdot.org/story/98/01/18/071300/ms-and-wise-guy-defense",
"title": "MS and Wise Guy Defense"
},
{
"url": "https://tech.slashdot.org/story/98/01/18/071301/new-e-relase",
"title": "New E Relase"
},
{
"url": "https://tech.slashdot.org/story/98/01/18/042400/eplus-dr9-released",
"title": "ePlus DR9 Released"
},
{
"url": "https://linux.slashdot.org/story/98/01/17/122300/linux-expo-updates",
"title": "Linux Expo Updates"
},
{
"url": "https://slashdot.org/story/98/01/17/122000/dns-security-being-addressed",
"title": "DNS Security Being Addressed"
},
{
"url": "https://slashdot.org/story/98/01/17/121800/gore-staffer-website-illegal",
"title": "Gore Staffer Website Illegal?"
},
{
"url": "https://slashdot.org/story/98/01/16/121600/dns-reforms",
"title": "DNS Reforms?"
},
{
"url": "https://it.slashdot.org/story/98/01/16/103500/bovine-des2-underway",
"title": "Bovine DES2 Underway"
},
{
"url": "https://tech.slashdot.org/story/98/01/16/103400/directsync-released",
"title": "DirectSync Released"
},
{
"url": "https://yro.slashdot.org/story/98/01/16/095700/the-biased-judge",
"title": "The Biased Judge"
},
{
"url": "https://news.slashdot.org/story/98/01/16/095300/hd-makers-hurt",
"title": "HD Makers Hurt"
},
{
"url": "https://slashdot.org/story/98/01/16/095000/intels-new-ad-campaign",
"title": "Intel's New Ad Campaign"
},
{
"url": "https://slashdot.org/story/98/01/16/035200/choosing-ie-might-cost-you",
"title": "Choosing IE might cost you.."
},
{
"url": "https://news.slashdot.org/story/98/01/16/022900/insiders-not-hackers",
"title": "Insiders not Hackers"
},
{
"url": "https://apple.slashdot.org/story/98/01/16/011100/apple-makes-a-profit",
"title": "Apple Makes a Profit"
},
{
"url": "https://tech.slashdot.org/story/98/01/15/120700/netscape-the-gpl-cont",
"title": "Netscape & the GPL Cont."
},
{
"url": "https://linux.slashdot.org/story/98/01/15/115200/rhad-contest",
"title": "RHAD Contest"
},
{
"url": "https://news.slashdot.org/story/98/01/15/114400/wire-your-cat",
"title": "Wire Your Cat!"
},
{
"url": "https://slashdot.org/story/98/01/15/113600/microsoft-and-cgi",
"title": "Microsoft and CGI"
},
{
"url": "https://slashdot.org/story/98/01/15/112900/intel-at-500mhz",
"title": "Intel at 500Mhz"
},
{
"url": "https://news.slashdot.org/story/98/01/15/112700/sun-reinforces-sparc",
"title": "Sun Reinforces Sparc"
},
{
"url": "https://linux.slashdot.org/story/98/01/15/112500/new-linux-security-holes",
"title": "New Linux Security Holes"
},
{
"url": "https://linux.slashdot.org/story/98/01/15/112300/tucols-opens-doors",
"title": "TUCOLS Opens Doors"
},
{
"url": "https://slashdot.org/story/98/01/15/083100/mmx2katmai1999",
"title": "MMX2=Katmai=1999"
},
{
"url": "https://slashdot.org/story/98/01/14/123500/caldera-throws-down-gloves",
"title": "Caldera Throws Down Gloves"
},
{
"url": "https://linux.slashdot.org/story/98/01/14/121800/redhat-and-the-superbowl",
"title": "RedHat and the SuperBowl"
},
{
"url": "https://news.slashdot.org/story/98/01/14/104700/gcc-28-released",
"title": "GCC 2.8 Released"
},
{
"url": "https://it.slashdot.org/story/98/01/14/025300/fun-new-ie-hole",
"title": "Fun New IE Hole"
},
{
"url": "https://slashdot.org/story/98/01/14/024900/navy-dismisses-gay-aoler",
"title": "Navy Dismisses Gay AOLer"
},
{
"url": "https://linux.slashdot.org/story/98/01/13/111200/new-kernel",
"title": "New Kernel"
},
{
"url": "https://it.slashdot.org/story/98/01/13/110300/bovine-vs-des",
"title": "Bovine vs. DES"
},
{
"url": "https://tech.slashdot.org/story/98/01/13/110200/netscape-laying-off-employees",
"title": "Netscape Laying Off Employees"
},
{
"url": "https://slashdot.org/story/98/01/13/105600/redhat-chooses-gnome",
"title": "RedHat chooses Gnome!"
},
{
"url": "https://slashdot.org/story/98/01/13/094100/japan-inspects-ms",
"title": "Japan inspects MS"
},
{
"url": "https://slashdot.org/story/98/01/13/065600/fortune-magazine-polls",
"title": "Fortune Magazine Polls"
},
{
"url": "https://yro.slashdot.org/story/98/01/13/065100/another-msdoj-story",
"title": "Another MS/DOJ Story"
},
{
"url": "https://news.slashdot.org/story/98/01/13/064900/software-and-monopolies",
"title": "Software and Monopolies"
},
{
"url": "https://slashdot.org/story/98/01/13/031700/ftc-wont-block-ct-acquisition",
"title": "FTC won't block C&T Acquisition"
},
{
"url": "https://tech.slashdot.org/story/98/01/13/030100/super-lcds-coming",
"title": "Super LCDs Coming"
},
{
"url": "https://news.slashdot.org/story/98/01/12/122100/implantable-computers",
"title": "Implantable Computers"
},
{
"url": "https://slashdot.org/story/98/01/12/093300/gimp-contest-winners-announced",
"title": "Gimp Contest Winners Announced"
},
{
"url": "https://tech.slashdot.org/story/98/01/12/085000/simple-solutions-slashdot-editorial",
"title": "Simple Solutions (Slashdot Editorial)"
},
{
"url": "https://tech.slashdot.org/story/98/01/12/083800/no-more-pc-tv-for-compaq",
"title": "No more PC-TV for Compaq"
},
{
"url": "https://news.slashdot.org/story/98/01/12/033700/sun-introduces-new-line",
"title": "Sun introduces new line"
},
{
"url": "https://slashdot.org/story/98/01/11/105700/aicn-under-fire",
"title": "AICN Under Fire"
},
{
"url": "https://slashdot.org/story/98/01/11/072200/ms-and-temp-employees",
"title": "MS and Temp Employees"
},
{
"url": "https://slashdot.org/story/98/01/11/065800/tci-surprise-ms",
"title": "TCI Surprise!-MS"
},
{
"url": "https://linux.slashdot.org/story/98/01/10/102700/linux-affecting-ms-sales",
"title": "Linux Affecting MS Sales?"
},
{
"url": "https://linux.slashdot.org/story/98/01/10/102200/bonk-and-linux-plugs",
"title": "Bonk and Linux Plugs"
},
{
"url": "https://slashdot.org/story/98/01/10/101600/sun-snags-tci",
"title": "Sun Snags TCI"
},
{
"url": "https://slashdot.org/story/98/01/10/013800/microsoft-scanning-ip-space",
"title": "Microsoft Scanning IP Space"
},
{
"url": "https://it.slashdot.org/story/98/01/09/123700/teardrop-spinoffs-terrorize",
"title": "Teardrop Spinoffs Terrorize"
},
{
"url": "https://slashdot.org/story/98/01/09/122900/intel-releases-266-pentium",
"title": "Intel Releases 266 Pentium"
},
{
"url": "https://slashdot.org/story/98/01/09/032400/tci-and-microsoft",
"title": "TCI And Microsoft"
},
{
"url": "https://linux.slashdot.org/story/98/01/09/021400/new-version-of-mindseye",
"title": "New Version of MindsEye"
},
{
"url": "https://tech.slashdot.org/story/98/01/09/020900/ie-takes-the-lead",
"title": "IE Takes the Lead?"
},
{
"url": "https://linux.slashdot.org/story/98/01/09/020600/byte-and-the-non-death-of-unix",
"title": "Byte and the Non-Death of Unix"
},
{
"url": "https://slashdot.org/story/98/01/08/113300/smurf-attacks",
"title": "Smurf Attacks"
},
{
"url": "https://slashdot.org/story/98/01/08/113100/microsoft-cars",
"title": "Microsoft Cars"
},
{
"url": "https://news.slashdot.org/story/98/01/08/112700/virtual-pets-replaced",
"title": "Virtual Pets Replaced"
},
{
"url": "https://slashdot.org/story/98/01/08/105300/yahoo-invests-in-audionet",
"title": "Yahoo invests in AudioNet"
},
{
"url": "https://news.slashdot.org/story/98/01/08/093100/slashdot-user-abuse",
"title": "Slashdot User Abuse"
},
{
"url": "https://slashdot.org/story/98/01/08/091500/be-uses-gimp-plugins",
"title": "Be Uses Gimp Plugins"
},
{
"url": "https://linux.slashdot.org/story/98/01/08/045200/redhat-vs-nt",
"title": "RedHat vs. NT"
},
{
"url": "https://yro.slashdot.org/story/98/01/08/044900/ms-apologizes-to-doj",
"title": "MS Apologizes to DOJ"
},
{
"url": "https://slashdot.org/story/98/01/08/014300/microsoft-releases-gryphon",
"title": "Microsoft Releases Gryphon"
},
{
"url": "https://slashdot.org/story/98/01/08/012400/news-from-the-legal-front",
"title": "News From the Legal Front"
},
{
"url": "https://tech.slashdot.org/story/98/01/08/012100/fingerprint-scanner-in-your-monitor",
"title": "Fingerprint scanner in your monitor"
},
{
"url": "https://slashdot.org/story/98/01/07/104600/gnome-updates",
"title": "GNOME Updates"
},
{
"url": "https://news.slashdot.org/story/98/01/07/084800/new-powerpc-chips",
"title": "New PowerPC Chips"
},
{
"url": "https://slashdot.org/story/98/01/07/084600/digitals-merced-unix",
"title": "Digital's Merced Unix"
},
{
"url": "https://slashdot.org/story/98/01/07/080100/microsoft-selling-win98-beta",
"title": "Microsoft Selling Win98 Beta"
},
{
"url": "https://news.slashdot.org/story/98/01/07/044200/fcc-reconsiders-telco-pleas",
"title": "FCC reconsiders Telco Pleas"
},
{
"url": "https://linux.slashdot.org/story/98/00/00/0396/more-linux-press",
"title": "More Linux Press"
},
{
"url": "https://news.slashdot.org/story/98/01/07/010400/sbc-buying-snet",
"title": "SBC buying SNET"
},
{
"url": "https://linux.slashdot.org/story/98/01/06/122100/january-linux-gazette",
"title": "January Linux Gazette"
},
{
"url": "https://slashdot.org/story/98/01/06/121500/apache-still-reigns",
"title": "Apache Still Reigns"
},
{
"url": "https://yro.slashdot.org/story/98/01/06/121300/biased-experts-on-ms-case",
"title": "Biased Experts on MS Case"
},
{
"url": "https://tech.slashdot.org/story/98/01/06/120600/netscape-hurts",
"title": "Netscape Hurts"
},
{
"url": "https://linux.slashdot.org/story/98/01/06/115400/ggi-updates",
"title": "GGI Updates"
},
{
"url": "https://tech.slashdot.org/story/98/01/06/114300/socket-1-hard-drives",
"title": "Socket 1 Hard Drives?"
},
{
"url": "https://slashdot.org/story/98/01/06/112900/new-way-to-blow-stuff-up-under-linux",
"title": "New Way To Blow Stuff Up Under Linux!"
},
{
"url": "https://tech.slashdot.org/story/98/01/06/073600/vcr-as-backup-device",
"title": "VCR as backup device?"
},
{
"url": "https://games.slashdot.org/story/98/01/06/063200/quake-ii-for-linux",
"title": "Quake II For Linux"
},
{
"url": "https://news.slashdot.org/story/98/01/06/061700/slashdot-bug-fixes",
"title": "Slashdot Bug Fixes"
},
{
"url": "https://tech.slashdot.org/story/98/01/06/035800/compaq-amd-woo-vendors",
"title": "Compaq, AMD, Woo Vendors"
},
{
"url": "https://slashdot.org/story/98/01/06/033700/union-calls-worldcom-merger-anticompetitive",
"title": "Union Calls WorldCom Merger Anticompetitive"
},
{
"url": "https://slashdot.org/story/98/01/06/030600/umax-licenses-beos",
"title": "UMAX licenses BeOS"
},
{
"url": "https://slashdot.org/story/98/01/06/015200/apples-back-in-black",
"title": "Apple's Back in Black"
},
{
"url": "https://slashdot.org/story/98/01/05/095400/suns-silliness",
"title": "Sun's Silliness"
},
{
"url": "https://slashdot.org/story/98/01/05/094900/gimp-contest",
"title": "Gimp Contest"
},
{
"url": "https://linux.slashdot.org/story/98/01/05/093300/linux-2178-released",
"title": "Linux 2.1.78 Released"
},
{
"url": "https://tech.slashdot.org/story/98/01/05/090900/q4-loss-for-netscape",
"title": "Q4 loss for Netscape"
},
{
"url": "https://it.slashdot.org/story/98/01/05/084300/crypto-perspective",
"title": "Crypto Perspective"
},
{
"url": "https://linux.slashdot.org/story/98/01/05/075500/redhat-review",
"title": "RedHat Review"
},
{
"url": "https://linux.slashdot.org/story/98/01/05/040900/redhat-to-provide-phone-help",
"title": "RedHat To Provide Phone Help"
},
{
"url": "https://linux.slashdot.org/story/98/01/04/023800/linux-in-sunworld",
"title": "Linux in Sunworld"
},
{
"url": "https://linux.slashdot.org/story/98/01/04/023300/vi-vs-emacs-to-be-settled",
"title": "VI vs. EMACS to be Settled!"
},
{
"url": "https://slashdot.org/story/98/01/04/023100/new-gimp-gtk",
"title": "New Gimp & GTK"
},
{
"url": "https://it.slashdot.org/story/98/01/03/114400/email-posters-back-down",
"title": "Email Posters Back Down"
},
{
"url": "https://games.slashdot.org/story/98/01/03/114200/linux-game-coders-wanted",
"title": "Linux Game Coders Wanted"
},
{
"url": "https://slashdot.org/story/98/01/03/113800/new-line-of-suns",
"title": "New Line of Suns"
},
{
"url": "https://linux.slashdot.org/story/98/01/03/082000/linux-for-non-geeks",
"title": "Linux for Non-Geeks"
},
{
"url": "https://slashdot.org/story/98/01/03/081600/ms-pro-and-con",
"title": "MS Pro and Con"
},
{
"url": "https://news.slashdot.org/story/98/01/03/122800/transmeta-news",
"title": "Transmeta News"
},
{
"url": "https://linux.slashdot.org/story/98/01/03/103000/linuxfocus-zine",
"title": "LinuxFocus 'zine"
},
{
"url": "https://hardware.slashdot.org/story/98/01/02/102300/pilot-c-compiler",
"title": "Pilot C Compiler"
},
{
"url": "https://apple.slashdot.org/story/98/01/02/101700/jobs-and-ellison-prank",
"title": "Job's And Ellison Prank"
},
{
"url": "https://slashdot.org/story/98/01/02/101100/more-sites-hacked",
"title": "More Sites Hacked"
},
{
"url": "https://slashdot.org/story/98/01/03/085200/linux-2177",
"title": "Linux 2.1.77"
},
{
"url": "https://slashdot.org/story/98/01/03/051300/microsoft-investing-1billion-in-tci",
"title": "Microsoft investing $1Billion in TCI"
},
{
"url": "https://slashdot.org/story/98/01/01/074400/is-unix-stable",
"title": "Is UNIX Stable?"
},
{
"url": "https://tech.slashdot.org/story/98/01/01/040000/30-terraflops-coming-soon",
"title": "30 Terraflops Coming Soon"
},
{
"url": "https://news.slashdot.org/story/98/01/01/034700/baby-bells-deregulated",
"title": "Baby Bells Deregulated"
},
{
"url": "https://games.slashdot.org/story/98/01/01/012500/quake2com-hacked",
"title": "Quake2.com Hacked"
},
{
"url": "https://slashdot.org/story/98/01/01/012000/become-007-on-the-internet",
"title": "Become 007 On The Internet"
}
]
This file has been truncated, but you can view the full file.
[
{
"url": "https://news.slashdot.org/story/99/12/31/1758243/end-of-the-world",
"title": "End of the World"
},
{
"url": "https://ask.slashdot.org/story/99/12/28/1622239/bringing-e-com-sites-down-for-y2k",
"title": "Bringing E-Com Sites Down for Y2K?"
},
{
"url": "https://ask.slashdot.org/story/99/12/28/1518259/motivating-the-non-paid-help",
"title": "Motivating the Non-Paid Help"
},
{
"url": "https://news.slashdot.org/story/99/12/31/1513203/audi-pulls-website-because-of-y2k",
"title": "Audi Pulls Website Because Of Y2K"
},
{
"url": "https://news.slashdot.org/story/99/12/23/1446234/sacrifice-of-fools",
"title": "Sacrifice of Fools"
},
{
"url": "https://tech.slashdot.org/story/99/12/31/1030242/interview-the-l0pht-answers",
"title": "Interview: The L0pht Answers"
},
{
"url": "https://news.slashdot.org/story/99/12/31/0910248/berst-names-youngtorvalds-2-of-7-people-to-watch",
"title": "Berst Names Young/Torvalds 2 of 7 People to Watch"
},
{
"url": "https://slashdot.org/story/99/12/31/0933254/gateway-sells-rights-to-amiga-name",
"title": "Gateway Sells Rights to Amiga Name"
},
{
"url": "https://features.slashdot.org/story/99/12/29/165255/the-timekeeper",
"title": "The Timekeeper"
},
{
"url": "https://tech.slashdot.org/story/99/12/31/1029224/new-body-scanners-installed-in-airports",
"title": "New Body Scanners Installed In Airports"
},
{
"url": "https://slashdot.org/story/99/12/31/0919221/where-oh-where-has-cihostcom-gone",
"title": "Where, Oh Where has Cihost.com Gone?"
},
{
"url": "https://news.slashdot.org/story/99/12/30/093239/new-years-resolutions-from-assorted-nutcases",
"title": "New Years Resolutions From Assorted Nutcases"
},
{
"url": "https://news.slashdot.org/story/99/12/31/087258/boris-yeltsin-resigns",
"title": "Boris Yeltsin Resigns"
},
{
"url": "https://news.slashdot.org/story/99/12/31/0757254/y2k-rollover---post-your-experiences-here",
"title": "Y2K Rollover - Post Your Experiences Here!"
},
{
"url": "https://apple.slashdot.org/story/99/12/30/1732229/apples-os-9-fix-creates-new-problems",
"title": "Apple's OS 9 Fix Creates New Problems"
},
{
"url": "https://slashdot.org/story/99/12/31/0045256/fcc-relaxes-entrance-to-ham-radio",
"title": "FCC Relaxes Entrance To Ham Radio"
},
{
"url": "https://slashdot.org/story/99/12/30/2333254/citificom-denies-alternate-browser-access",
"title": "Citifi.com Denies Alternate Browser Access"
},
{
"url": "https://ask.slashdot.org/story/99/12/30/1011218/when-does-y2k-begin",
"title": "When Does Y2K Begin?"
},
{
"url": "https://science.slashdot.org/story/99/12/30/1532223/hazards-of-genetic-engineering",
"title": "Hazards of Genetic Engineering"
},
{
"url": "https://slashdot.org/story/99/12/30/1025221/laptop-pentium-iiis",
"title": "Laptop Pentium IIIs"
},
{
"url": "https://linux.slashdot.org/story/99/12/30/1127217/forrester-report-linux-hysteria-will-fade-in-2000",
"title": "Forrester Report: Linux Hysteria Will Fade In 2000"
},
{
"url": "https://ask.slashdot.org/story/99/12/28/1537252/what-is-the-best-isdn-solution",
"title": "What is the Best ISDN Solution?"
},
{
"url": "https://yro.slashdot.org/story/99/12/30/1216217/dvd-recap",
"title": "DVD Recap"
},
{
"url": "https://ask.slashdot.org/story/99/12/28/1445244/on-keeping-geeks-in-a-metropolitan-area",
"title": "On Keeping Geeks in a Metropolitan Area"
},
{
"url": "https://yro.slashdot.org/story/99/12/30/1159249/etoy-its-not-over-yet",
"title": "Etoy: It's Not Over Yet"
},
{
"url": "https://linux.slashdot.org/story/99/12/30/107223/the-linux-newbie-replies-wfm",
"title": "The Linux Newbie Replies: WFM?"
},
{
"url": "https://slashdot.org/story/99/12/30/0910227/beneath-the-surface-of-the-world-wide-web",
"title": "Beneath the Surface of the World Wide Web"
},
{
"url": "https://slashdot.org/story/99/12/30/1240229/compaq-offers-free-beowulf-test-drives",
"title": "Compaq Offers Free Beowulf Test Drives"
},
{
"url": "https://slashdot.org/story/99/12/30/108214/the-geek-compound-prepares-for-y2k",
"title": "The Geek Compound Prepares for Y2k"
},
{
"url": "https://news.slashdot.org/story/99/12/29/1552215/review-man-on-the-moon",
"title": "Review: Man On The Moon"
},
{
"url": "https://science.slashdot.org/story/99/12/30/0816206/hubble-producing-data-again",
"title": "Hubble Producing Data Again"
},
{
"url": "https://linux.slashdot.org/story/99/12/30/0819251/yet-another-linux-driver-petition",
"title": "Yet Another Linux Driver Petition"
},
{
"url": "https://slashdot.org/story/99/12/29/2244206/server-uptimes-ranked",
"title": "Server Uptimes Ranked"
},
{
"url": "https://developers.slashdot.org/story/99/12/29/2236226/java-success-stories",
"title": "Java Success Stories"
},
{
"url": "https://yro.slashdot.org/story/99/12/29/2232252/yahoo-sued-for-4-billion-over-access-to-user-info",
"title": "Yahoo sued for $4 billion over access to user info"
},
{
"url": "https://news.slashdot.org/story/99/12/29/2019219/dvd-hearing-victory-we-won---for-now",
"title": "DVD Hearing Victory: We Won - For Now"
},
{
"url": "https://science.slashdot.org/story/99/12/29/1551231/toxic-waste-consuming-bacteria",
"title": "Toxic-Waste Consuming Bacteria"
},
{
"url": "https://hardware.slashdot.org/story/99/12/29/190257/user-review-of-omnisky-wireless-service-for-palm-v",
"title": "User Review of OmniSky Wireless service for Palm V"
},
{
"url": "https://yro.slashdot.org/story/99/12/29/1538212/etoys-drops-lawsuit-against-etoy",
"title": "eToys Drops Lawsuit Against eToy"
},
{
"url": "https://yro.slashdot.org/story/99/12/29/1122217/etoy-update",
"title": "Etoy Update"
},
{
"url": "https://ask.slashdot.org/story/99/12/28/1514216/wireless-networks-in-metropolitan-areas",
"title": "Wireless Networks in Metropolitan Areas?"
},
{
"url": "https://ask.slashdot.org/story/99/12/28/1435242/geeks-geek-issues-and-voting",
"title": "Geeks, Geek Issues and Voting"
},
{
"url": "https://news.slashdot.org/story/99/12/29/1119254/the-20th-century-loser-style",
"title": "The 20th Century: Loser Style"
},
{
"url": "https://news.slashdot.org/story/99/12/29/0855247/life-day-celebration",
"title": "Life Day Celebration"
},
{
"url": "https://news.slashdot.org/story/99/12/27/1752206/holiday-movie-thread",
"title": "Holiday Movie Thread"
},
{
"url": "https://slashdot.org/story/99/12/29/1054256/inprise-considering-open-sourcing-interbase",
"title": "Inprise Considering Open Sourcing InterBase"
},
{
"url": "https://news.slashdot.org/story/99/12/29/1017231/dvd-hearing-today---are-you-ready-to-rumble",
"title": "DVD Hearing Today - Are You Ready to Rumble?"
},
{
"url": "https://slashdot.org/story/99/12/23/1435232/informatica-10-access-to-the-best-tools-for-masteringthe-information-age",
"title": "Informatica 1.0: Access to the Best Tools for Masteringthe Information Age"
},
{
"url": "https://apple.slashdot.org/story/99/12/29/086256/apples-response-to-denial-of-service",
"title": "Apple's Response to \"Denial of Service\""
},
{
"url": "https://linux.slashdot.org/story/99/12/29/0757233/debian-plans-for-freeze-potato-release",
"title": "Debian Plans for Freeze, Potato Release"
},
{
"url": "https://tech.slashdot.org/story/99/12/28/2044228/miguel-de-icaza-named-innovator-of-the-year",
"title": "Miguel de Icaza Named 'Innovator of the Year'"
},
{
"url": "https://yro.slashdot.org/story/99/12/28/2212220/no-permission-necessary-to-record-chat",
"title": "No Permission Necessary to Record Chat"
},
{
"url": "https://news.slashdot.org/story/99/12/28/2024218/yahoo-keeps-offering-real-fox-now-allows-linux",
"title": "Yahoo Keeps Offering Real; Fox Now Allows Linux"
},
{
"url": "https://linux.slashdot.org/story/99/12/29/0012236/red-caps-adopt-red-hat",
"title": "Red Caps Adopt Red Hat"
},
{
"url": "https://slashdot.org/story/99/12/28/1441209/children-turn-on-santa",
"title": "Children Turn On Santa"
},
{
"url": "https://tech.slashdot.org/story/99/12/28/1352237/netscape-1994-time-capsule",
"title": "Netscape 1994 Time Capsule"
},
{
"url": "https://slashdot.org/story/99/12/28/1729233/msft-thanks-linux-programmer-for-paying-35-fee",
"title": "MSFT thanks Linux Programmer for paying $35 Fee"
},
{
"url": "https://science.slashdot.org/story/99/12/28/1321240/quantum-computation-in-brain-microtubules",
"title": "Quantum computation in Brain Microtubules"
},
{
"url": "https://apple.slashdot.org/story/99/12/28/146258/mac-os9-flood-attack",
"title": "Mac OS9 Flood Attack"
},
{
"url": "https://games.slashdot.org/story/99/12/28/154257/linux-unreal-tournament-status-update",
"title": "Linux Unreal Tournament Status Update"
},
{
"url": "https://ask.slashdot.org/story/99/12/28/1439225/quieting-those-fans",
"title": "Quieting those Fans"
},
{
"url": "https://slashdot.org/story/99/12/28/109224/intel-pentium-iii-500e-cpu-and-550e-fc-pga-review",
"title": "Intel Pentium III 500E CPU and 550E FC-PGA Review"
},
{
"url": "https://linux.slashdot.org/story/99/12/28/1420219/us-army-needs-linux-workstation-advice",
"title": "US Army Needs Linux Workstation Advice"
},
{
"url": "https://yro.slashdot.org/story/99/12/28/120251/fda-to-regulate-internet-drug-sales",
"title": "FDA to Regulate Internet Drug Sales"
},
{
"url": "https://news.slashdot.org/story/99/12/28/1156202/dvorak-on-winners-and-duds-of-the-millennium",
"title": "Dvorak on \"Winners and Duds of the Millennium\""
},
{
"url": "https://yro.slashdot.org/story/99/12/28/0814212/swedish-court-clears-teen-for-linking-to-mp3s",
"title": "Swedish Court Clears Teen for Linking to MP3s"
},
{
"url": "https://slashdot.org/story/99/12/28/0958233/photos-from-wearable-computer-fashion-show",
"title": "Photos From Wearable Computer Fashion Show"
},
{
"url": "https://news.slashdot.org/story/99/12/28/0936247/movie-reviewsgalaxyquest",
"title": "Movie Reviews:GalaxyQuest"
},
{
"url": "https://slashdot.org/story/99/12/28/0946225/compaq-alpha-is-better-than-ia-64",
"title": "Compaq: Alpha is Better Than IA-64"
},
{
"url": "https://science.slashdot.org/story/99/12/28/087206/science-in-1999",
"title": "Science in 1999"
},
{
"url": "https://apple.slashdot.org/story/99/12/28/0752207/apple-posts-darwin--open-source-news",
"title": "Apple Posts Darwin / Open Source News"
},
{
"url": "https://it.slashdot.org/story/99/12/27/194216/dvd-cca-applies-for-restraining-order",
"title": "DVD CCA Applies for Restraining Order"
},
{
"url": "https://bsd.slashdot.org/story/99/12/27/160237/datacom-on-freebsd-33",
"title": "Data.com on FreeBSD 3.3"
},
{
"url": "https://tech.slashdot.org/story/99/12/27/1510218/icewm-100-released",
"title": "IceWM 1.0.0 released"
},
{
"url": "https://slashdot.org/story/99/12/27/1026250/pcweek-on-the-influence-of-the-pc-and-the-internet",
"title": "PCWeek on the Influence of the PC and the Internet"
},
{
"url": "https://bsd.slashdot.org/story/99/12/27/106207/why-is-bsd-not-as-popular-as-linux",
"title": "Why is BSD Not As Popular As Linux?"
},
{
"url": "https://linux.slashdot.org/story/99/12/27/1018217/second-bonus-interview-jon-maddog-hall",
"title": "Second \"Bonus\" Interview: Jon \"maddog\" Hall"
},
{
"url": "https://news.slashdot.org/story/99/12/27/1015213/interviews-we-have-2-1st-l0pht-heavy-industries",
"title": "Interviews: We Have 2! 1st, L0pht Heavy Industries"
},
{
"url": "https://games.slashdot.org/story/99/12/27/1127253/esr-on-quake-1-open-source-troubles",
"title": "ESR on Quake 1 Open Source Troubles"
},
{
"url": "https://linux.slashdot.org/story/99/12/27/1125248/linus-one-of-fortunes-people-to-watch-in-2000",
"title": "Linus One of Fortune's \"People to Watch in 2000\""
},
{
"url": "https://news.slashdot.org/story/99/12/23/1419242/lego-mindstorm-book-review",
"title": "LEGO Mindstorm Book Review"
},
{
"url": "https://tech.slashdot.org/story/99/12/27/0843258/xig-releases-commercial-opengl-x-server",
"title": "XIG Releases Commercial OpenGL X-Server"
},
{
"url": "https://linux.slashdot.org/story/99/12/27/0828250/cracklinuxppcorg-cracked",
"title": "Crack.LinuxPPC.org Cracked"
},
{
"url": "https://apple.slashdot.org/story/99/12/27/0831224/multiprocessor-g4s-macworld",
"title": "Multiprocessor G4s @MacWorld"
},
{
"url": "https://yro.slashdot.org/story/99/12/26/2121203/google-patent-pending",
"title": "Google (Patent Pending)"
},
{
"url": "https://ask.slashdot.org/story/99/12/17/2039217/negligence-and-open-source",
"title": "Negligence and Open Source"
},
{
"url": "https://tech.slashdot.org/story/99/12/25/1428252/apache-now-runs-on-over-5-million-sites",
"title": "Apache Now Runs On Over 5 Million Sites"
},
{
"url": "https://games.slashdot.org/story/99/12/26/1255258/open-source-quake-causes-cheating",
"title": "Open Source Quake Causes Cheating?"
},
{
"url": "https://ask.slashdot.org/story/99/12/14/1229216/ergonomic-office-equipment",
"title": "Ergonomic Office Equipment?"
},
{
"url": "https://science.slashdot.org/story/99/12/26/0843240/hubble-repairs-declared-complete-success",
"title": "Hubble Repairs Declared \"Complete Success\""
},
{
"url": "https://science.slashdot.org/story/99/12/26/0130252/albert-einstein---person-of-the-century",
"title": "Albert Einstein - Person of the Century"
},
{
"url": "https://news.slashdot.org/story/99/12/25/2025213/a-christmas-chess-puzzle",
"title": "A Christmas Chess Puzzle"
},
{
"url": "https://science.slashdot.org/story/99/12/25/2023223/50-year-old-quantum-physics-problem-solved",
"title": "50 Year Old Quantum Physics Problem Solved"
},
{
"url": "https://slashdot.org/story/99/12/25/110258/web-server-comparisons",
"title": "Web Server Comparisons"
},
{
"url": "https://slashdot.org/story/99/12/24/1054211/online-gifts-not-there-yet-youre-not-alone",
"title": "Online Gifts Not There Yet? You're Not Alone."
},
{
"url": "https://slashdot.org/story/99/12/25/114201/microsoft-hotmailpassport-service-interruptedupdated",
"title": "Microsoft Hotmail/Passport Service Interrupted:UPDATED"
},
{
"url": "https://science.slashdot.org/story/99/12/25/0740248/uo-scientists-get-funding-for-quantum-logic-gates",
"title": "UO Scientists Get Funding for Quantum Logic Gates"
},
{
"url": "https://linux.slashdot.org/story/99/12/24/0916253/linux-handwriting-recognition",
"title": "Linux Handwriting Recognition"
},
{
"url": "https://slashdot.org/story/99/12/25/0741206/merry-christmas-everyone",
"title": "Merry Christmas Everyone"
},
{
"url": "https://slashdot.org/story/99/12/24/2229248/v2os-under-gpl",
"title": "V2OS under GPL"
},
{
"url": "https://yro.slashdot.org/story/99/12/24/140243/realnetworks-sues-streamboxcom",
"title": "RealNetworks Sues Streambox.com"
},
{
"url": "https://yro.slashdot.org/story/99/12/24/0858242/interview-anti-censorware-activists-answer",
"title": "Interview: Anti-Censorware Activists Answer"
},
{
"url": "https://yro.slashdot.org/story/99/12/23/1522232/the-ip-lawyers-strike-back",
"title": "The IP Lawyers Strike Back"
},
{
"url": "https://slashdot.org/story/99/12/24/1120228/tis-the-season-to-spam",
"title": "Tis the Season to Spam"
},
{
"url": "https://linux.slashdot.org/story/99/12/23/0826222/what-is-linux-missing",
"title": "\"What is Linux Missing?\""
},
{
"url": "https://linux.slashdot.org/story/99/12/24/0111239/opera-beta-released",
"title": "Opera Beta Released"
},
{
"url": "https://science.slashdot.org/story/99/12/23/0817259/hubbles-computers-upgraded",
"title": "Hubble's Computers Upgraded"
},
{
"url": "https://yro.slashdot.org/story/99/12/23/2325200/feed-magazine-commentary-on-patent-insanity",
"title": "Feed Magazine Commentary on Patent Insanity"
},
{
"url": "https://news.slashdot.org/story/99/12/23/1532215/good-bye-q",
"title": "Good Bye Q"
},
{
"url": "https://slashdot.org/story/99/12/23/158241/internetcom-buys-out-linuxstartcom",
"title": "Internet.com Buys Out LinuxStart.com"
},
{
"url": "https://linux.slashdot.org/story/99/12/23/2310231/uk-govt-experts-say-linux-is-secure-windows-not",
"title": "UK Gov't Experts Say Linux is Secure, Windows Not"
},
{
"url": "https://games.slashdot.org/story/99/12/23/1116248/q3a-for-linux-hitting-stores-today",
"title": "Q3A for Linux Hitting Stores Today"
},
{
"url": "https://tech.slashdot.org/story/99/12/23/1311212/the-obsessed-inventor-of-the-paper-computer",
"title": "The Obsessed Inventor of the Paper Computer"
},
{
"url": "https://slashdot.org/story/99/12/23/1131209/the-upcoming-linuxone-ipo",
"title": "The Upcoming LinuxOne IPO"
},
{
"url": "https://yro.slashdot.org/story/99/12/23/1255224/aclu-sues-fbi-justice-dept-over-y2k-flick",
"title": "ACLU Sues FBI, Justice Dept Over Y2K Flick"
},
{
"url": "https://linux.slashdot.org/story/99/12/23/1113235/the-masslinux-disappearance-explained",
"title": "The MassLinux Disappearance Explained"
},
{
"url": "https://developers.slashdot.org/story/99/12/23/0821251/rms-on-java-and-gpl",
"title": "RMS on Java and GPL"
},
{
"url": "https://news.slashdot.org/story/99/12/21/0928219/gates-of-fire",
"title": "Gates of Fire"
},
{
"url": "https://news.slashdot.org/story/99/12/23/083256/a-quiet-adult-my-candidate-for-man-of-the-century",
"title": "A Quiet Adult: My Candidate for Man of the Century"
},
{
"url": "https://news.slashdot.org/story/99/12/23/087244/star-wars-tpm-not-on-dvd-in-2000",
"title": "Star Wars: TPM NOT on DVD in 2000"
},
{
"url": "https://slashdot.org/story/99/12/23/0839215/shredder",
"title": "Shredder!"
},
{
"url": "https://slashdot.org/story/99/12/23/0754204/on-the-linux-culture-and-money",
"title": "On The Linux Culture and Money"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/1921248/tax-software-for-linux",
"title": "Tax Software for Linux?"
},
{
"url": "https://tech.slashdot.org/story/99/12/22/224232/wireless-keyboard-without-the-keyboard",
"title": "Wireless Keyboard... Without The Keyboard"
},
{
"url": "https://yro.slashdot.org/story/99/12/22/1956249/uspto-takes-second-look-at-y2k-windowing-patent",
"title": "USPTO Takes Second Look at Y2K Windowing Patent"
},
{
"url": "https://slashdot.org/story/99/12/22/2148256/1970s-star-wars-christmas-special-reviewed",
"title": "1970s Star Wars Christmas Special Reviewed"
},
{
"url": "https://yro.slashdot.org/story/99/12/22/2353203/efa-moves-website-to-usa",
"title": "EFA Moves Website to USA"
},
{
"url": "https://linux.slashdot.org/story/99/12/22/2111218/386-based-linux-powered-telephone",
"title": "386 Based Linux Powered Telephone"
},
{
"url": "https://slashdot.org/story/99/12/22/189227/online-journal-publisher-raided-by-police",
"title": "Online Journal Publisher Raided by Police"
},
{
"url": "https://news.slashdot.org/story/99/12/22/1027219/roger-waters-to-create-new-album",
"title": "Roger Waters To Create New Album"
},
{
"url": "https://slashdot.org/story/99/12/22/1711203/apachemodssl-vs-apache-ssl-",
"title": "Apache+mod_ssl vs Apache-SSl ?"
},
{
"url": "https://science.slashdot.org/story/99/12/22/109245/physics-fraud-or-ground-breaking-science",
"title": "Physics Fraud or Ground-Breaking Science?"
},
{
"url": "https://yro.slashdot.org/story/99/12/22/1336217/epic-criticizes-top-100-sites-privacy",
"title": "EPIC Criticizes Top 100 Sites' Privacy"
},
{
"url": "https://tech.slashdot.org/story/99/12/22/1339229/cool-personal-robots",
"title": "Cool Personal Robots"
},
{
"url": "https://linux.slashdot.org/story/99/12/22/144241/mandrake-70-beta-ready-for-download",
"title": "Mandrake 7.0-Beta Ready for Download"
},
{
"url": "https://slashdot.org/story/99/12/22/1238217/cutting-back-blows-goats",
"title": "Cutting Back Blows Goats"
},
{
"url": "https://linux.slashdot.org/story/99/12/22/1059238/realtime-linux-workshop-in-vienna",
"title": "Realtime Linux Workshop in Vienna"
},
{
"url": "https://features.slashdot.org/story/99/12/21/138231/pick-your-own-net-person-of-the-year",
"title": "Pick Your Own Net Person Of The Year"
},
{
"url": "https://news.slashdot.org/story/99/12/22/1050258/rumoured-dvd-release-of-episode-one-in-april-2000",
"title": "Rumoured DVD Release of Episode One in April, 2000"
},
{
"url": "https://news.slashdot.org/story/99/12/21/0921212/the-physics-of-christmas",
"title": "The Physics of Christmas"
},
{
"url": "https://hardware.slashdot.org/story/99/12/22/0856220/color-palms-to-debut-in-february",
"title": "Color Palms to Debut in February?"
},
{
"url": "https://news.slashdot.org/story/99/12/21/1914208/life-after-y2k---mtvs-adams-and-eves",
"title": "Life After Y2K - MTV's 'Adams and Eves'"
},
{
"url": "https://ask.slashdot.org/story/99/12/17/2011222/who-enforces-the-open-source-licenses",
"title": "Who Enforces the Open Source Licenses?"
},
{
"url": "https://slashdot.org/story/99/12/21/2351205/compaq-fortran-for-linux-alpha-released",
"title": "Compaq Fortran for Linux Alpha Released"
},
{
"url": "https://slashdot.org/story/99/12/21/197240/study-says-25-of-online-transactions-go-wrong",
"title": "Study Says 25% of Online Transactions Go Wrong"
},
{
"url": "https://slashdot.org/story/99/12/21/1937206/ms-tells-how-to-delete-linux-install-nt-or-win2k",
"title": "MS Tells How to Delete Linux, Install NT or Win2K"
},
{
"url": "https://games.slashdot.org/story/99/12/21/2210251/quake-1-gpled",
"title": "Quake 1 GPL'ed"
},
{
"url": "https://linux.slashdot.org/story/99/12/21/1618217/lwn-does-year-in-review-for-linux",
"title": "LWN Does Year in Review for Linux"
},
{
"url": "https://yro.slashdot.org/story/99/12/21/1535219/priceline-expedia-patent-battle-heats-up",
"title": "Priceline & Expedia Patent Battle Heats Up"
},
{
"url": "https://science.slashdot.org/story/99/12/21/1239207/brightest-moon-fallacy",
"title": "Brightest Moon Fallacy"
},
{
"url": "https://yro.slashdot.org/story/99/12/21/1333222/cnn-misrepresenting-etoy-vs-etoys-battle",
"title": "CNN Misrepresenting etoy vs. etoys Battle?"
},
{
"url": "https://news.slashdot.org/story/99/12/21/112253/tales-from-the-bazaar",
"title": "Tales From The Bazaar"
},
{
"url": "https://news.slashdot.org/story/99/12/21/097256/extreme-programming-explained",
"title": "Extreme Programming Explained"
},
{
"url": "https://hardware.slashdot.org/story/99/12/16/1758230/outdoor-computer-cases",
"title": "Outdoor Computer Cases?"
},
{
"url": "https://linux.slashdot.org/story/99/12/21/0841242/hp-still-porting-linux-to-64-bit-pa-risc",
"title": "HP Still Porting Linux to 64 bit PA RISC"
},
{
"url": "https://tech.slashdot.org/story/99/12/21/0854254/mozilla-m12-released",
"title": "Mozilla M12 Released"
},
{
"url": "https://linux.slashdot.org/story/99/12/21/0813246/tivo-source-code-released",
"title": "Tivo Source Code Released"
},
{
"url": "https://news.slashdot.org/story/99/12/20/2239224/abc-tv-does-two-major-cracker-stories",
"title": "ABC TV Does Two Major Cracker Stories"
},
{
"url": "https://yro.slashdot.org/story/99/12/20/0120218/cfp2000",
"title": "CFP2000"
},
{
"url": "https://slashdot.org/story/99/12/20/2113239/behold-the-lizardman",
"title": "Behold the Lizardman"
},
{
"url": "https://news.slashdot.org/story/99/12/20/2049215/yahoo-broadcastcom-dumping-real-audio-for-ms",
"title": "Yahoo & Broadcast.com Dumping Real Audio for MS"
},
{
"url": "https://bsd.slashdot.org/story/99/12/15/176200/freebsd-34-released",
"title": "FreeBSD 3.4 released"
},
{
"url": "https://slashdot.org/story/99/12/20/1443202/zhirinovsky-to-send-viruses-to-the-west",
"title": "Zhirinovsky to \"Send Viruses to the West\""
},
{
"url": "https://it.slashdot.org/story/99/12/20/1431223/thawte-bought-by-verisign",
"title": "Thawte Bought by Verisign"
},
{
"url": "https://bsd.slashdot.org/story/99/12/15/1711235/intel-using-freebsd",
"title": "Intel using FreeBSD"
},
{
"url": "https://slashdot.org/story/99/12/20/1259231/new-yorker-accidentally-gets-1m-webtv-prototype",
"title": "New Yorker Accidentally Gets $1M WebTV Prototype"
},
{
"url": "https://news.slashdot.org/story/99/12/12/1618253/review---bicentennial-man",
"title": "Review - Bicentennial Man"
},
{
"url": "https://slashdot.org/story/99/12/20/1041254/intel-snags-pc-mhz-crown-back-from-amd",
"title": "Intel Snags PC Mhz Crown Back From AMD"
},
{
"url": "https://slashdot.org/story/99/12/20/1331233/compaq-signs-license-with-be-for-net-appliance",
"title": "Compaq Signs License with Be for Net Appliance"
},
{
"url": "https://slashdot.org/story/99/12/20/101242/red-hat-stock-splitting",
"title": "Red Hat Stock Splitting"
},
{
"url": "https://yro.slashdot.org/story/99/12/20/1210201/interview-two-censorware-experts",
"title": "Interview: Two Censorware Experts"
},
{
"url": "https://yro.slashdot.org/story/99/12/20/1138251/wired-on-amazoncom-boycott",
"title": "Wired on Amazon.com Boycott"
},
{
"url": "https://science.slashdot.org/story/99/12/20/080247/discovery-launched-hubble-to-be-repaired-soon",
"title": "Discovery Launched, Hubble to be repaired soon"
},
{
"url": "https://slashdot.org/story/99/12/20/0759253/brunching-shuttlecocks-findings-on-microsoft-case",
"title": "Brunching Shuttlecocks' Findings on Microsoft Case"
},
{
"url": "https://slashdot.org/story/99/12/19/1943230/north-carolina-tries-to-tax-online-purchases",
"title": "North Carolina Tries to Tax Online Purchases"
},
{
"url": "https://ask.slashdot.org/story/99/12/15/0152257/the-usps-selling-zip-codes-or-public-information",
"title": "The USPS-Selling Zip Codes or Public Information?"
},
{
"url": "https://tech.slashdot.org/story/99/12/20/0119236/subdermal-implant-can-be-tracked-via-gps",
"title": "Subdermal Implant Can Be Tracked via GPS"
},
{
"url": "https://news.slashdot.org/story/99/12/19/1931233/james-bonds-q-dies",
"title": "James Bond's 'Q' Dies"
},
{
"url": "https://bsd.slashdot.org/story/99/12/15/179206/microsoft-looking-for-freebsd-skills",
"title": "Microsoft looking for FreeBSD Skills"
},
{
"url": "https://news.slashdot.org/story/99/12/19/1119250/rms-the-coder",
"title": "RMS The Coder"
},
{
"url": "https://news.slashdot.org/story/99/12/19/1111207/jeff-bezos-named-time-person-of-the-year",
"title": "Jeff Bezos Named Time Person of the Year"
},
{
"url": "https://slashdot.org/story/99/12/19/0729248/australian-net-god-refuses-to-profit-from-ipo",
"title": "Australian 'Net God' Refuses to Profit From IPO"
},
{
"url": "https://science.slashdot.org/story/99/12/18/2340212/nasa-launches-terra-satellite",
"title": "NASA Launches Terra Satellite"
},
{
"url": "https://ask.slashdot.org/story/99/12/18/1255214/configuring-monitors-in-x",
"title": "Configuring Monitors in X"
},
{
"url": "https://tech.slashdot.org/story/99/12/18/2144240/aibo-gets-competition-necs-r100",
"title": "Aibo Gets Competition: NEC's R100"
},
{
"url": "https://news.slashdot.org/story/99/12/18/2141256/digital-movie-projection-can-it-live-up-to-the-hype",
"title": "Digital Movie Projection: Can It Live Up To The Hype?"
},
{
"url": "https://slashdot.org/story/99/12/18/2137228/geek-horoscopes",
"title": "Geek Horoscopes"
},
{
"url": "https://news.slashdot.org/story/99/12/18/1046232/brazilian-govt-may-pass-pro-free-software-law",
"title": "Brazilian Gov't May Pass Pro-Free Software Law"
},
{
"url": "https://slashdot.org/story/99/12/18/116221/vendetta-a-christmas-story",
"title": "Vendetta: A Christmas Story"
},
{
"url": "https://slashdot.org/story/99/12/18/0925224/corel-sues-us-department-of-labour",
"title": "Corel Sues U.S. Department of Labour"
},
{
"url": "https://ask.slashdot.org/story/99/12/17/2049204/testing-linux-and-open-source-for-y2k",
"title": "Testing Linux and Open Source for Y2K"
},
{
"url": "https://slashdot.org/story/99/12/18/106258/s390-support-is-now-on-kernel-22",
"title": "S/390 Support is Now on Kernel 2.2"
},
{
"url": "https://ask.slashdot.org/story/99/12/17/2044208/celeron-466---good-or-bad",
"title": "Celeron 466 - Good Or Bad?"
},
{
"url": "https://ask.slashdot.org/story/99/12/17/2030227/where-can-i-find-keyboard-reviews",
"title": "Where Can I Find Keyboard Reviews?"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/1947225/unified-instant-messaging-clients",
"title": "Unified Instant Messaging Clients?"
},
{
"url": "https://games.slashdot.org/story/99/12/17/235211/brazil-bans-doom-duke-nukem-and-4-other-games",
"title": "Brazil Bans Doom, Duke Nukem and 4 Other Games"
},
{
"url": "https://science.slashdot.org/story/99/12/17/2119227/sex-in-space",
"title": "Sex in Space"
},
{
"url": "https://tech.slashdot.org/story/99/12/17/2034248/win-an-aibo",
"title": "Win an AIBO"
},
{
"url": "https://ask.slashdot.org/story/99/12/17/2022239/why-do-ext2-files-become-corrupt-so-often",
"title": "Why do ext2 Files Become Corrupt so Often?"
},
{
"url": "https://ask.slashdot.org/story/99/12/17/2019229/why-are-faxes-low-speed",
"title": "Why are Faxes Low Speed?"
},
{
"url": "https://yro.slashdot.org/story/99/12/17/1410254/mit-profs-get-into-patent-fray-with-askjeeves",
"title": "MIT Profs Get Into Patent Fray with AskJeeves"
},
{
"url": "https://slashdot.org/story/99/12/17/0042226/megiddo-the-fbi-is-apparently-serious-about-y2k",
"title": "Megiddo: The FBI is Apparently Serious About Y2K"
},
{
"url": "https://news.slashdot.org/story/99/12/17/1243229/canadian-cd-levy-announced",
"title": "Canadian CD Levy Announced"
},
{
"url": "https://slashdot.org/story/99/12/17/118248/rip-masslinux",
"title": "RIP Masslinux?"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/1926205/what-video-card-best-supports-xfree86-40",
"title": "What Video Card best Supports Xfree86-4.0"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/1916225/getting-a-handspring-visor-to-work-w-linux",
"title": "Getting a HandSpring Visor to Work w/ Linux"
},
{
"url": "https://news.slashdot.org/story/99/12/17/0927212/interview-brian-paul-answers",
"title": "Interview: Brian Paul Answers"
},
{
"url": "https://slashdot.org/story/99/12/17/1148259/creative-corel-to-team-for-more-linux-audiovideo",
"title": "Creative & Corel To Team For More Linux Audio/Video"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/1912230/managing-make-for-large-projects",
"title": "Managing 'make' for Large Projects"
},
{
"url": "https://slashdot.org/story/99/12/17/1012205/high-tech-paradise-lost-living-in-the-valley",
"title": "High Tech Paradise Lost: Living in The Valley"
},
{
"url": "https://features.slashdot.org/story/99/12/09/1745257/seattle-postscript",
"title": "Seattle Postscript"
},
{
"url": "https://tech.slashdot.org/story/99/12/17/0857243/why-linux-won-where-java-failed",
"title": "Why Linux won Where Java Failed"
},
{
"url": "https://linux.slashdot.org/story/99/12/16/1935217/is-scsi-sub-par-under-linux",
"title": "Is SCSI Sub-Par Under Linux?"
},
{
"url": "https://games.slashdot.org/story/99/12/17/0034234/the-making-of-quake-iii---and-the-building-of-id",
"title": "The Making of Quake III - and the Building of id"
},
{
"url": "https://news.slashdot.org/story/99/12/16/2343214/13-domain-name-registration",
"title": "$13 Domain Name Registration"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/203211/are-all-lcd-monitors-compatible-with-linux",
"title": "Are all LCD Monitors Compatible with Linux?"
},
{
"url": "https://slashdot.org/story/99/12/16/0953224/cable-companies-debate-open-access",
"title": "Cable Companies Debate Open Access"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/197222/picking-a-good-product-name",
"title": "Picking a Good Product Name"
},
{
"url": "https://tech.slashdot.org/story/99/12/16/142236/the-future-of-gnome",
"title": "The Future of GNOME"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/1748215/good-countries-for-geeks",
"title": "\"Good\" Countries for Geeks?"
},
{
"url": "https://slashdot.org/story/99/12/16/1741211/be-another-red-hat-takeover-rumour",
"title": "Be: Another Red Hat Takeover Rumour"
},
{
"url": "https://ask.slashdot.org/story/99/12/16/1650236/open-source-and-state-of-the-art-algorithms",
"title": "Open Source and State-of-the-Art Algorithms"
},
{
"url": "https://games.slashdot.org/story/99/12/16/0911211/descent-2-source-code-released",
"title": "Descent 2 Source Code Released"
},
{
"url": "https://slashdot.org/story/99/12/16/1438215/the-corporate-burrito",
"title": "The Corporate Burrito"
},
{
"url": "https://slashdot.org/story/99/12/16/1248216/linux-trademark-for-laundry-detergent",
"title": "\"Linux\" Trademark for Laundry Detergent?"
},
{
"url": "https://linux.slashdot.org/story/99/12/16/1136236/corel-and-red-hat-rumors-continue",
"title": "Corel and Red Hat Rumors Continue"
},
{
"url": "https://tech.slashdot.org/story/99/12/16/092257/is-apache-the-next-linux",
"title": "Is Apache the Next Linux?"
},
{
"url": "https://tech.slashdot.org/story/99/12/15/171240/user-interface-borgification-and-compromising-on-a-crossoverpoint",
"title": "User Interface, Borgification and Compromising on a CrossoverPoint"
},
{
"url": "https://apple.slashdot.org/story/99/12/16/0812215/apple-open-sources-netsprockets",
"title": "Apple Open-Sources NetSprockets"
},
{
"url": "https://slashdot.org/story/99/12/16/083252/msn-linux-community",
"title": "MSN Linux Community?!"
},
{
"url": "https://ask.slashdot.org/story/99/12/14/1350251/fingerprint-id-door-locks",
"title": "Fingerprint ID Door Locks?"
},
{
"url": "https://news.slashdot.org/story/99/12/16/0754258/sun-imposes-java-royalty",
"title": "Sun Imposes Java Royalty"
},
{
"url": "https://yro.slashdot.org/story/99/12/16/0748207/nsi-steps-into-the-etoys-vs-etoy-debate",
"title": "NSI Steps Into the eToys vs etoy Debate"
},
{
"url": "https://linux.slashdot.org/story/99/12/16/0616217/adobe-announces-initial-support-for-linux",
"title": "Adobe Announces Initial Support for Linux"
},
{
"url": "https://tech.slashdot.org/story/99/12/15/110205/e-commerce-and-the-e-nvironment",
"title": "E-commerce and the E-nvironment"
},
{
"url": "https://science.slashdot.org/story/99/12/15/127243/mail-from-the-nasa-administrator",
"title": "Mail from the NASA Administrator"
},
{
"url": "https://tech.slashdot.org/story/99/12/15/1623233/kde-krash-released",
"title": "KDE Krash Released"
},
{
"url": "https://slashdot.org/story/99/12/15/1528209/windows2000-goes-gold",
"title": "Windows2000 Goes Gold"
},
{
"url": "https://yro.slashdot.org/story/99/12/15/115221/doj-looking-for-new-target-in-mtv",
"title": "DoJ Looking for New Target in MTV"
},
{
"url": "https://it.slashdot.org/story/99/12/15/1149201/pioneer-releases-dvd-audio-sans-new-encryption",
"title": "Pioneer Releases DVD Audio Sans New Encryption"
},
{
"url": "https://linux.slashdot.org/story/99/12/15/1336257/linus-announces-move-into-pre-24-stage",
"title": "Linus Announces Move into Pre-2.4 Stage"
},
{
"url": "https://ask.slashdot.org/story/99/12/14/1526247/conspiracies-in-the-rechargable-battery-market",
"title": "Conspiracies in the Rechargable Battery Market?"
},
{
"url": "https://features.slashdot.org/story/99/12/14/1221243/eric-dylan-and-mary-of-doom",
"title": "Eric, Dylan and Mary of Doom"
},
{
"url": "https://games.slashdot.org/story/99/12/15/1012248/q3a-demo-released-for-linux",
"title": "Q3A Demo Released For Linux"
},
{
"url": "https://ask.slashdot.org/story/99/12/15/021247/open-source-research",
"title": "Open Source Research"
},
{
"url": "https://news.slashdot.org/story/99/12/15/0943212/european-commission-interested-in-open-source",
"title": "European Commission Interested in Open Source"
},
{
"url": "https://news.slashdot.org/story/99/12/13/1221240/practical-internet-groupware",
"title": "Practical Internet Groupware"
},
{
"url": "https://yro.slashdot.org/story/99/12/15/0932221/bleem-sues-sony",
"title": "Bleem Sues Sony"
},
{
"url": "https://apache.slashdot.org/story/99/12/15/0926237/help-solve-certicoms-ecc-challenge-and-help-asf",
"title": "Help solve Certicom's ECC Challenge and help ASF"
},
{
"url": "https://yro.slashdot.org/story/99/12/15/0820222/patent-law",
"title": "Patent Law"
},
{
"url": "https://ask.slashdot.org/story/99/12/15/0128259/whatever-happened-to-the-new-tlds",
"title": "Whatever Happened to the \"new\" TLD's?"
},
{
"url": "https://slashdot.org/story/99/12/14/2314238/peanuts-creator-retires-strip-to-end-50-year-run",
"title": "\"Peanuts\" Creator Retires, Strip to End 50 Year Run"
},
{
"url": "https://science.slashdot.org/story/99/12/14/239255/existing-spacecraft-to-search-for-mars-polar-lander",
"title": "Existing Spacecraft to Search for Mars Polar Lander"
},
{
"url": "https://ask.slashdot.org/story/99/12/15/0142241/drivers-for-3com-pcmcia-combo-networkmodem-cards",
"title": "Drivers for 3Com PCMCIA \"combo\" network/modem cards"
},
{
"url": "https://ask.slashdot.org/story/99/12/15/0139257/american-express-blue-as-user-authentication",
"title": "American Express Blue as User Authentication?"
},
{
"url": "https://slashdot.org/story/99/12/14/232209/us-asks-crackers-to-lay-low-new-years-eve",
"title": "U.S. Asks Crackers to Lay Low New Year's Eve"
},
{
"url": "https://linux.slashdot.org/story/99/12/14/1953228/matra-to-open-source-their-cad-component-library",
"title": "Matra to open source their CAD component library"
},
{
"url": "https://news.slashdot.org/story/99/12/14/1743220/2nd-annual-free-software-foundation-awards",
"title": "2nd Annual Free Software Foundation Awards"
},
{
"url": "https://science.slashdot.org/story/99/12/14/1216252/scientists-manage-interspecies-birthing",
"title": "Scientists Manage Interspecies Birthing"
},
{
"url": "https://slashdot.org/story/99/12/14/1314215/news-on-pentium-iv",
"title": "News on Pentium IV"
},
{
"url": "https://linux.slashdot.org/story/99/12/14/1453229/linuxcare-gets-32m-in-funding",
"title": "LinuxCare Gets $32M In Funding"
},
{
"url": "https://slashdot.org/story/99/12/14/1448206/sun-will-sell-redhat-61-sparc-version",
"title": "Sun will sell Redhat 6.1 Sparc version"
},
{
"url": "https://hardware.slashdot.org/story/99/12/14/1223226/3com-files-to-spin-palm-division-off-in-ipo",
"title": "3Com Files to Spin Palm Division Off in IPO"
},
{
"url": "https://linux.slashdot.org/story/99/12/14/1111201/wearable-pcs-under-linux",
"title": "Wearable PCs Under Linux"
},
{
"url": "https://news.slashdot.org/story/99/12/14/1159218/security-hole-in-ssh1-with-rsaref",
"title": "Security Hole in SSH1 with RSAREF"
},
{
"url": "https://ask.slashdot.org/story/99/12/14/124235/cheap-tape-drives-for-linux",
"title": "Cheap Tape Drives for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/12/14/1154243/is-the-internet-becoming-unsearchable",
"title": "Is the Internet Becoming Unsearchable?"
},
{
"url": "https://news.slashdot.org/story/99/12/13/126236/cybernauts-awake",
"title": "Cybernauts Awake!"
},
{
"url": "https://yro.slashdot.org/story/99/12/14/0946249/ebay-sues-auction-indexer",
"title": "eBay Sues Auction-Indexer"
},
{
"url": "https://it.slashdot.org/story/99/12/14/100235/suing-the-spammers",
"title": "Suing the Spammers"
},
{
"url": "https://tech.slashdot.org/story/99/12/12/2223219/planet-gattaca",
"title": "Planet Gattaca"
},
{
"url": "https://tech.slashdot.org/story/99/12/14/0944238/gigabyte-modems-over-electric-lines",
"title": "Gigabyte Modems over Electric Lines"
},
{
"url": "https://news.slashdot.org/story/99/12/14/0654258/free-software-foundation-awards-tonight",
"title": "Free Software Foundation Awards Tonight"
},
{
"url": "https://news.slashdot.org/story/99/12/14/0643207/hps-e-speak-source-released-to-public",
"title": "HP's E-Speak Source Released to Public"
},
{
"url": "https://slashdot.org/story/99/12/14/0010257/surgeon-general-says-15-of-americans-are-nuts",
"title": "Surgeon General Says 1/5 of Americans are Nuts"
},
{
"url": "https://slashdot.org/story/99/12/13/2353214/richard-stallman-calls-for-amazon-boycott",
"title": "Richard Stallman Calls for Amazon Boycott"
},
{
"url": "https://news.slashdot.org/story/99/12/13/1328238/joseph-heller-dies-at-76",
"title": "Joseph Heller Dies at 76"
},
{
"url": "https://it.slashdot.org/story/99/12/13/155224/pgp-granted-export-license",
"title": "PGP Granted Export License"
},
{
"url": "https://slashdot.org/story/99/12/13/117216/compaq-samsung-to-invest-500-million-in-alpha",
"title": "Compaq & Samsung to invest $500 million in Alpha"
},
{
"url": "https://slashdot.org/story/99/12/13/0936256/jakob-nielsen-interview",
"title": "Jakob Nielsen Interview"
},
{
"url": "https://ask.slashdot.org/story/99/12/12/1136225/on-trolls-natalie-portman-and-saving-slashdot",
"title": "On Trolls, Natalie Portman, and Saving Slashdot"
},
{
"url": "https://games.slashdot.org/story/99/12/11/1714212/interview-brian-paul-of-mesa-fame",
"title": "Interview: Brian Paul of Mesa Fame"
},
{
"url": "https://slashdot.org/story/99/12/13/1039203/rms-on-esrs-wealth-linus-on-ipos",
"title": "RMS on ESR's Wealth; Linus on IPOs"
},
{
"url": "https://tech.slashdot.org/story/99/12/13/1019219/the-lifeshirt",
"title": "The \"Lifeshirt\""
},
{
"url": "https://news.slashdot.org/story/99/12/13/0943241/slashdots-top-10-hacks-of-all-time",
"title": "Slashdot's Top 10 Hacks of All Time"
},
{
"url": "https://linux.slashdot.org/story/99/12/13/0910235/cosourcecom-bought-by-applix",
"title": "CoSource.com bought by Applix"
},
{
"url": "https://hardware.slashdot.org/story/99/12/13/0859234/ibm-prototypes-200-ppi-lcd",
"title": "IBM Prototypes 200 ppi LCD"
},
{
"url": "https://news.slashdot.org/story/99/12/13/0857209/suck-parodies-slashdot",
"title": "Suck Parodies Slashdot"
},
{
"url": "https://news.slashdot.org/story/99/12/12/114244/next-years-star-wars-lego-sets",
"title": "Next Years Star Wars Lego Sets"
},
{
"url": "https://tech.slashdot.org/story/99/12/12/111228/wristwatch-pda",
"title": "Wristwatch PDA"
},
{
"url": "https://linux.slashdot.org/story/99/12/12/118257/reiserfs-alternative-fs",
"title": "ReiserFS Alternative FS"
},
{
"url": "https://developers.slashdot.org/story/99/12/12/1058226/blackdown-member-resigning",
"title": "Blackdown Member Resigning"
},
{
"url": "https://ask.slashdot.org/story/99/12/12/1158256/transmitting-video-to-every-tv-in-the-home",
"title": "Transmitting Video to Every TV in the Home"
},
{
"url": "https://ask.slashdot.org/story/99/12/12/1157211/open-source-project-names-and-respect",
"title": "Open Source, Project Names and Respect"
},
{
"url": "https://slashdot.org/story/99/12/10/1338237/the-open-source-money-tree-sweet-or-bitter",
"title": "The Open Source Money Tree: Sweet or Bitter?"
},
{
"url": "https://games.slashdot.org/story/99/12/12/0933254/nethack-330-released",
"title": "NetHack 3.3.0 Released"
},
{
"url": "https://slashdot.org/story/99/12/11/2215240/microsoft-looking-for-linux-skills",
"title": "Microsoft Looking for Linux Skills"
},
{
"url": "https://tech.slashdot.org/story/99/12/11/1636229/big-computions-made-faster-by-slower-computer-buying",
"title": "Big Computions Made Faster by Slower Computer Buying?"
},
{
"url": "https://news.slashdot.org/story/99/12/11/2232208/soviet-sub-for-sale",
"title": "Soviet Sub For Sale"
},
{
"url": "https://news.slashdot.org/story/99/12/11/1559210/some-water-sewer-plants-may-not-be-y2k-compliant",
"title": "Some Water & Sewer Plants May Not Be Y2K Compliant"
},
{
"url": "https://science.slashdot.org/story/99/12/11/1615215/life-on-the-moons-of-jupiter",
"title": "Life on the Moons of Jupiter?"
},
{
"url": "https://yro.slashdot.org/story/99/12/11/1051221/australian-govt-censors-censored",
"title": "Australian Gov't Censors Censored"
},
{
"url": "https://news.slashdot.org/story/99/12/11/1155244/nsi-botches-domain-transfer-says-not-our-problem",
"title": "NSI Botches Domain Transfer, Says 'Not Our Problem'"
},
{
"url": "https://yro.slashdot.org/story/99/12/11/1029251/singapore-linking-lawsuit",
"title": "Singapore Linking Lawsuit"
},
{
"url": "https://linux.slashdot.org/story/99/12/11/1124225/bruce-perens-becomes-ceo-of-vc",
"title": "Bruce Perens Becomes CEO of VC"
},
{
"url": "https://slashdot.org/story/99/12/10/2223202/maybe-video-games-dont-make-kids-kill",
"title": "Maybe Video Games Don't Make Kids Kill"
},
{
"url": "https://news.slashdot.org/story/99/12/10/2214247/foxcom-apologizes-to-linux-users",
"title": "FOX.com Apologizes to Linux Users"
},
{
"url": "https://slashdot.org/story/99/12/10/1458253/computer-usage-patterns-in-europe",
"title": "Computer Usage Patterns in Europe"
},
{
"url": "https://linux.slashdot.org/story/99/12/10/1017234/uofm-students-offer-linux-in-protest",
"title": "UofM Students Offer Linux in Protest"
},
{
"url": "https://tech.slashdot.org/story/99/12/10/1412238/reverse-secure-proxy-for-linux--apache",
"title": "Reverse-secure proxy for Linux / Apache?"
},
{
"url": "https://news.slashdot.org/story/99/12/09/1342224/interview-answers-about-blind-computer-use",
"title": "Interview: Answers About Blind Computer Use"
},
{
"url": "https://yro.slashdot.org/story/99/12/10/1043252/are-links-illegal",
"title": "Are Links Illegal?"
},
{
"url": "https://tech.slashdot.org/story/99/12/10/1111223/new-3d-display-without-goggles",
"title": "New 3D Display Without Goggles"
},
{
"url": "https://slashdot.org/story/99/12/10/1039241/sgi-adds-enterprise-support-for-linux",
"title": "SGI adds Enterprise Support for Linux"
},
{
"url": "https://tech.slashdot.org/story/99/12/10/0957240/cringely-and-the-nuon",
"title": "Cringely and The NUON"
},
{
"url": "https://tech.slashdot.org/story/99/12/01/133241/take-the-y2k-pledge",
"title": "Take the Y2K Pledge"
},
{
"url": "https://linux.slashdot.org/story/99/12/08/195214/ext3",
"title": "EXT3?"
},
{
"url": "https://news.slashdot.org/story/99/12/10/0821224/esr-writes-on-surprised-by-wealth",
"title": "ESR Writes on \"Surprised By Wealth\""
},
{
"url": "https://slashdot.org/story/99/12/10/081211/update-on-opera-for-linux",
"title": "Update on Opera for Linux"
},
{
"url": "https://hardware.slashdot.org/story/99/12/09/1926216/linksys-instant-gigadrive--instant-lan-party",
"title": "Linksys Instant Gigadrive = Instant LAN Party"
},
{
"url": "https://news.slashdot.org/story/99/12/09/1158216/david-smith-admits-guilt-in-melissa-virus",
"title": "David Smith Admits Guilt in Melissa virus"
},
{
"url": "https://ask.slashdot.org/story/99/12/10/0041223/weird-places-to-browse-the-web",
"title": "Weird Places to Browse the Web"
},
{
"url": "https://slashdot.org/story/99/12/09/1759225/aol-may-buy-into-indias-aol",
"title": "AOL May Buy Into \"India's AOL\""
},
{
"url": "https://yro.slashdot.org/story/99/12/09/1416256/judge-finds-major-dna-patent-invalid",
"title": "Judge Finds Major DNA Patent Invalid"
},
{
"url": "https://science.slashdot.org/story/99/12/09/1724257/scientists-poised-to-create-life",
"title": "Scientists Poised to Create Life"
},
{
"url": "https://yro.slashdot.org/story/99/12/09/1313225/anonymity-on-the-internet",
"title": "Anonymity on the Internet"
},
{
"url": "https://news.slashdot.org/story/99/12/09/1316243/jwz-on-dealing-with-wrist-pain",
"title": "JWZ on Dealing with Wrist Pain"
},
{
"url": "https://slashdot.org/story/99/12/09/1324204/va-linux-systems-opens-at-300",
"title": "VA Linux Systems Opens at $300"
},
{
"url": "https://slashdot.org/story/99/12/09/1240241/the-geek-toy-vacuum-cleaner",
"title": "The Geek Toy Vacuum Cleaner"
},
{
"url": "https://linux.slashdot.org/story/99/12/09/0941259/alan-moves-from-b3-to-red-hat-uk",
"title": "Alan Moves from B3 to Red Hat UK"
},
{
"url": "https://ask.slashdot.org/story/99/12/08/1919252/what-about-the-artistic-license",
"title": "What about the Artistic License?"
},
{
"url": "https://tech.slashdot.org/story/99/12/09/0815213/open-source-job-at-creative-labs",
"title": "Open Source Job at Creative Labs"
},
{
"url": "https://news.slashdot.org/story/99/12/09/091245/souls-in-the-great-machine",
"title": "Souls in the Great Machine"
},
{
"url": "https://linux.slashdot.org/story/99/12/09/0814259/juggernaut-gpld-search-engine",
"title": "Juggernaut GPLd Search Engine"
},
{
"url": "https://science.slashdot.org/story/99/12/09/0743210/caught-before-the-act",
"title": "Caught Before the Act"
},
{
"url": "https://slashdot.org/story/99/12/09/0810200/att-re-ignites-instant-messaging-war",
"title": "AT&T Re-ignites Instant Messaging War"
},
{
"url": "https://developers.slashdot.org/story/99/12/08/1828216/sun-apologizes-to-blackdown-team",
"title": "Sun Apologizes To Blackdown Team"
},
{
"url": "https://developers.slashdot.org/story/99/12/08/1812235/jbuilder-foundation-is-free---and-for-linux",
"title": "JBuilder Foundation is Free - and for Linux"
},
{
"url": "https://slashdot.org/story/99/12/08/1823208/va-reprices-again",
"title": "VA Reprices Again"
},
{
"url": "https://science.slashdot.org/story/99/12/08/1556254/bionic-implants-stimulate-muscle-contractions",
"title": "Bionic Implants Stimulate Muscle Contractions"
},
{
"url": "https://developers.slashdot.org/story/99/12/08/1559204/sun-withdraws-java-from-standards-process",
"title": "Sun Withdraws Java from Standards Process"
},
{
"url": "https://tech.slashdot.org/story/99/12/08/1614204/aspis-there-a-linux-solution",
"title": "ASP.....Is there a Linux Solution"
},
{
"url": "https://slashdot.org/story/99/12/08/1530222/upside-on-cosources-leap-of-faith",
"title": "Upside on CoSource's Leap of Faith"
},
{
"url": "https://yro.slashdot.org/story/99/12/08/1342209/ids-in-color-copies",
"title": "IDs in Color Copies"
},
{
"url": "https://news.slashdot.org/story/99/12/08/105230/south-park-creators-in-web-deal",
"title": "'South Park' Creators in Web Deal"
},
{
"url": "https://linux.slashdot.org/story/99/12/08/133248/linux-distributions-rated-on-cnet",
"title": "Linux Distributions Rated on CNet"
},
{
"url": "https://linux.slashdot.org/story/99/12/08/136255/gateway-linux-microserver",
"title": "Gateway Linux Microserver"
},
{
"url": "https://tech.slashdot.org/story/99/12/08/0825258/online-speech-indexing",
"title": "Online Speech Indexing"
},
{
"url": "https://slashdot.org/story/99/12/08/0955245/net-gambler-sues-credit-card-company",
"title": "Net Gambler Sues Credit Card Company"
},
{
"url": "https://developers.slashdot.org/story/99/12/08/1041249/mastering-algorithms-with-perl",
"title": "Mastering Algorithms with Perl"
},
{
"url": "https://science.slashdot.org/story/99/12/01/1232256/the-genome-project-and-the-dark-side",
"title": "The Genome Project and the Dark Side"
},
{
"url": "https://ask.slashdot.org/story/99/12/08/027200/corporate-vs-open-sourcesun-stealing-blackdown",
"title": "Corporate vs Open Source:Sun Stealing Blackdown?"
},
{
"url": "https://news.slashdot.org/story/99/12/08/0752248/napster-being-sued-by-riaa",
"title": "Napster Being Sued by RIAA"
},
{
"url": "https://news.slashdot.org/story/99/12/08/025251/icravetv-sued-by-networks",
"title": "iCraveTV Sued by Networks"
},
{
"url": "https://ask.slashdot.org/story/99/12/08/0157254/on-using-x-wo-the-rodent",
"title": "On Using X w/o the Rodent"
},
{
"url": "https://tech.slashdot.org/story/99/12/07/1617224/v2-os",
"title": "V2 OS"
},
{
"url": "https://news.slashdot.org/story/99/12/07/152238/legos-declared-toy-of-century",
"title": "Legos Declared Toy of Century"
},
{
"url": "https://slashdot.org/story/99/12/07/0923250/british-telecom-announces-unmetered-net-access",
"title": "British Telecom Announces Unmetered Net Access"
},
{
"url": "https://news.slashdot.org/story/99/12/07/1315234/no-linux-at-foxcom",
"title": "No Linux at Fox.com"
},
{
"url": "https://slashdot.org/story/99/12/07/169214/va-linux-ipo-update",
"title": "VA Linux IPO Update"
},
{
"url": "https://developers.slashdot.org/story/99/12/07/1527251/sun-announces-rc1-of-the-java2-platform",
"title": "Sun Announces RC1 of the Java2 Platform"
},
{
"url": "https://yro.slashdot.org/story/99/12/07/103259/judge-withholds-judges-records",
"title": "Judge Withholds Judges' Records"
},
{
"url": "https://news.slashdot.org/story/99/12/05/1637235/code-and-other-laws-of-cyberspace",
"title": "Code and Other Laws of Cyberspace"
},
{
"url": "https://yro.slashdot.org/story/99/12/07/0956241/online-marketer-patents-profiling-technique",
"title": "Online Marketer Patents Profiling Technique"
},
{
"url": "https://it.slashdot.org/story/99/12/07/1047221/schneier-writes-on-public-key-infrastructure",
"title": "Schneier Writes on Public Key Infrastructure"
},
{
"url": "https://science.slashdot.org/story/99/12/07/090211/mars-lander-probably-lost",
"title": "Mars Lander Probably Lost"
},
{
"url": "https://games.slashdot.org/story/99/12/07/0837201/old-man-murray-vs-id",
"title": "Old Man Murray vs ID"
},
{
"url": "https://slashdot.org/story/99/12/07/0830207/arizona-democratic-primary-vote-online",
"title": "Arizona Democratic Primary Vote Online"
},
{
"url": "https://apple.slashdot.org/story/99/12/07/0727232/apple-may-have-broken-japanese-antimonopoly-laws",
"title": "Apple May Have Broken Japanese Antimonopoly Laws"
},
{
"url": "https://slashdot.org/story/99/12/06/2020238/wiredcom-rip",
"title": "Wired.com RIP"
},
{
"url": "https://it.slashdot.org/story/99/12/06/2258246/crypto-hardware-card",
"title": "Crypto Hardware Card"
},
{
"url": "https://news.slashdot.org/story/99/12/06/1755209/sysadmin-on-the-south-pole",
"title": "Sysadmin on the South Pole"
},
{
"url": "https://bsd.slashdot.org/story/99/12/06/2124259/bsd-howto-for-linux-users",
"title": "*BSD HOWTO for Linux Users?"
},
{
"url": "https://tech.slashdot.org/story/99/12/06/2123240/solaris-8-to-include-apacheperl",
"title": "Solaris 8 to include Apache/Perl?"
},
{
"url": "https://science.slashdot.org/story/99/12/06/2023245/bandwidth-over-power-lines",
"title": "Bandwidth Over Power Lines"
},
{
"url": "https://it.slashdot.org/story/99/12/06/1622231/gsm-crypto-cracked",
"title": "GSM Crypto Cracked"
},
{
"url": "https://yro.slashdot.org/story/99/12/06/1752225/us-vs-ms-joint-conclusions-of-law-released",
"title": "US vs MS Joint Conclusions of Law Released"
},
{
"url": "https://yro.slashdot.org/story/99/12/06/1545249/linkshare-patents-affiliate-programs",
"title": "LinkShare Patents Affiliate Programs"
},
{
"url": "https://tech.slashdot.org/story/99/12/06/1531250/3dfx-open-sources-glide",
"title": "3dfx Open Sources Glide"
},
{
"url": "https://slashdot.org/story/99/12/05/2113249/att-to-share-cable-internet-with-mindspring",
"title": "AT&T to Share Cable Internet with MindSpring"
},
{
"url": "https://tech.slashdot.org/story/99/12/06/093217/interview-computer-and-internet-handicapped-accesibility",
"title": "Interview: Computer and Internet Handicapped Accesibility"
},
{
"url": "https://slashdot.org/story/99/12/06/1148258/doj-and-states-to-file-charges-against-microsoft",
"title": "DOJ and States to File Charges against Microsoft"
},
{
"url": "https://developers.slashdot.org/story/99/12/03/1039221/perl-cd-bookshelf",
"title": "Perl CD Bookshelf"
},
{
"url": "https://features.slashdot.org/story/99/12/04/1534248/voices-from-seattle",
"title": "Voices From Seattle"
},
{
"url": "https://linux.slashdot.org/story/99/12/06/0917250/red-hatdell-alliance",
"title": "Red Hat/Dell Alliance"
},
{
"url": "https://slashdot.org/story/99/12/06/094240/ibm-announces-plans-for-petaflop-supercomputer",
"title": "IBM Announces Plans for Petaflop Supercomputer"
},
{
"url": "https://tech.slashdot.org/story/99/12/06/0252212/kdevelop-10-released",
"title": "Kdevelop 1.0 released"
},
{
"url": "https://tech.slashdot.org/story/99/12/06/0823227/ibm-developing-90-ghz-circuits",
"title": "IBM Developing 90 GHz Circuits"
},
{
"url": "https://bsd.slashdot.org/story/99/12/06/0815235/linus-patching-freebsd-kernel",
"title": "Linus Patching FreeBSD Kernel?"
},
{
"url": "https://developers.slashdot.org/story/99/12/05/197242/microsoft-not-selling-visual-j",
"title": "Microsoft *NOT* Selling Visual J++"
},
{
"url": "https://tech.slashdot.org/story/99/12/05/214253/wear-dark-glasses",
"title": "Wear Dark Glasses"
},
{
"url": "https://slashdot.org/story/99/12/05/1050226/the-ultimate-in-secure-web-hosting",
"title": "The Ultimate in Secure Web Hosting"
},
{
"url": "https://bsd.slashdot.org/story/99/12/06/187232/rsaref-buffer-overflow",
"title": "RSAREF Buffer Overflow"
},
{
"url": "https://slashdot.org/story/99/12/05/1252255/internet-service-providers-not-liable-for-content",
"title": "Internet Service Providers Not Liable for Content"
},
{
"url": "https://tech.slashdot.org/story/99/12/05/1713242/driving-with-night-vision",
"title": "Driving with Night Vision"
},
{
"url": "https://linux.slashdot.org/story/99/12/05/1057253/nsf-awards-500000-grant-for-beowulf-cluster",
"title": "NSF awards $500,000 grant for Beowulf Cluster"
},
{
"url": "https://tech.slashdot.org/story/99/12/05/1054206/netscape-receives-strong-crypto-export-permission",
"title": "Netscape Receives Strong Crypto Export Permission"
},
{
"url": "https://yro.slashdot.org/story/99/12/05/1159233/wto--sdmi--nwo",
"title": "WTO + SDMI = NWO"
},
{
"url": "https://news.slashdot.org/story/99/12/05/0916220/are-mp3-web-sites-unfair-to-indie-artists",
"title": "Are MP3 Web Sites Unfair to Indie Artists?"
},
{
"url": "https://news.slashdot.org/story/99/12/05/0048229/freemware-like-vmware-but-open-source",
"title": "FreeMWare: Like VMWare but Open Source"
},
{
"url": "https://science.slashdot.org/story/99/12/05/0041253/intellectual-pursuits-may-create-brain-synapses",
"title": "Intellectual Pursuits May Create Brain Synapses"
},
{
"url": "https://slashdot.org/story/99/12/04/2319209/gnuhurd-web-server-online",
"title": "GNU/Hurd Web Server Online"
},
{
"url": "https://it.slashdot.org/story/99/12/04/1850200/oz-government-to-become-biggest-hacker-in-town",
"title": "Oz Government to Become \"Biggest Hacker in Town\""
},
{
"url": "https://slashdot.org/story/99/12/04/1841213/samba-developer-interviewed-on-national-tv",
"title": "Samba Developer Interviewed on National TV"
},
{
"url": "https://slashdot.org/story/99/12/04/158227/dumb-laws",
"title": "Dumb Laws"
},
{
"url": "https://yro.slashdot.org/story/99/12/04/1339226/cookies-are-security-hole-in-html-email",
"title": "Cookies are Security Hole in HTML Email"
},
{
"url": "https://tech.slashdot.org/story/99/12/04/1158209/xfree86-release-update-40-in-q12000",
"title": "XFree86 Release Update: 4.0 in Q12000"
},
{
"url": "https://slashdot.org/story/99/12/04/1155240/windows-nt-40-c2-evaluation-finished",
"title": "Windows NT 4.0 C2 Evaluation finished"
},
{
"url": "https://science.slashdot.org/story/99/12/04/1111243/mars-polar-lander-remains-silent",
"title": "Mars Polar Lander Remains Silent"
},
{
"url": "https://yro.slashdot.org/story/99/12/04/0955258/epic-sues-nsa-over-information-gathering",
"title": "EPIC Sues NSA Over Information Gathering"
},
{
"url": "https://news.slashdot.org/story/99/12/04/0949233/live-from-a-music-video-beach-party",
"title": "Live from a Music Video Beach Party"
},
{
"url": "https://news.slashdot.org/story/99/12/04/0923242/china-sentences-bank-crackerthief-to-death",
"title": "China Sentences Bank Cracker/Thief to Death"
},
{
"url": "https://news.slashdot.org/story/99/12/03/2351258/actress-madeline-kahn-dead-at-57",
"title": "Actress Madeline Kahn Dead at 57"
},
{
"url": "https://tech.slashdot.org/story/99/12/03/2337228/netscape-communicator-50-delayed",
"title": "Netscape Communicator 5.0 Delayed"
},
{
"url": "https://science.slashdot.org/story/99/12/03/1654228/stevie-wonder-to-implant-eye-chip",
"title": "Stevie Wonder to Implant Eye Chip?"
},
{
"url": "https://linux.slashdot.org/story/99/12/03/158252/stopping-the-fud",
"title": "Stopping the FUD"
},
{
"url": "https://slashdot.org/story/99/12/03/1551246/guide-to-slashdot",
"title": "Guide to Slashdot"
},
{
"url": "https://slashdot.org/story/99/12/03/1145227/the-corporate-lame-name-game",
"title": "The Corporate Lame Name Game"
},
{
"url": "https://games.slashdot.org/story/99/12/03/1314240/loki-to-distribute-quake-iii-arena",
"title": "Loki to Distribute Quake III Arena"
},
{
"url": "https://linux.slashdot.org/story/99/12/03/099221/interview-debian-project-leader-tells-all",
"title": "Interview: Debian Project Leader Tells All"
},
{
"url": "https://news.slashdot.org/story/99/12/03/107202/novell-ceo-attacked-by-cookie-monster",
"title": "Novell CEO Attacked by Cookie Monster"
},
{
"url": "https://yro.slashdot.org/story/99/12/01/2156208/no-etoy-for-christmas",
"title": "No EToy for Christmas"
},
{
"url": "https://slashdot.org/story/99/12/03/083248/wto-puts-internet-taxes-on-hold",
"title": "WTO Puts Internet Taxes on Hold"
},
{
"url": "https://news.slashdot.org/story/99/11/29/0827208/a-canticle-for-leibowitz",
"title": "A Canticle for Leibowitz"
},
{
"url": "https://features.slashdot.org/story/99/12/02/1618248/the-message-from-seattle",
"title": "The Message from Seattle"
},
{
"url": "https://science.slashdot.org/story/99/12/03/0755200/mars-polar-lander-lands-today",
"title": "Mars Polar Lander Lands Today"
},
{
"url": "https://slashdot.org/story/99/12/03/0736217/windows-2000-to-be-banned-in-germany",
"title": "Windows 2000 to be banned in Germany?"
},
{
"url": "https://news.slashdot.org/story/99/12/02/2330246/live-streaming-network-tv-online---in-canada",
"title": "Live Streaming Network TV Online - in Canada"
},
{
"url": "https://slashdot.org/story/99/12/02/2319208/doj-seeks-advice-on-effects-of-microsoft-breakup",
"title": "DoJ Seeks Advice on Effects of Microsoft Breakup"
},
{
"url": "https://it.slashdot.org/story/99/12/02/232229/attack-trees-help-model-potential-security-flaws",
"title": "'Attack Trees' Help Model Potential Security Flaws"
},
{
"url": "https://slashdot.org/story/99/12/02/1658217/medium-rare-quickies",
"title": "Medium Rare Quickies"
},
{
"url": "https://slashdot.org/story/99/12/02/1449244/ibm-to-unveil-major-tech-advances",
"title": "IBM to Unveil Major Tech Advances"
},
{
"url": "https://bsd.slashdot.org/story/99/12/02/1412251/adventures-of-darby-daemon",
"title": "Adventures of Darby Daemon"
},
{
"url": "https://tech.slashdot.org/story/99/12/02/1246247/dvd-hack-delays-dvd-audio",
"title": "DVD Hack Delays DVD Audio"
},
{
"url": "https://tech.slashdot.org/story/99/12/02/1234201/remote-control-robotic-snakes",
"title": "Remote Control Robotic Snakes"
},
{
"url": "https://slashdot.org/story/99/12/02/0941222/the-internet-as-the-geekosystem",
"title": "The Internet as the \"Geekosystem\""
},
{
"url": "https://slashdot.org/story/99/12/02/1112215/microsoft-selling-j-discontinuing-development",
"title": "Microsoft Selling J++; Discontinuing Development"
},
{
"url": "https://yro.slashdot.org/story/99/12/02/0915226/amazon-takes-round-one-in-patent-dispute",
"title": "Amazon Takes Round One in Patent Dispute"
},
{
"url": "https://news.slashdot.org/story/99/11/26/116256/end-of-some-days-beginning-of-others",
"title": "End of Some Days, Beginning of Others"
},
{
"url": "https://tech.slashdot.org/story/99/12/02/0849203/cisco-unveils-amazing-new-wireless-plans",
"title": "Cisco Unveils Amazing New Wireless Plans"
},
{
"url": "https://slashdot.org/story/99/12/02/0818241/coppermine-bug-prevents-booting",
"title": "Coppermine Bug Prevents... Booting?"
},
{
"url": "https://bsd.slashdot.org/story/99/12/02/0821236/december-daemonnews",
"title": "December DaemonNews"
},
{
"url": "https://bsd.slashdot.org/story/99/11/30/094215/daemonnews-reviews-applixware",
"title": "Daemonnews reviews Applixware"
},
{
"url": "https://science.slashdot.org/story/99/12/01/2130258/human-chromosome-22-mapped",
"title": "Human Chromosome 22 Mapped"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0427214/pcs-phone--upbrowser--killer-app",
"title": "PCS Phone + UP.Browser == Killer App?"
},
{
"url": "https://slashdot.org/story/99/12/01/0841210/charging-for-cable-internet-access-in-australia",
"title": "Charging for Cable Internet Access in Australia"
},
{
"url": "https://apple.slashdot.org/story/99/12/01/1424204/apple-ending-engineering-credits-in-products",
"title": "Apple Ending Engineering Credits in Products"
},
{
"url": "https://slashdot.org/story/99/12/01/1612236/cyberterrorism-article-in-janes-is-available",
"title": "Cyberterrorism Article in Jane's is Available"
},
{
"url": "https://tech.slashdot.org/story/99/12/01/1342251/xfree86-joins-xorg-as-honorary-member",
"title": "XFree86 joins X.Org as Honorary Member"
},
{
"url": "https://linux.slashdot.org/story/99/12/01/1030213/suse-63-released-today",
"title": "SuSE 6.3 Released Today"
},
{
"url": "https://slashdot.org/story/99/12/01/1524231/15-days-of-bond-my-ass",
"title": "15 Days of Bond My Ass"
},
{
"url": "https://science.slashdot.org/story/99/12/01/104250/petition-for-human-exploration-of-mars",
"title": "Petition for Human Exploration of Mars"
},
{
"url": "https://hardware.slashdot.org/story/99/12/01/133232/a-140gb-cd-rom",
"title": "A 140GB CD-ROM?"
},
{
"url": "https://slashdot.org/story/99/12/01/1334235/network-solutions-changes-whois",
"title": "Network Solutions Changes WHOIS"
},
{
"url": "https://slashdot.org/story/99/12/01/0939233/altavista-to-go-for-the-ipo",
"title": "Altavista to Go For the IPO"
},
{
"url": "https://apple.slashdot.org/story/99/12/01/093235/the-21-frankenstein-imac",
"title": "The 21\" Frankenstein iMac"
},
{
"url": "https://tech.slashdot.org/story/99/11/30/1934225/latest-netcraft-survey-shows-apache-increase",
"title": "Latest Netcraft survey shows Apache increase"
},
{
"url": "https://linux.slashdot.org/story/99/11/29/0834234/under-the-radar",
"title": "Under The Radar"
},
{
"url": "https://tech.slashdot.org/story/99/11/27/1153253/americans-and-the-21st-century",
"title": "Americans and the 21st Century"
},
{
"url": "https://linux.slashdot.org/story/99/12/01/0848237/fujitsu-moves-towards-linux",
"title": "Fujitsu Moves Towards Linux"
},
{
"url": "https://slashdot.org/story/99/12/01/0836244/75m-for-domain-name",
"title": "$7.5m for Domain Name"
},
{
"url": "https://linux.slashdot.org/story/99/11/12/0354238/choosing-the-right-cluster-system",
"title": "Choosing the Right Cluster System"
},
{
"url": "https://slashdot.org/story/99/11/30/230236/wince-at-winces-new-name-windows-powered",
"title": "Wince at WinCE's New Name: 'Windows Powered'"
},
{
"url": "https://linux.slashdot.org/story/99/11/30/2244219/21-linux-web-browsers",
"title": "21 Linux Web Browsers?"
},
{
"url": "https://news.slashdot.org/story/99/11/30/2222211/youngest-software-executive-is-three-years-old",
"title": "Youngest Software Executive is Three Years Old"
},
{
"url": "https://bsd.slashdot.org/story/99/11/18/1022245/openbsd-26-released",
"title": "OpenBSD 2.6 released"
},
{
"url": "https://news.slashdot.org/story/99/11/30/2230252/anti-wto-riot-state-of-emergency-in-seattle",
"title": "Anti-WTO Riot, State of Emergency in Seattle"
},
{
"url": "https://it.slashdot.org/story/99/11/30/1534221/crypto-advocate-under-investigation-by-fbi",
"title": "Crypto Advocate Under Investigation by FBI"
},
{
"url": "https://science.slashdot.org/story/99/11/30/1457245/mars-deep-space-2-crash-program",
"title": "Mars Deep Space 2 Crash Program"
},
{
"url": "https://news.slashdot.org/story/99/11/30/1258205/y2k-movie-followup-the-slashdot-effect-gone-wrong",
"title": "Y2K Movie Followup: The Slashdot Effect Gone Wrong"
},
{
"url": "https://tech.slashdot.org/story/99/11/30/1057217/interview-with-the-mind-behind-aibo",
"title": "Interview with The Mind Behind Aibo"
},
{
"url": "https://radio.slashdot.org/story/99/11/30/1228252/geeks-in-space-return-from-the-turkey",
"title": "Geeks In Space: Return from the Turkey"
},
{
"url": "https://yro.slashdot.org/story/99/11/30/0957241/cursor-software-tracks-you-on-web",
"title": "Cursor Software Tracks You On Web"
},
{
"url": "https://news.slashdot.org/story/99/11/30/0954216/interface-zen",
"title": "Interface Zen"
},
{
"url": "https://news.slashdot.org/story/99/11/29/1059254/programming-pearls-second-edition",
"title": "Programming Pearls (Second Edition)"
},
{
"url": "https://science.slashdot.org/story/99/11/30/096225/reverse-time-could-explain-dark-matter",
"title": "Reverse Time Could Explain Dark Matter"
},
{
"url": "https://slashdot.org/story/99/11/30/0830246/electrohippies-protest-wto",
"title": "'Electrohippies' Protest WTO"
},
{
"url": "https://tech.slashdot.org/story/99/11/30/0850242/historical-unix-open-source-legal-battles-and-john-lions",
"title": "Historical Unix, Open Source Legal Battles, and John Lions"
},
{
"url": "https://linux.slashdot.org/story/99/11/03/2336202/linuxpda-epoch-32",
"title": "LinuxPDA EPOCH 32?"
},
{
"url": "https://slashdot.org/story/99/11/29/2137238/napster-attacks-open-source-clone",
"title": "Napster Attacks Open Source Clone"
},
{
"url": "https://slashdot.org/story/99/11/29/1612245/having-fun-with-y2k",
"title": "Having Fun with Y2K"
},
{
"url": "https://news.slashdot.org/story/99/11/29/2110238/profiling-a-nation",
"title": "Profiling A Nation"
},
{
"url": "https://science.slashdot.org/story/99/11/29/1323225/five-possible-life-bearing-planets-found",
"title": "Five Possible Life-Bearing Planets Found"
},
{
"url": "https://linux.slashdot.org/story/99/11/29/1723228/red-hatcorel-takeover-rumors",
"title": "Red Hat/Corel Takeover Rumors"
},
{
"url": "https://slashdot.org/story/99/11/29/1221251/wearables-from-ibm-japan",
"title": "Wearables From IBM Japan"
},
{
"url": "https://slashdot.org/story/99/11/29/1454237/sgi-release-iris-23-for-linux",
"title": "SGI Release Iris 2.3 for Linux"
},
{
"url": "https://linux.slashdot.org/story/99/11/29/1216258/red-hat-to-fund-mozilla-and-sendmail",
"title": "Red Hat to fund Mozilla and Sendmail?"
},
{
"url": "https://science.slashdot.org/story/99/11/29/1045242/neurocomputing-makes-headway",
"title": "Neurocomputing Makes Headway"
},
{
"url": "https://linux.slashdot.org/story/99/11/29/1046229/ibm-ports-linux-to-s390",
"title": "IBM Ports Linux to S/390"
},
{
"url": "https://slashdot.org/story/99/11/29/1221215/75-ghz-athlon-released",
"title": ".75 GHz Athlon Released"
},
{
"url": "https://linux.slashdot.org/story/99/11/29/1131218/interview-ask-the-debian-project-leader",
"title": "Interview: Ask the Debian Project Leader"
},
{
"url": "https://news.slashdot.org/story/99/11/29/0836231/mp3-jukebox-that-rox",
"title": "MP3 Jukebox That Rox"
},
{
"url": "https://slashdot.org/story/99/11/29/093203/mac-staroffice-in-development",
"title": "Mac StarOffice in development"
},
{
"url": "https://linux.slashdot.org/story/99/11/29/0815210/beginning-linux-programming-2nd-edition",
"title": "Beginning Linux Programming, 2nd Edition"
},
{
"url": "https://features.slashdot.org/story/99/11/23/1712222/take-the-fbis-geek-profile-test",
"title": "Take the FBI's Geek Profile Test"
},
{
"url": "https://bsd.slashdot.org/story/99/11/29/087239/vmwarequake-3unreal-tournament-on-freebsd",
"title": "VMWare/Quake 3/Unreal Tournament on FreeBSD"
},
{
"url": "https://news.slashdot.org/story/99/11/28/2224201/new-patent-treaty",
"title": "New Patent Treaty"
},
{
"url": "https://science.slashdot.org/story/99/11/29/086256/uk-govt-plans-to-set-up-armageddon-centre",
"title": "UK Govt Plans To Set Up 'Armageddon' Centre"
},
{
"url": "https://linux.slashdot.org/story/99/11/29/0758231/esr-talks-in-dublin",
"title": "ESR talks in Dublin"
},
{
"url": "https://yro.slashdot.org/story/99/11/29/0756217/george-w-bush-vs-parody-site",
"title": "George W. Bush Vs. Parody Site"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/227212/distributed-computing-and-the-human-genome-project",
"title": "Distributed Computing and the Human Genome Project"
},
{
"url": "https://slashdot.org/story/99/11/28/1725202/open-source-language-translator-opens-for-beta",
"title": "Open-Source Language Translator Opens For Beta"
},
{
"url": "https://games.slashdot.org/story/99/11/28/1516222/another-software-spy",
"title": "Another Software Spy"
},
{
"url": "https://tech.slashdot.org/story/99/11/28/1723230/detecting-stealth-planes",
"title": "Detecting Stealth Planes"
},
{
"url": "https://slashdot.org/story/99/11/28/1719237/what-the-amiga-pioneers-are-doing-now",
"title": "What the Amiga Pioneers Are Doing Now"
},
{
"url": "https://yro.slashdot.org/story/99/11/28/1310259/license-to-surf",
"title": "License to Surf"
},
{
"url": "https://news.slashdot.org/story/99/11/28/1113233/the-spotlight-is-a-harsh-mistress",
"title": "The Spotlight is a Harsh Mistress"
},
{
"url": "https://slashdot.org/story/99/11/28/0638259/addendum-to-the-slashdot-effect-internet-paper",
"title": "Addendum to The Slashdot Effect Internet Paper"
},
{
"url": "https://slashdot.org/story/99/11/27/1456246/microsoft-asks-wto-not-to-impose-software-tariffs",
"title": "Microsoft Asks WTO Not to Impose Software Tariffs"
},
{
"url": "https://science.slashdot.org/story/99/11/27/0750217/evidence-for-a-flat-universe",
"title": "Evidence for a Flat Universe?"
},
{
"url": "https://news.slashdot.org/story/99/11/27/1158228/reviewtoy-story-2",
"title": "Review:Toy Story 2"
},
{
"url": "https://ask.slashdot.org/story/99/11/25/1453203/are-bbs-like-communities-dead",
"title": "Are BBS-Like Communities Dead?"
},
{
"url": "https://news.slashdot.org/story/99/11/27/0742224/chernobyl-reactor-restarted-claimed-safe-for-y2k",
"title": "Chernobyl Reactor Restarted, Claimed Safe for Y2K"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2134215/geeks-computers-and-cars",
"title": "Geeks, Computers and Cars?"
},
{
"url": "https://slashdot.org/story/99/11/27/074216/intel-owns-patent-on-distributed-computing",
"title": "Intel Owns Patent on Distributed Computing"
},
{
"url": "https://linux.slashdot.org/story/99/11/27/033225/redhatcom-redone",
"title": "redhat.com Redone"
},
{
"url": "https://linux.slashdot.org/story/99/11/26/1450245/bruce-perens-discusses-lawsuit-against-corel-updated",
"title": "Bruce Perens Discusses Lawsuit Against Corel (UPDATED)"
},
{
"url": "https://science.slashdot.org/story/99/11/26/0916243/peering-into-the-future",
"title": "Peering Into the Future"
},
{
"url": "https://tech.slashdot.org/story/99/11/26/1010222/pioneer-to-sell-first-recordable-dvd-decks",
"title": "Pioneer to sell first recordable DVD decks"
},
{
"url": "https://tech.slashdot.org/story/99/11/26/1126252/interview-kde-developers-answer-your-questions",
"title": "Interview: KDE Developers Answer Your Questions"
},
{
"url": "https://tech.slashdot.org/story/99/11/26/122247/what-constitutes-an-alpha-version",
"title": "What constitutes an Alpha-version?"
},
{
"url": "https://news.slashdot.org/story/99/11/26/1051236/australian-government-cracks-down-on-net-users",
"title": "Australian Government Cracks Down on Net Users"
},
{
"url": "https://linux.slashdot.org/story/99/11/26/0917232/oracle-japan-pushing-linux-business-targets-nt",
"title": "Oracle Japan Pushing Linux Business, Targets NT"
},
{
"url": "https://linux.slashdot.org/story/99/11/26/0913239/linux-opera-public-beta-by-christmas",
"title": "Linux Opera Public Beta by Christmas"
},
{
"url": "https://slashdot.org/story/99/11/25/1943208/corel-linux-only-for-18-and-up",
"title": "Corel Linux Only For 18 and Up"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/0249242/high-tech-wages---salary-or-hourly",
"title": "High Tech Wages - Salary or Hourly?"
},
{
"url": "https://news.slashdot.org/story/99/11/25/0921201/patenting-your-computers-inventions",
"title": "Patenting Your Computer's Inventions"
},
{
"url": "https://tech.slashdot.org/story/99/11/25/1032230/nvidia-releasing-opengl-icd-by-end-of-year",
"title": "NVidia releasing OpenGL ICD by End of Year"
},
{
"url": "https://slashdot.org/story/99/11/25/094246/new-intel-up-for-ultra-cheap-pcs",
"title": "New Intel uP for Ultra-Cheap PCs"
},
{
"url": "https://ask.slashdot.org/story/99/11/25/1459200/red-hat-distro-code-naming-scheme",
"title": "Red Hat Distro Code-Naming Scheme?"
},
{
"url": "https://ask.slashdot.org/story/99/11/25/1456256/voice-over-ip-for-linux",
"title": "Voice Over IP for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/11/25/1426248/graphic-cards-w-video-input-and-opengl-support",
"title": "Graphic Cards w/ Video Input and OpenGL Support"
},
{
"url": "https://ask.slashdot.org/story/99/11/25/1423230/on-maintaining-httpd-logs",
"title": "On Maintaining httpd Logs..."
},
{
"url": "https://news.slashdot.org/story/99/11/24/1920216/novell-license-draft-10-submitted-for-review",
"title": "Novell License Draft 1.0 Submitted for Review"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/0235238/how-can-we-keep-our-teachers-updated",
"title": "How can we Keep Our Teachers Updated?"
},
{
"url": "https://linux.slashdot.org/story/99/11/25/1031225/motley-fool-on-microsoft-vs-linux",
"title": "Motley Fool on Microsoft vs. Linux"
},
{
"url": "https://yro.slashdot.org/story/99/11/25/1017223/waiting-for-the-knock",
"title": "Waiting for the Knock"
},
{
"url": "https://yro.slashdot.org/story/99/11/25/1041257/australian-govt-oks-its-spies-to-crack-servers",
"title": "Australian Gov't OKs Its Spies to Crack Servers"
},
{
"url": "https://slashdot.org/story/99/11/25/1029228/nsa-overwhelmed-with-information",
"title": "NSA Overwhelmed with Information"
},
{
"url": "https://yro.slashdot.org/story/99/11/24/1848226/mall-bans-signs-touting-merchants-web-sites",
"title": "Mall Bans Signs Touting Merchants' Web Sites"
},
{
"url": "https://slashdot.org/story/99/11/24/0925210/sgi-steps-out-of-the-visual-workstation-market",
"title": "SGI Steps out of the Visual Workstation Market"
},
{
"url": "https://news.slashdot.org/story/99/11/24/2049237/free-books-online",
"title": "Free Books Online"
},
{
"url": "https://slashdot.org/story/99/11/24/2045242/dave-mcallister-sgi-on-linux-and-chilli",
"title": "Dave McAllister (SGI) on Linux and Chilli"
},
{
"url": "https://linux.slashdot.org/story/99/11/24/1916229/red-hat-deserves-award-for--most-awards",
"title": "Red Hat Deserves Award for ... Most Awards?"
},
{
"url": "https://yro.slashdot.org/story/99/11/24/1547244/summary-of-net-legislation",
"title": "Summary of Net Legislation"
},
{
"url": "https://linux.slashdot.org/story/99/11/24/1550200/intel-invests-12-million-euro-in-suse",
"title": "Intel Invests 12 Million Euro in SuSE"
},
{
"url": "https://news.slashdot.org/story/99/11/24/1546225/lugs--lwce-win-a-trip-to-the-bazaar",
"title": "LUGs @ LWCE; Win a Trip to The Bazaar"
},
{
"url": "https://tech.slashdot.org/story/99/11/24/1117240/artx-hannibal-and-consumer-fraud",
"title": "ArtX, Hannibal and Consumer Fraud"
},
{
"url": "https://slashdot.org/story/99/11/24/0954215/possible-eu-embargo-on-pentium-iii",
"title": "Possible EU Embargo on Pentium III"
},
{
"url": "https://news.slashdot.org/story/99/11/24/0928207/the-unofficial-guide-to-lego-mindstorms-robots",
"title": "The Unofficial Guide to Lego Mindstorms Robots"
},
{
"url": "https://news.slashdot.org/story/99/11/24/0912234/slashdots-top-10-hacks-of-all-time",
"title": "Slashdot's Top 10 Hacks of all Time"
},
{
"url": "https://linux.slashdot.org/story/99/11/24/0759229/ease-of-use-vs-sweat-equity",
"title": "Ease of Use vs. Sweat Equity"
},
{
"url": "https://yro.slashdot.org/story/99/11/10/042220/who-is-responsible-the-developer-the-user",
"title": "Who is Responsible? The Developer? The User?"
},
{
"url": "https://games.slashdot.org/story/99/11/24/0751254/parts-of-the-unreal-engine-to-be-opened",
"title": "Parts of the Unreal Engine to be Opened"
},
{
"url": "https://linux.slashdot.org/story/99/11/23/1939210/debian-freebsd-distro",
"title": "Debian FreeBSD Distro?"
},
{
"url": "https://yro.slashdot.org/story/99/11/24/013232/fbi-shuts-down-website",
"title": "FBI Shuts Down Website"
},
{
"url": "https://slashdot.org/story/99/11/23/1733256/am-frequency-hinders-adsl-capacity",
"title": "AM Frequency Hinders ADSL Capacity"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2219244/is-source-code-optimization-worthwhile",
"title": "Is Source-Code Optimization Worthwhile?"
},
{
"url": "https://it.slashdot.org/story/99/11/23/1741203/details-about-new-crypto-export-regulations",
"title": "Details About New Crypto Export Regulations"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2128239/snmp-managers-for-linux",
"title": "SNMP Managers for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2123230/linux-kernel-using-64gb-physical-memory",
"title": "Linux Kernel using 64GB physical memory?"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2121236/coppermine-faster-than-athlon",
"title": "Coppermine faster than Athlon?"
},
{
"url": "https://slashdot.org/story/99/11/23/2032244/va-linux-systems-sends-the-letter",
"title": "VA Linux Systems Sends \"The Letter\""
},
{
"url": "https://yro.slashdot.org/story/99/11/23/0038226/bookseller-intercepted-email",
"title": "Bookseller Intercepted Email"
},
{
"url": "https://games.slashdot.org/story/99/11/23/0842233/linux-unreal-tournament-files-released",
"title": "Linux Unreal Tournament Files Released"
},
{
"url": "https://news.slashdot.org/story/99/11/23/114219/dear-mr-lucas",
"title": "Dear Mr. Lucas"
},
{
"url": "https://features.slashdot.org/story/99/11/22/155207/perverts-and-consumers",
"title": "Perverts and Consumers"
},
{
"url": "https://slashdot.org/story/99/11/23/0830231/geek-christmas-ideas",
"title": "Geek Christmas Ideas"
},
{
"url": "https://news.slashdot.org/story/99/11/02/1041246/cities-in-flight",
"title": "Cities in Flight"
},
{
"url": "https://ask.slashdot.org/story/99/11/10/0344241/the-possible-effects-of-quantum-computing",
"title": "The Possible Effects of Quantum Computing"
},
{
"url": "https://yro.slashdot.org/story/99/11/23/084213/white-house-web-page-cracker-faces-prison",
"title": "White House Web Page Cracker Faces Prison"
},
{
"url": "https://linux.slashdot.org/story/99/11/23/0838208/where-carmack-goes-next",
"title": "Where Carmack Goes Next"
},
{
"url": "https://slashdot.org/story/99/11/23/0045255/microsoft-monopoly-the-board-game",
"title": "Microsoft Monopoly, The Board Game"
},
{
"url": "https://tech.slashdot.org/story/99/11/22/1915250/apology-to-readers-corel-et-al",
"title": "Apology to Readers, Corel, et al."
},
{
"url": "https://news.slashdot.org/story/99/11/22/1914258/geeks-vs-nerds",
"title": "Geeks vs. Nerds"
},
{
"url": "https://news.slashdot.org/story/99/11/23/012202/spies-in-the-forests",
"title": "Spies in the Forests"
},
{
"url": "https://news.slashdot.org/story/99/11/23/0050230/18-nanometer-transistor",
"title": "18 nanometer transistor"
},
{
"url": "https://hardware.slashdot.org/story/99/11/22/1249204/fifty-year-old-computer-being-restored",
"title": "Fifty-Year-Old Computer Being Restored"
},
{
"url": "https://games.slashdot.org/story/99/11/22/198255/quake-3-arena-goes-gold",
"title": "Quake 3 Arena goes Gold"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2056254/what-is-science-fiction",
"title": "What is Science Fiction?"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2048204/editors-and-java-server-page-synax-highlighting",
"title": "Editors and Java Server Page Synax Highlighting"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/2035202/html-to-frame-or-not-to-frame",
"title": "HTML: To Frame or not to Frame"
},
{
"url": "https://ask.slashdot.org/story/99/11/22/1952224/books-on-high-end-graphics-programming",
"title": "Books on High-end Graphics Programming?"
},
{
"url": "https://slashdot.org/story/99/11/22/1240218/nothing-but-net---for-five-days",
"title": "Nothing But Net - For Five Days"
},
{
"url": "https://slashdot.org/story/99/11/22/1225206/osha-getting-tougher-about-ergonomics",
"title": "OSHA Getting Tougher About Ergonomics"
},
{
"url": "https://hardware.slashdot.org/story/99/11/22/1158209/your-next-pointer-device",
"title": "Your Next Pointer Device?"
},
{
"url": "https://science.slashdot.org/story/99/11/22/136243/extrasolar-planets-light-observed",
"title": "Extrasolar Planet's Light Observed"
},
{
"url": "https://science.slashdot.org/story/99/11/22/1213240/shimura-taniyama-weil-stw-solved",
"title": "Shimura-Taniyama-Weil (STW) Solved"
},
{
"url": "https://tech.slashdot.org/story/99/11/22/0845253/interview-ask-the-kde-developers",
"title": "Interview: Ask the KDE Developers"
},
{
"url": "https://tech.slashdot.org/story/99/11/22/1220212/corel-dropping-wine",
"title": "Corel Dropping WINE?"
},
{
"url": "https://slashdot.org/story/99/11/22/1148259/unmasking-mis-labeled-cpus",
"title": "Unmasking Mis-Labeled CPUs"
},
{
"url": "https://news.slashdot.org/story/99/11/21/2015200/free-software-development-goes-public",
"title": "Free Software Development Goes Public"
},
{
"url": "https://news.slashdot.org/story/99/11/11/2359232/the-cathedral-and-the-bazaar",
"title": "The Cathedral and the Bazaar"
},
{
"url": "https://slashdot.org/story/99/11/22/0836237/sgi-negotiating-cray-research-sale",
"title": "SGI Negotiating Cray Research Sale"
},
{
"url": "https://it.slashdot.org/story/99/11/21/2352218/dcyphernet-linux-clients-available",
"title": "Dcypher.net Linux Clients Available"
},
{
"url": "https://linux.slashdot.org/story/99/11/10/0337215/on-the-gpl-and-releasing-source-code",
"title": "On the GPL and Releasing Source Code"
},
{
"url": "https://yro.slashdot.org/story/99/11/22/0325211/cfp2000---freedom-and-privacy-by-design",
"title": "CFP2000 - Freedom and Privacy by Design"
},
{
"url": "https://slashdot.org/story/99/11/21/2357232/first-class-action-suit-for-microsoft",
"title": "First Class Action Suit for Microsoft"
},
{
"url": "https://slashdot.org/story/99/11/21/1951257/are-computer-magazines-dead",
"title": "Are Computer Magazines Dead?"
},
{
"url": "https://news.slashdot.org/story/99/11/21/1256222/y2k-fuel-the-panic-the-nbc-movie",
"title": "Y2K: Fuel the Panic, the NBC Movie"
},
{
"url": "https://bsd.slashdot.org/story/99/11/21/1430208/freebsd-at-comdex",
"title": "FreeBSD at COMDEX"
},
{
"url": "https://slashdot.org/story/99/11/21/1127248/toms-reviews-kryotechs-1000mhz-pc",
"title": "Tom's Reviews Kryotech's 1000MHz PC"
},
{
"url": "https://slashdot.org/story/99/11/21/0956229/gnu-project-humor-page",
"title": "GNU Project Humor Page"
},
{
"url": "https://tech.slashdot.org/story/99/11/21/058244/china-enters-space",
"title": "China Enters Space"
},
{
"url": "https://linux.slashdot.org/story/99/11/21/0029213/dave-whitinger-announces-linsight",
"title": "Dave Whitinger announces LinSight"
},
{
"url": "https://games.slashdot.org/story/99/11/20/2254213/quake-iii-arena-demo-test-for-linux",
"title": "Quake III Arena Demo Test for Linux"
},
{
"url": "https://news.slashdot.org/story/99/11/20/1256236/free-software-for-developing-countries",
"title": "Free Software for Developing Countries"
},
{
"url": "https://slashdot.org/story/99/11/20/1310232/lotus-domino-for-linux-goes-gold",
"title": "Lotus Domino for Linux goes Gold"
},
{
"url": "https://linux.slashdot.org/story/99/11/20/0011200/kenwood-chooses-linux-over-nt-for-erp",
"title": "Kenwood Chooses Linux Over NT for ERP"
},
{
"url": "https://linux.slashdot.org/story/99/11/20/0844244/linux-possibly-ported-to-ibm-mainframes",
"title": "Linux Possibly Ported to IBM Mainframes"
},
{
"url": "https://news.slashdot.org/story/99/11/20/0826244/novell-embraces-open-source-sun-still-flirting",
"title": "Novell Embraces Open Source, Sun Still Flirting"
},
{
"url": "https://news.slashdot.org/story/99/11/20/0715246/smallest-transistor-in-the-world",
"title": "Smallest Transistor in the World"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0413255/the-dismounted-soldier-problem",
"title": "The Dismounted Soldier Problem"
},
{
"url": "https://news.slashdot.org/story/99/11/19/1638236/sci-fi-channel-making-dune-miniseries",
"title": "Sci-Fi Channel Making Dune Miniseries"
},
{
"url": "https://news.slashdot.org/story/99/11/19/2248242/can-computers-pray",
"title": "Can Computers Pray?"
},
{
"url": "https://slashdot.org/story/99/11/20/0027207/24-gigabit-network-demoed",
"title": "2.4 Gigabit Network Demoed"
},
{
"url": "https://slashdot.org/story/99/11/19/1634257/united-parcel-service-sued-for-insurance-fraud",
"title": "United Parcel Service Sued for Insurance Fraud"
},
{
"url": "https://slashdot.org/story/99/11/19/1739202/mediator-appointed-in-microsoft-case",
"title": "Mediator Appointed in Microsoft Case"
},
{
"url": "https://games.slashdot.org/story/99/11/19/1113254/game-ratings-are-combat-sims-worse-than-fpss",
"title": "Game Ratings; Are Combat Sims Worse Than FPSs?"
},
{
"url": "https://games.slashdot.org/story/99/11/19/1159234/unreal-tournament-not-to-include-linux-executable",
"title": "Unreal Tournament Not To Include Linux Executable"
},
{
"url": "https://science.slashdot.org/story/99/11/19/1152243/nano-switches-and-self-assembling-nanostructures",
"title": "Nano-switches and Self-Assembling Nanostructures"
},
{
"url": "https://slashdot.org/story/99/11/19/1326202/happy-odd-day",
"title": "Happy Odd Day!"
},
{
"url": "https://interviews.slashdot.org/story/99/11/19/1020217/interview-antitrust-experts-respond-re-ms",
"title": "Interview: Antitrust Experts Respond re MS"
},
{
"url": "https://linux.slashdot.org/story/99/11/19/1043251/salon-article-on-red-hat-and-cygnus",
"title": "Salon Article on Red Hat and Cygnus"
},
{
"url": "https://slashdot.org/story/99/11/19/1150230/zdtv-sold-to-paul-allens-vulcan-ventures",
"title": "ZDTV sold to Paul Allen's Vulcan Ventures"
},
{
"url": "https://slashdot.org/story/99/11/19/1055258/microsoft-surrenders-im-war-claims-security-risk",
"title": "Microsoft Surrenders IM War, Claims Security Risk"
},
{
"url": "https://yro.slashdot.org/story/99/11/18/1419235/aclu-epic-sue-to-block-taps",
"title": "ACLU, EPIC Sue to Block Taps"
},
{
"url": "https://news.slashdot.org/story/99/11/10/1423258/all-tomorrows-parties",
"title": "All Tomorrow's Parties"
},
{
"url": "https://news.slashdot.org/story/99/11/18/1221245/i-was-a-human-crash-test-dummy",
"title": "'I Was a Human Crash-Test Dummy'"
},
{
"url": "https://yro.slashdot.org/story/99/11/19/0219227/anti-scientology-site-shut-down",
"title": "Anti-Scientology Site Shut Down"
},
{
"url": "https://bsd.slashdot.org/story/99/11/19/0940233/bsdi-beta-testing-linux-application-platform",
"title": "BSDI beta testing Linux Application Platform"
},
{
"url": "https://slashdot.org/story/99/11/19/0744215/manyfold-universe-theory",
"title": "Manyfold Universe Theory"
},
{
"url": "https://hardware.slashdot.org/story/99/11/10/0314202/pros-cons-of-different-raid-solutions",
"title": "Pros & Cons of Different RAID Solutions"
},
{
"url": "https://yro.slashdot.org/story/99/11/18/0542227/aclu-epic-challenge-wiretapping",
"title": "ACLU & EPIC Challenge Wiretapping"
},
{
"url": "https://linux.slashdot.org/story/99/11/18/1751223/suse-and-va-linux-partnership",
"title": "SuSE and VA Linux Partnership"
},
{
"url": "https://slashdot.org/story/99/11/17/2148249/how-to-write-unmaintainable-code",
"title": "How To Write Unmaintainable Code"
},
{
"url": "https://slashdot.org/story/99/11/18/0957218/gnu-xfce-320-desktop-now-available",
"title": "GNU XFce 3.2.0 Desktop Now Available"
},
{
"url": "https://news.slashdot.org/story/99/11/18/0923206/canadian-recording-industry-assn-lets-djs-use-mp3s",
"title": "Canadian Recording Industry Ass'n Lets DJs use MP3s"
},
{
"url": "https://tech.slashdot.org/story/99/11/18/1551203/new-ati-3d-chip",
"title": "New ATi 3D Chip"
},
{
"url": "https://slashdot.org/story/99/11/18/1341225/gpl-and-project-forking",
"title": "GPL and Project Forking"
},
{
"url": "https://games.slashdot.org/story/99/11/18/1115246/carmack-on-the-retail-quake3-for-linux",
"title": "Carmack on the retail Quake3 for linux"
},
{
"url": "https://news.slashdot.org/story/99/11/10/1414212/using-samba",
"title": "Using Samba"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/031245/public-key-based-streamed-encryption",
"title": "Public-key Based Streamed Encryption?"
},
{
"url": "https://bsd.slashdot.org/story/99/11/18/101212/mckusicks-softupdate-code-integrated-in-to-netbsd",
"title": "McKusick's softupdate code integrated in to NetBSD"
},
{
"url": "https://science.slashdot.org/story/99/11/17/1239248/setihome-says-client-upgrades-are-a-bad-idea",
"title": "SETI@Home Says Client 'Upgrades' Are a Bad Idea"
},
{
"url": "https://news.slashdot.org/story/99/11/17/1315219/kyles-mom-is-dead-at-age-38",
"title": "'Kyle's Mom' is Dead at Age 38"
},
{
"url": "https://bsd.slashdot.org/story/99/11/18/0444244/vote-for-a-freebsd-port-of-jdk12-from-sun",
"title": "Vote for a FreeBSD port of JDK1.2 from Sun"
},
{
"url": "https://news.slashdot.org/story/99/11/17/120218/virus-costs-dell-millions-in-ireland",
"title": "Virus Costs Dell Millions in Ireland"
},
{
"url": "https://tech.slashdot.org/story/99/11/18/0013239/kde-20-in-action",
"title": "KDE 2.0 in Action"
},
{
"url": "https://bsd.slashdot.org/story/99/11/18/0415229/freebsd-based-floppy-firewall",
"title": "FreeBSD based 'Floppy Firewall'"
},
{
"url": "https://linux.slashdot.org/story/99/11/17/205220/3dfx-glide-and-dri-open-sourced",
"title": "3dfx Glide and DRI Open Sourced"
},
{
"url": "https://it.slashdot.org/story/99/11/18/008204/openssh-project-now-at-opensshcom",
"title": "OpenSSH Project Now at openssh.com"
},
{
"url": "https://news.slashdot.org/story/99/11/16/2237214/giving-project-gutenberg-recognition",
"title": "Giving Project Gutenberg Recognition"
},
{
"url": "https://apple.slashdot.org/story/99/11/17/222234/howto-on-booting-linux-on-imac-dvs",
"title": "HowTo on booting Linux on iMac DV's"
},
{
"url": "https://linux.slashdot.org/story/99/11/17/1633212/news-from-super-computer-99",
"title": "News From Super Computer 99"
},
{
"url": "https://news.slashdot.org/story/99/11/16/1518251/china-plots-cyberspace-war-strategy",
"title": "China Plots Cyberspace War Strategy"
},
{
"url": "https://linux.slashdot.org/story/99/11/16/2338219/jean-loup-gailly-named-cto-of-mandrakesoft",
"title": "Jean-Loup Gailly Named CTO of Mandrakesoft"
},
{
"url": "https://linux.slashdot.org/story/99/11/17/1022200/a-new-linux-based-os",
"title": "A New 'Linux-Based' OS?"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/0215222/distance-learning-recommendations",
"title": "Distance Learning Recommendations?"
},
{
"url": "https://news.slashdot.org/story/99/11/16/156258/court-tells-disney-to-pull-gocom-logo",
"title": "Court Tells Disney to Pull Go.com Logo"
},
{
"url": "https://slashdot.org/story/99/11/16/2016230/comdex-mid-week-quickies",
"title": "Comdex Mid-Week Quickies"
},
{
"url": "https://news.slashdot.org/story/99/11/17/0955239/vice-president-gore-writes-for-slate",
"title": "Vice President Gore Writes for Slate"
},
{
"url": "https://slashdot.org/story/99/11/17/1445253/sourceforge-goes-public-beta",
"title": "SourceForge Goes Public Beta"
},
{
"url": "https://slashdot.org/story/99/11/17/0959226/worlds-oldest-book-is-gpled",
"title": "World's Oldest Book is GPLed"
},
{
"url": "https://slashdot.org/story/99/11/17/132213/blue-green-algae-announces-ipo",
"title": "Blue-Green Algae Announces IPO"
},
{
"url": "https://yro.slashdot.org/story/99/11/17/0937204/students-punished-for-personal-websites",
"title": "Students Punished for Personal Websites"
},
{
"url": "https://science.slashdot.org/story/99/11/15/0857259/leonid-meteor-shower-tonight",
"title": "Leonid Meteor Shower Tonight"
},
{
"url": "https://tech.slashdot.org/story/99/11/15/239226/report-from-orlando-the-lost-city-of-epcot",
"title": "Report from Orlando: The Lost City of Epcot"
},
{
"url": "https://news.slashdot.org/story/99/11/10/146228/sandman-the-dream-hunters",
"title": "Sandman: The Dream Hunters"
},
{
"url": "https://news.slashdot.org/story/99/11/17/0932210/bubbleboy-virus-gets-wild",
"title": "Bubbleboy Virus Gets Wild"
},
{
"url": "https://slashdot.org/story/99/11/17/0925210/new-mozilla-corel-and-napster-releases",
"title": "New Mozilla, Corel, and Napster Releases"
},
{
"url": "https://tech.slashdot.org/story/99/11/16/1155222/analog-40-released",
"title": "Analog 4.0 Released"
},
{
"url": "https://it.slashdot.org/story/99/11/16/0950232/decss-listed-on-downloadcom",
"title": "deCSS Listed On Download.com"
},
{
"url": "https://tech.slashdot.org/story/99/11/15/1356226/future-of-php-revealed",
"title": "Future of PHP Revealed"
},
{
"url": "https://slashdot.org/story/99/11/16/1350251/distributednet-does-csc",
"title": "Distributed.net Does CSC"
},
{
"url": "https://yro.slashdot.org/story/99/11/16/0018213/aclu-launches-echelonwatch",
"title": "ACLU Launches Echelonwatch"
},
{
"url": "https://news.slashdot.org/story/99/11/16/2225217/easy-mp3-distribution",
"title": "Easy MP3 Distribution"
},
{
"url": "https://slashdot.org/story/99/11/16/105239/sgi-to-build-commercial-linux-supercomputers",
"title": "SGI to Build Commercial Linux Supercomputers"
},
{
"url": "https://ask.slashdot.org/story/99/11/08/1928254/suggestions-for-a-startup-web-company",
"title": "Suggestions for a Startup Web Company"
},
{
"url": "https://news.slashdot.org/story/99/11/15/2231250/more-stupid-patent-tricks",
"title": "More Stupid Patent Tricks"
},
{
"url": "https://slashdot.org/story/99/11/16/1748244/how-the-web-was-almost-won",
"title": "How The Web Was Almost Won"
},
{
"url": "https://tech.slashdot.org/story/99/11/16/1337246/graphon-patents-remote-windows-apps-over-x",
"title": "GraphOn Patents Remote Windows Apps Over X"
},
{
"url": "https://linux.slashdot.org/story/99/11/15/1524248/a-linux-browser-war-in-the-making",
"title": "A Linux 'Browser War' in the Making?"
},
{
"url": "https://news.slashdot.org/story/99/11/16/1151244/mp3md-combo-player",
"title": "MP3/MD Combo Player"
},
{
"url": "https://slashdot.org/story/99/11/15/1615253/linus-speaks-at-comdex",
"title": "Linus speaks at Comdex"
},
{
"url": "https://yro.slashdot.org/story/99/11/12/1144210/truste-and-realnetworks-wrap-up",
"title": "TRUSTe and RealNetworks Wrap-Up"
},
{
"url": "https://it.slashdot.org/story/99/11/16/1017257/british-ww-ii-codebook-online",
"title": "British WW II Codebook Online"
},
{
"url": "https://yro.slashdot.org/story/99/11/14/1326237/copyright",
"title": "Copyright!"
},
{
"url": "https://slashdot.org/story/99/11/15/155237/microsoft-up-to-old-tricks-again",
"title": "Microsoft up to Old Tricks Again"
},
{
"url": "https://news.slashdot.org/story/99/11/02/1444245/the-broken-god",
"title": "The Broken God"
},
{
"url": "https://slashdot.org/story/99/11/16/098226/fcc-may-force-telcos-to-cut-rates-for-dsl-providers",
"title": "FCC May Force Telcos to Cut Rates for DSL Providers"
},
{
"url": "https://slashdot.org/story/99/11/15/2240236/gore-white-house-may-get-involved-in-ms-settlement-talks",
"title": "Gore: White House May Get Involved in MS Settlement Talks"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0338240/linux-freeswan-and-checkpoint-firewall1",
"title": "Linux FreeS/WAN and Checkpoint Firewall1"
},
{
"url": "https://science.slashdot.org/story/99/11/15/1830251/dna-as-construction-equipment",
"title": "DNA as Construction Equipment"
},
{
"url": "https://science.slashdot.org/story/99/11/15/2146206/grand-unified-theory-possible-by-2050",
"title": "Grand Unified Theory Possible by 2050"
},
{
"url": "https://hardware.slashdot.org/story/99/11/15/1923251/transmeta-details-continue-to-unravel",
"title": "Transmeta Details Continue to Unravel"
},
{
"url": "https://slashdot.org/story/99/11/15/1459235/ibm-doe-and-va-linux-building-open-cluster-center",
"title": "IBM, DOE, and VA Linux Building Open Cluster Center"
},
{
"url": "https://slashdot.org/story/99/11/15/1910226/just-a-spoonful-of-quickies",
"title": "Just a Spoonful of Quickies"
},
{
"url": "https://news.slashdot.org/story/99/11/15/1053201/analyzing-the-analysts",
"title": "Analyzing the Analysts"
},
{
"url": "https://linux.slashdot.org/story/99/11/15/1532253/red-hat-gets-new-ceo",
"title": "Red Hat Gets New CEO"
},
{
"url": "https://slashdot.org/story/99/11/14/209248/paul-vixie-to-leave-bind",
"title": "Paul Vixie to Leave BIND"
},
{
"url": "https://slashdot.org/story/99/11/14/1910200/corel-launches-corel-linux-with-webcast",
"title": "Corel Launches Corel Linux, with WebCast"
},
{
"url": "https://hardware.slashdot.org/story/99/11/15/1135201/sonypalm-to-team-up",
"title": "Sony/Palm To Team Up"
},
{
"url": "https://tech.slashdot.org/story/99/11/15/0915227/fiber-optic-world-records-broken",
"title": "Fiber Optic World Records Broken"
},
{
"url": "https://science.slashdot.org/story/99/11/15/1235238/hubble-space-telescope-goes-into-safe-mode",
"title": "Hubble Space Telescope Goes Into Safe Mode"
},
{
"url": "https://tech.slashdot.org/story/99/11/14/1620254/3dfx-unveils-info-regarding-voodoo-4-5",
"title": "3dfx Unveils Info Regarding Voodoo 4 & 5"
},
{
"url": "https://interviews.slashdot.org/story/99/11/15/127232/interview-ask-antitrust-experts-about-microsoft",
"title": "Interview: Ask Antitrust Experts About Microsoft"
},
{
"url": "https://slashdot.org/story/99/11/15/0655208/german-government-donates-250000-dm-to-gnu-privacy-guard",
"title": "German Government donates 250,000 DM to GNU Privacy Guard"
},
{
"url": "https://tech.slashdot.org/story/99/11/11/2329226/the-imagineer-who-came-in-from-the-cold",
"title": "The Imagineer Who Came In From The Cold"
},
{
"url": "https://news.slashdot.org/story/99/11/02/1458232/the-year-1000",
"title": "The Year 1000"
},
{
"url": "https://games.slashdot.org/story/99/11/15/0635235/quake3-demo-test-released",
"title": "Quake3 Demo Test Released"
},
{
"url": "https://linux.slashdot.org/story/99/11/15/0849250/its-official-red-hat-buys-cygnus",
"title": "It's Official: Red Hat Buys Cygnus"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0423200/quantifying-online-promotion-efforts",
"title": "Quantifying Online Promotion Efforts?"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/044229/what-to-do-when-your-domain-is-threatened",
"title": "What to do when your Domain is Threatened?"
},
{
"url": "https://linux.slashdot.org/story/99/11/14/0928215/nt-vs-linux---mindcraft-vindicates-itself",
"title": "NT vs. Linux - Mindcraft Vindicates Itself"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0420249/books-on-nanotechnology",
"title": "Books on Nanotechnology?"
},
{
"url": "https://science.slashdot.org/story/99/11/15/047202/penny-sized-cds",
"title": "Penny-Sized CDs"
},
{
"url": "https://linux.slashdot.org/story/99/11/14/1131223/helping-linux-newbies-move-to-the-next-level",
"title": "Helping Linux Newbies Move to the Next Level"
},
{
"url": "https://slashdot.org/story/99/11/14/0524254/activist-defends-dvd-hack",
"title": "Activist Defends DVD Hack"
},
{
"url": "https://it.slashdot.org/story/99/11/14/058247/nsa-has-patented-new-eavesdropping-technology",
"title": "NSA has Patented New Eavesdropping Technology"
},
{
"url": "https://news.slashdot.org/story/99/11/14/0458211/ray-bradbury-recovering-from-a-stroke",
"title": "Ray Bradbury Recovering from a Stroke"
},
{
"url": "https://slashdot.org/story/99/11/14/2137227/pentagon-says-improper-image-morphing-is-war-crime",
"title": "Pentagon Says Improper Image Morphing is War Crime"
},
{
"url": "https://hardware.slashdot.org/story/99/11/14/1830219/keyboard-video-mouse-kvm-switches",
"title": "Keyboard Video Mouse (KVM) Switches"
},
{
"url": "https://tech.slashdot.org/story/99/11/14/1933211/php4-beta3rc5-announced--php40b3-released",
"title": "PHP4 Beta3RC5 Announced / PHP4.0b3 Released"
},
{
"url": "https://tech.slashdot.org/story/99/11/13/2235223/miguel-de-icazas-startup",
"title": "Miguel de Icaza's startup"
},
{
"url": "https://slashdot.org/story/99/11/14/1420235/wto-may-extend-e-commerce-import-duty-moratorium",
"title": "WTO May Extend E-Commerce Import Duty Moratorium"
},
{
"url": "https://yro.slashdot.org/story/99/11/14/1433234/usenet-gag-order",
"title": "Usenet Gag Order"
},
{
"url": "https://games.slashdot.org/story/99/11/14/005257/spacewar-lives-again",
"title": "Spacewar! Lives Again"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0418215/old-fixed-sync-monitors-under-linux",
"title": "Old Fixed-Sync Monitors under Linux?"
},
{
"url": "https://linux.slashdot.org/story/99/11/14/0053242/linux-use-in-china---a-view-from-beijing",
"title": "Linux Use in China - a View From Beijing"
},
{
"url": "https://tech.slashdot.org/story/99/11/14/1039201/preliminary-apachecon-2000-session-schedule",
"title": "Preliminary ApacheCon 2000 Session Schedule"
},
{
"url": "https://science.slashdot.org/story/99/11/13/1341222/extrasolar-planet-detected-visually",
"title": "Extrasolar Planet Detected Visually"
},
{
"url": "https://linux.slashdot.org/story/99/11/13/2141228/red-hat-has-a-rocking-week",
"title": "Red Hat Has a Rocking Week"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0348229/open-source-document-management-and-revision-control",
"title": "Open Source Document Management and Revision Control?"
},
{
"url": "https://ask.slashdot.org/story/99/11/12/0341219/linux-connectivity-for-the-visor",
"title": "Linux Connectivity for the Visor"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/0253206/visual-effects-companies-in-ny-and-elsewhere",
"title": "Visual Effects Companies in NY and Elsewhere"
},
{
"url": "https://science.slashdot.org/story/99/11/13/1746239/the-starchild-project-claims-to-have-alien-skull",
"title": "The Starchild Project Claims to Have Alien Skull"
},
{
"url": "https://slashdot.org/story/99/11/13/0857215/introducing-open-source-to-the-doctors",
"title": "Introducing Open Source to the Doctors"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/1615216/broadcast-power-wireless-energy",
"title": "Broadcast Power? Wireless Energy?"
},
{
"url": "https://science.slashdot.org/story/99/11/13/0849235/combining-newold-approaches-for-nuclear-fusion",
"title": "Combining New/Old Approaches for Nuclear Fusion"
},
{
"url": "https://slashdot.org/story/99/11/12/1320259/focus-group-art",
"title": "Focus Group Art"
},
{
"url": "https://it.slashdot.org/story/99/11/13/0033235/secret-spam-summit-held-in-washington-dc",
"title": "Secret Spam Summit Held in Washington DC"
},
{
"url": "https://ask.slashdot.org/story/99/11/08/1916216/how-do-you-remember-your-passwords",
"title": "How do you Remember Your Passwords?"
},
{
"url": "https://tech.slashdot.org/story/99/11/12/1228254/xi-announces-hardware-accelerated-3d-x-server",
"title": "Xi Announces Hardware Accelerated 3D X Server"
},
{
"url": "https://slashdot.org/story/99/11/12/2215224/microsoft-buys-into-taiwanese-broadband-isp",
"title": "Microsoft Buys Into Taiwanese Broadband ISP"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/035241/how-do-tv-based-video-game-guns-work",
"title": "How do TV-Based Video Game Guns Work?"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/0311209/command-shells---the-quirks-the-pros-and-the-cons",
"title": "Command Shells - The Quirks, The Pros and The Cons"
},
{
"url": "https://tech.slashdot.org/story/99/11/12/0210244/has-aol-ruined-netscape",
"title": "Has AOL Ruined Netscape?"
},
{
"url": "https://slashdot.org/story/99/11/12/1935203/corel-wordperfect-office-2000-for-linux-beta-test",
"title": "Corel Wordperfect Office 2000 for Linux Beta Test"
},
{
"url": "https://slashdot.org/story/99/11/12/165218/who-owns-college-students-notes",
"title": "Who Owns College Students' Notes?"
},
{
"url": "https://games.slashdot.org/story/99/11/12/1055233/no-diablo-ii-this-year",
"title": "No Diablo II This Year"
},
{
"url": "https://it.slashdot.org/story/99/11/12/112255/pgpphone-source-released",
"title": "PGPphone Source Released"
},
{
"url": "https://linux.slashdot.org/story/99/11/12/0814228/linux-in-the-enterprise-fact-vs-fud",
"title": "Linux in the Enterprise: Fact vs. FUD"
},
{
"url": "https://linux.slashdot.org/story/99/11/12/1059222/fisher-price-childrens-game-for-linux",
"title": "Fisher-Price Children's game for Linux"
},
{
"url": "https://news.slashdot.org/story/99/11/12/1013246/interview-john-vranesevich-doesnt-really-answer",
"title": "Interview: John Vranesevich Doesn't Really Answer"
},
{
"url": "https://slashdot.org/story/99/11/12/0844228/the-strange-case-of-mahir-cagri",
"title": "The Strange Case of Mahir Cagri"
},
{
"url": "https://news.slashdot.org/story/99/11/12/0918212/slashdot-comdex-pregame-show",
"title": "Slashdot COMDEX Pregame Show"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/024200/multi-disk-cd-backup-solutions-for-linux",
"title": "Multi-Disk CD Backup Solutions for Linux?"
},
{
"url": "https://slashdot.org/story/99/11/12/0844234/the-bsa-going-after-irc-warez-channels",
"title": "The BSA Going After IRC Warez Channels"
},
{
"url": "https://tech.slashdot.org/story/99/11/12/0824221/why-mozilla-is-alive-and-well",
"title": "Why Mozilla is Alive and Well"
},
{
"url": "https://games.slashdot.org/story/99/11/12/0818240/sega-to-leave-console-business-updated",
"title": "Sega To Leave Console Business? (Updated)"
},
{
"url": "https://radio.slashdot.org/story/99/11/12/0858208/live-from-a-sunspot",
"title": "Live from a Sunspot"
},
{
"url": "https://developers.slashdot.org/story/99/11/11/1231246/ibm-releases-visualage-for-java-for-linux-30",
"title": "IBM releases VisualAge for Java for Linux 3.0"
},
{
"url": "https://ask.slashdot.org/story/99/11/11/020234/linux-drivers-for-siliteks-sm-1000-ir-remote",
"title": "Linux Drivers for Silitek's SM-1000 IR Remote?"
},
{
"url": "https://news.slashdot.org/story/99/11/11/121219/the-latest-transmeta-rumor",
"title": "The Latest Transmeta Rumor"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/238223/how-do-you-define-operating-system",
"title": "How do you Define \"Operating System\"?"
},
{
"url": "https://bsd.slashdot.org/story/99/11/12/0434253/iserver-migrating-to-freebsd",
"title": "iServer Migrating to FreeBSD"
},
{
"url": "https://slashdot.org/story/99/11/11/2142245/intel-allowed-to-buy-digital-signal-processor-co",
"title": "Intel Allowed to Buy Digital Signal Processor Co."
},
{
"url": "https://ask.slashdot.org/story/99/11/11/0148231/ultra-quiet-linux-boxes",
"title": "Ultra-Quiet Linux Boxes?"
},
{
"url": "https://yro.slashdot.org/story/99/11/11/1548239/ietf-rejects-wiretapping",
"title": "IETF Rejects Wiretapping"
},
{
"url": "https://linux.slashdot.org/story/99/11/11/1942248/linux-on-jeopardy",
"title": "Linux on Jeopardy"
},
{
"url": "https://slashdot.org/story/99/11/11/1558232/microsoft-teaming-up-with-radioshack",
"title": "Microsoft Teaming up with RadioShack"
},
{
"url": "https://science.slashdot.org/story/99/11/10/155203/testing-the-theory-of-relativity",
"title": "Testing the Theory of Relativity"
},
{
"url": "https://yro.slashdot.org/story/99/11/08/0635216/the-future-of-computing",
"title": "The Future of Computing"
},
{
"url": "https://tech.slashdot.org/story/99/11/10/1859208/wearable-translator-to-debut-at-comdex",
"title": "Wearable Translator to Debut at Comdex"
},
{
"url": "https://tech.slashdot.org/story/99/11/11/0826233/top-500-supercomputers",
"title": "Top 500 Supercomputers"
},
{
"url": "https://tech.slashdot.org/story/99/11/11/1220207/samba-206-released",
"title": "Samba 2.06 Released"
},
{
"url": "https://slashdot.org/story/99/11/11/0933210/staroffice-significantly-delayed",
"title": "StarOffice Significantly Delayed"
},
{
"url": "https://ask.slashdot.org/story/99/11/08/199225/usernamepassword---is-it-still-secure",
"title": "Username/Password - Is It Still Secure?"
},
{
"url": "https://hardware.slashdot.org/story/99/11/11/0850205/linux-on-palm",
"title": "Linux on Palm"
},
{
"url": "https://slashdot.org/story/99/11/10/1259242/its-the-architecture-stupid",
"title": "It's the Architecture, Stupid"
},
{
"url": "https://slashdot.org/story/99/11/11/0852257/yahoo-patents-dynamic-page-generator",
"title": "Yahoo Patents Dynamic Page Generator"
},
{
"url": "https://linux.slashdot.org/story/99/11/11/0741255/esr-dismisses-prc-official-linux-announcement",
"title": "ESR Dismisses PRC \"Official Linux\" Announcement"
},
{
"url": "https://ask.slashdot.org/story/99/11/10/0351242/how-can-you-reduce-disk-swapping-in-linux",
"title": "How can you Reduce Disk Swapping in Linux?"
},
{
"url": "https://hardware.slashdot.org/story/99/11/10/1235226/freepad-a-linux-handheld-wireless-computer",
"title": "FreePad: A Linux Handheld Wireless Computer"
},
{
"url": "https://linux.slashdot.org/story/99/11/11/0732259/oracle-and-red-hat-e-commerce-partnership",
"title": "Oracle and Red Hat E-Commerce Partnership"
},
{
"url": "https://ask.slashdot.org/story/99/11/10/0323258/configuring-freebsd-firewall-for-netmeeting",
"title": "Configuring FreeBSD Firewall for NetMeeting?"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/0243204/project-management-tool-for-linux",
"title": "Project Management Tool for Linux?"
},
{
"url": "https://tech.slashdot.org/story/99/11/10/2126205/transmeta-to-release-processor-in-january",
"title": "Transmeta to Release Processor in January?"
},
{
"url": "https://slashdot.org/story/99/11/10/1723213/ibm-selling-20-2048x1536-lcd",
"title": "IBM Selling 20\" 2048x1536 LCD"
},
{
"url": "https://linux.slashdot.org/story/99/11/10/1457205/linux-to-be-official-os-of-peoples-republic-of-china",
"title": "Linux to be Official OS of People's Republic of China"
},
{
"url": "https://slashdot.org/story/99/11/10/1351229/us-is-just-about-ok-for-y2k",
"title": "U.S. is \"Just About OK for Y2K\""
},
{
"url": "https://news.slashdot.org/story/99/11/10/160257/xmms-plugin-competition",
"title": "XMMS Plugin Competition"
},
{
"url": "https://slashdot.org/story/99/11/09/1651211/new-dns-software-to-address-security-holes",
"title": "New DNS Software to Address Security Holes"
},
{
"url": "https://yro.slashdot.org/story/99/11/10/1331224/tap-tap-tapping-the-net",
"title": "Tap-Tap-Tapping the Net"
},
{
"url": "https://slashdot.org/story/99/11/10/1255232/everything-microsoft",
"title": "Everything Microsoft"
},
{
"url": "https://tech.slashdot.org/story/99/11/08/1211228/orlando-and-the-tragedy-of-technology",
"title": "Orlando and the Tragedy of Technology"
},
{
"url": "https://slashdot.org/story/99/11/09/1645256/another-distributed-computing-effort-csc",
"title": "Another Distributed Computing Effort: CSC"
},
{
"url": "https://news.slashdot.org/story/99/11/10/1118237/48g-portable-mp3-player",
"title": "4.8G Portable MP3 Player"
},
{
"url": "https://slashdot.org/story/99/11/10/1032235/sony-and-sun-form-net-appliance-pact",
"title": "Sony and Sun Form Net Appliance Pact"
},
{
"url": "https://ask.slashdot.org/story/99/11/10/0318200/what-is-a-good-printer-for-linux",
"title": "What is a Good Printer for Linux?"
},
{
"url": "https://slashdot.org/story/99/11/10/101250/hp-releases-e-speak-under-gpl",
"title": "HP Releases E-Speak under GPL"
},
{
"url": "https://yro.slashdot.org/story/99/11/10/0827242/house-passes-digital-signature-bill",
"title": "House Passes Digital Signature Bill"
},
{
"url": "https://linux.slashdot.org/story/99/11/10/0823222/red-hat-buying-cygnus",
"title": "Red Hat Buying Cygnus?"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2326217/it-salary-comparisons-worldwide",
"title": "IT Salary Comparisons Worldwide"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/0238203/legal-ramifications-of-microsoft-benchmarks",
"title": "Legal Ramifications of Microsoft Benchmarks?"
},
{
"url": "https://it.slashdot.org/story/99/11/09/2229225/hotmail-implements-spam-filter-system",
"title": "Hotmail Implements Spam Filter System"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/0228231/small-office-multimedia-speakers",
"title": "Small Office Multimedia Speakers?"
},
{
"url": "https://slashdot.org/story/99/11/09/226238/new-virus-can-strike-via-html-e-mail",
"title": "New Virus Can Strike Via HTML E-Mail"
},
{
"url": "https://games.slashdot.org/story/99/11/09/1822201/linuxgl-port-of-wolfenstein-3d",
"title": "Linux/GL port of Wolfenstein 3D"
},
{
"url": "https://ask.slashdot.org/story/99/11/08/204231/is-spidering-content-from-the-web-illegal",
"title": "Is Spidering Content from the Web Illegal?"
},
{
"url": "https://news.slashdot.org/story/99/11/09/147211/nazi-codebreaking-documentary",
"title": "Nazi Codebreaking Documentary"
},
{
"url": "https://tech.slashdot.org/story/99/11/09/1627218/apaches-xml-site-and-services-are-official",
"title": "Apache's XML Site and Services are Official"
},
{
"url": "https://slashdot.org/story/99/11/09/1354214/microsoft-to-go-straight-to-the-supreme-court",
"title": "Microsoft To Go Straight to the Supreme Court?"
},
{
"url": "https://it.slashdot.org/story/99/11/09/1342207/dvd-situation-takes-new-turn",
"title": "DVD Situation Takes New Turn"
},
{
"url": "https://bsd.slashdot.org/story/99/11/09/0644246/ex-novell-ceo-praises-freebsd",
"title": "Ex-Novell CEO praises FreeBSD"
},
{
"url": "https://tech.slashdot.org/story/99/11/09/0956233/lucent-makes-10-terabit-router",
"title": "Lucent Makes 10 Terabit Router"
},
{
"url": "https://yro.slashdot.org/story/99/11/09/0716225/ftc-petitioned-on-data-profiling",
"title": "FTC Petitioned on Data Profiling"
},
{
"url": "https://news.slashdot.org/story/99/11/02/115250/5-novels",
"title": "5 Novels"
},
{
"url": "https://news.slashdot.org/story/99/11/09/0728255/cmu-cuts-off-net-access-for-71-students-over-mp3s",
"title": "CMU Cuts off Net Access for 71 Students Over MP3s"
},
{
"url": "https://slashdot.org/story/99/11/09/096223/suns-majc-vs-intels-ia-64",
"title": "Sun's MAJC vs Intel's IA-64"
},
{
"url": "https://tech.slashdot.org/story/99/11/09/0759240/2-megabit-bandwidth-for-your-cell-phone",
"title": "2-Megabit Bandwidth for Your Cell Phone"
},
{
"url": "https://linux.slashdot.org/story/99/11/09/0044246/bringing-cad-to-linux",
"title": "Bringing CAD to Linux"
},
{
"url": "https://bsd.slashdot.org/story/99/11/09/068214/openbsd-review-at-linuxcom",
"title": "OpenBSD review at linux.com"
},
{
"url": "https://hardware.slashdot.org/story/99/11/09/0033242/legacy-free-pcs-appearing-everywhere",
"title": "'Legacy-Free' PCs Appearing Everywhere"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/0226203/portable-data-collection-terminals",
"title": "Portable Data Collection Terminals?"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/023215/athlon-bugs-in-linux-22",
"title": "Athlon Bugs in Linux 2.2?"
},
{
"url": "https://it.slashdot.org/story/99/11/08/2139232/distributednet-releases-csc-and-ogr-clients",
"title": "Distributed.net releases CSC and OGR clients"
},
{
"url": "https://ask.slashdot.org/story/99/11/09/0139246/microsoft-trial-and-the-effect-on-the-dow",
"title": "Microsoft Trial and the Effect on the Dow?"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/230230/expanding-vulnerability-of-the-net",
"title": "Expanding Vulnerability of the Net"
},
{
"url": "https://slashdot.org/story/99/11/08/1950251/50-of-compaq-server-customers-using-linux",
"title": "~50% of Compaq Server Customers Using Linux"
},
{
"url": "https://tech.slashdot.org/story/99/11/08/1742253/disposable-cell-phones",
"title": "Disposable Cell Phones"
},
{
"url": "https://ask.slashdot.org/story/99/11/08/1920246/return-of-the-old-school-text-app",
"title": "Return of the Old-School Text App?"
},
{
"url": "https://ask.slashdot.org/story/99/11/08/1857235/software-for-dynamic-transactionnetwork-diagrams",
"title": "Software for Dynamic Transaction/Network Diagrams?"
},
{
"url": "https://developers.slashdot.org/story/99/11/08/097259/java-on-beos-supported-by-sun",
"title": "Java on BeOS, supported by Sun"
},
{
"url": "https://linux.slashdot.org/story/99/11/08/145228/ebay-chooses-debian-for-wireless-servers",
"title": "eBay Chooses Debian for Wireless Servers"
},
{
"url": "https://news.slashdot.org/story/99/11/08/1226255/mainstream-media-on-slashdot-and-microsoft",
"title": "Mainstream Media on Slashdot and Microsoft"
},
{
"url": "https://tech.slashdot.org/story/99/11/08/139232/computer-current-getting-support-for-open-source",
"title": "Computer Current: Getting support for Open Source"
},
{
"url": "https://news.slashdot.org/story/99/11/08/1021204/interview-grill-john-vranesevich-of-antionline",
"title": "Interview: Grill John Vranesevich of AntiOnline"
},
{
"url": "https://slashdot.org/story/99/11/08/116242/candidates-for-1999-gnu-free-software-award",
"title": "Candidates for 1999 GNU Free Software Award"
},
{
"url": "https://tech.slashdot.org/story/99/11/08/1133211/ibmsun-and-others-to-help-apache-support-xml",
"title": "IBM,Sun and Others to Help Apache Support XML"
},
{
"url": "https://features.slashdot.org/story/99/11/07/1750211/the-post-microsoft-era",
"title": "The Post-Microsoft Era"
},
{
"url": "https://slashdot.org/story/99/11/08/1021238/talks-from-freebsd-con-available",
"title": "Talks from FreeBSD Con available"
},
{
"url": "https://news.slashdot.org/story/99/11/02/1115243/user-friendly-the-book",
"title": "User Friendly: The Book"
},
{
"url": "https://yro.slashdot.org/story/99/11/08/093250/coming-to-a-desktop-near-you-tempest-capabilities",
"title": "Coming to a Desktop near you: Tempest Capabilities"
},
{
"url": "https://yro.slashdot.org/story/99/11/05/1021214/truste-decides-its-own-fate-today",
"title": "TRUSTe Decides Its Own Fate Today"
},
{
"url": "https://slashdot.org/story/99/11/08/0812254/us-military-grapples-with-cyber-warfare-rules",
"title": "U.S. Military Grapples With Cyber Warfare Rules"
},
{
"url": "https://hardware.slashdot.org/story/99/11/08/082223/does-ati-have-a-geforce-256-killer",
"title": "Does ATi Have a GeForce 256 Killer?"
},
{
"url": "https://slashdot.org/story/99/11/08/080201/applications-service-providers-may-change-your-life",
"title": "Applications Service Providers May Change Your Life"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2141246/finding-an-intellectual-property-patent-lawyer",
"title": "Finding an Intellectual Property Patent Lawyer?"
},
{
"url": "https://news.slashdot.org/story/99/11/07/1913240/david-bowie-talks-about-technology-and-music",
"title": "David Bowie talks about Technology and Music"
},
{
"url": "https://tech.slashdot.org/story/99/11/07/1732243/another-linux--apache-sucess-story",
"title": "Another Linux / Apache sucess story"
},
{
"url": "https://linux.slashdot.org/story/99/11/07/1611205/debian-freeze-rescheduled",
"title": "Debian Freeze Rescheduled"
},
{
"url": "https://slashdot.org/story/99/11/07/1546246/the-hat-trap",
"title": "The Hat Trap"
},
{
"url": "https://slashdot.org/story/99/11/07/127219/lotus-domino-to-ship-rsn",
"title": "Lotus Domino to ship RSN"
},
{
"url": "https://news.slashdot.org/story/99/11/07/0845212/digital-television-transmission-standards",
"title": "Digital Television Transmission Standards"
},
{
"url": "https://developers.slashdot.org/story/99/11/02/1052223/the-jfc-swing-tutorial",
"title": "The JFC Swing Tutorial"
},
{
"url": "https://slashdot.org/story/99/11/07/0840200/lightning-on-demand",
"title": "Lightning On Demand"
},
{
"url": "https://science.slashdot.org/story/99/11/07/0833206/new-genetic-information-web-portal",
"title": "New Genetic Information Web Portal"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2321243/online-romance---for-good-or-evil",
"title": "Online Romance - For Good or Evil?"
},
{
"url": "https://linux.slashdot.org/story/99/11/06/1758233/first-journaling-fs-for-linux",
"title": "First Journaling FS for Linux"
},
{
"url": "https://tech.slashdot.org/story/99/11/06/1747232/communicator-is-losing-the-war",
"title": "Communicator Is Losing The War....."
},
{
"url": "https://yro.slashdot.org/story/99/11/06/1347228/realplayer-uploads-your-id-too",
"title": "RealPlayer Uploads Your ID Too"
},
{
"url": "https://slashdot.org/story/99/11/06/140237/microsoft-adresses-world",
"title": "Microsoft Adresses World"
},
{
"url": "https://linux.slashdot.org/story/99/11/06/1018228/checkpoint-porting-firewall-1-to-linux",
"title": "Checkpoint Porting Firewall-1 to Linux"
},
{
"url": "https://slashdot.org/story/99/11/06/1016209/rick-moen-on-linuxones-ipo",
"title": "Rick Moen on LinuxOne's IPO"
},
{
"url": "https://tech.slashdot.org/story/99/11/06/0921255/e-commerce-under-apache",
"title": "E-Commerce under Apache"
},
{
"url": "https://slashdot.org/story/99/11/05/2312254/vote-in-a-cnn-poll-on-the-doj-ms-ruling",
"title": "Vote in a CNN Poll on the DOJ MS Ruling"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2358206/thoughts-on-the-ibm-13g-deskstar",
"title": "Thoughts on the IBM 13G Deskstar?"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2245248/the-do-it-all-remote",
"title": "The Do-It-All Remote?"
},
{
"url": "https://news.slashdot.org/story/99/11/05/2129207/geeks-in-space-easy-listening",
"title": "Geeks In Space: Easy Listening"
},
{
"url": "https://features.slashdot.org/story/99/11/05/2016212/slashdots-instant-legal-analysis-of-the-ms-ruling",
"title": "Slashdot's \"Instant\" Legal Analysis of the MS Ruling"
},
{
"url": "https://yro.slashdot.org/story/99/11/05/1841214/microsoft--monopoly-says-judge",
"title": "Microsoft == Monopoly says Judge"
},
{
"url": "https://slashdot.org/story/99/11/05/1521233/sgi-announces-linux-kernel-crash-dumps-lkcd",
"title": "SGI announces Linux Kernel Crash Dumps (LKCD)"
},
{
"url": "https://it.slashdot.org/story/99/11/05/1341211/insightful-interview-with-ross-anderson",
"title": "Insightful interview with Ross Anderson"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2329249/linux-on-a-magazine-cover",
"title": "Linux on a Magazine Cover?"
},
{
"url": "https://features.slashdot.org/story/99/11/05/144251/the-battle-that-could-lose-us-the-war",
"title": "The Battle That Could Lose Us The War"
},
{
"url": "https://yro.slashdot.org/story/99/11/05/1158259/legal-actions-against-linux-dvd-authors",
"title": "Legal Actions Against Linux-DVD authors"
},
{
"url": "https://tech.slashdot.org/story/99/11/05/0947259/amazoncom-switches-to-apache",
"title": "Amazon.com switches to Apache"
},
{
"url": "https://slashdot.org/story/99/11/05/1113248/cobalt-ipo-openshigh",
"title": "Cobalt IPO Opens...High"
},
{
"url": "https://tech.slashdot.org/story/99/11/04/1716225/interview-queen-elizabeth-iis-webmaster-answers",
"title": "Interview: Queen Elizabeth II's Webmaster Answers"
},
{
"url": "https://yro.slashdot.org/story/99/11/05/0951216/usvms-ruling-expected-today",
"title": "USvMS Ruling Expected Today"
},
{
"url": "https://news.slashdot.org/story/99/11/04/125229/netslaves",
"title": "NetSlaves"
},
{
"url": "https://hardware.slashdot.org/story/99/11/05/0857253/palmpilot-fullsize-keyboard",
"title": "PalmPilot Fullsize Keyboard"
},
{
"url": "https://slashdot.org/story/99/11/05/0814243/caldera-vs-microsoft-goes-to-jury-trial",
"title": "Caldera vs. Microsoft Goes to Jury Trial"
},
{
"url": "https://tech.slashdot.org/story/99/11/04/2023242/nvidia--opengl--linux",
"title": "NVidia + OpenGL + Linux"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2338236/zen-clone-for-linux",
"title": "Z.E.N. Clone for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2250212/linux-based-solution-for-massive-tape-library",
"title": "Linux-based Solution for Massive Tape Library?"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2237232/help-desk-software-for-linux",
"title": "Help Desk Software for Linux?"
},
{
"url": "https://games.slashdot.org/story/99/11/04/205245/loki-hack-99-patches-available",
"title": "Loki Hack '99 Patches available"
},
{
"url": "https://slashdot.org/story/99/11/04/1615232/quickie-fu",
"title": "Quickie Fu"
},
{
"url": "https://slashdot.org/story/99/11/04/1439239/the-internet-taxi-that-couldnt-connect",
"title": "The Internet Taxi That Couldn't Connect"
},
{
"url": "https://slashdot.org/story/99/11/04/1349230/tru64-unix-for-hobbyists-99",
"title": "Tru64 UNIX for Hobbyists: $99"
},
{
"url": "https://linux.slashdot.org/story/99/11/03/2022205/e-commerce-and-linux",
"title": "E-commerce and Linux"
},
{
"url": "https://tech.slashdot.org/story/99/11/04/1434252/cybernetics-prof-to-attempt-computer-control-of-own-limbs",
"title": "Cybernetics Prof to Attempt Computer Control of Own Limbs"
},
{
"url": "https://slashdot.org/story/99/11/04/163232/stallman-responds-to-linuxworld-gpl-article",
"title": "Stallman Responds to LinuxWorld GPL Article"
},
{
"url": "https://yro.slashdot.org/story/99/11/04/1320231/blind-sue-aol-for-ada-non-compliance",
"title": "Blind Sue AOL for ADA Non-Compliance"
},
{
"url": "https://slashdot.org/story/99/11/04/1349227/corel-linux-coming-online---not",
"title": "Corel Linux coming Online - NOT"
},
{
"url": "https://tech.slashdot.org/story/99/11/04/1415200/post-hacked-dvd-where-to-go",
"title": "Post-Hacked DVD: Where to Go?"
},
{
"url": "https://linux.slashdot.org/story/99/11/04/1048252/upside-article-on-embedded-linux",
"title": "Upside Article On Embedded Linux"
},
{
"url": "https://slashdot.org/story/99/11/04/1148246/my-christmas-wishlist-monitor",
"title": "My Christmas Wishlist Monitor"
},
{
"url": "https://news.slashdot.org/story/99/11/04/0912233/linkage-between-cell-phone-usage-and-long-term-memory-loss",
"title": "Linkage between Cell-phone Usage and Long Term Memory Loss"
},
{
"url": "https://features.slashdot.org/story/99/11/03/1117256/a-post-columbine-halloween-horror-story",
"title": "A Post-Columbine Halloween Horror Story"
},
{
"url": "https://news.slashdot.org/story/99/11/02/1015206/teranesia",
"title": "Teranesia"
},
{
"url": "https://slashdot.org/story/99/11/04/0825202/more-on-the-ms-x-box",
"title": "More on the MS \"X-Box\""
},
{
"url": "https://news.slashdot.org/story/99/11/04/098257/more-info-on-matrix-sequels",
"title": "More Info on Matrix Sequels"
},
{
"url": "https://tech.slashdot.org/story/99/11/04/080255/latest-netcraft-survey",
"title": "Latest Netcraft Survey"
},
{
"url": "https://games.slashdot.org/story/99/11/03/2310232/heroes-iii-coming-to-linux",
"title": "Heroes III Coming to Linux"
},
{
"url": "https://slashdot.org/story/99/11/03/2256225/the-top-unix-moments-of-the-century",
"title": "The Top UNIX Moments of the Century"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2348241/postgres-winnt-and-cygwin-licensing",
"title": "Postgres, WinNT and CygWin Licensing"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2117258/linux-intrustion-detection",
"title": "Linux Intrustion Detection?"
},
{
"url": "https://ask.slashdot.org/story/99/11/03/2112250/how-do-you-configure-a-secure-dsl-network",
"title": "How do you Configure a Secure DSL Network?"
},
{
"url": "https://linux.slashdot.org/story/99/11/03/2017204/open-source-component-repository",
"title": "Open-Source Component Repository?"
},
{
"url": "https://slashdot.org/story/99/11/03/1644219/the-rare-glitch-project",
"title": "The Rare Glitch Project"
},
{
"url": "https://science.slashdot.org/story/99/11/03/1558251/single-molecule-memory",
"title": "Single Molecule Memory"
},
{
"url": "https://bsd.slashdot.org/story/99/11/03/1543228/applixware-for-freebsd",
"title": "Applixware for FreeBSD"
},
{
"url": "https://news.slashdot.org/story/99/11/03/1258257/echelon-confirmed-by-australians",
"title": "Echelon Confirmed by Australians"
},
{
"url": "https://linux.slashdot.org/story/99/11/03/1053226/debian-freezing",
"title": "Debian Freezing"
},
{
"url": "https://it.slashdot.org/story/99/11/03/1030228/why-dvd-encryption-crack-was-a-cinch",
"title": "Why DVD Encryption Crack was a Cinch"
},
{
"url": "https://linux.slashdot.org/story/99/11/03/0858214/new-commercial-linux-distro-based-on-debian",
"title": "New Commercial Linux Distro Based on Debian"
},
{
"url": "https://yro.slashdot.org/story/99/11/03/1025206/yahoo-censoring-their-message-boards",
"title": "Yahoo Censoring Their Message Boards?"
},
{
"url": "https://yro.slashdot.org/story/99/11/02/217203/markle-foundation-funds-icann",
"title": "Markle Foundation Funds ICANN"
},
{
"url": "https://news.slashdot.org/story/99/10/28/1415249/e-business-roadmap-for-success",
"title": "e-Business: Roadmap for Success"
},
{
"url": "https://tech.slashdot.org/story/99/11/03/0917216/3d-window-manager",
"title": "3D Window Manager"
},
{
"url": "https://it.slashdot.org/story/99/11/03/0847207/house-nixes-digital-signature-bill",
"title": "House Nixes Digital Signature Bill"
},
{
"url": "https://tech.slashdot.org/story/99/11/03/0721233/robofly",
"title": "RoboFly"
},
{
"url": "https://yro.slashdot.org/story/99/11/03/0718216/australia---censorship-overload",
"title": "Australia - Censorship Overload"
},
{
"url": "https://science.slashdot.org/story/99/11/02/1943205/slugbot-the-slug-powered-slug-hunting-robot",
"title": "SlugBot, the Slug-Powered Slug-Hunting Robot"
},
{
"url": "https://slashdot.org/story/99/11/03/0237243/packard-bell-to-shut-down-us-line-lay-off-80",
"title": "Packard Bell to Shut Down US Line, Lay Off 80%"
},
{
"url": "https://news.slashdot.org/story/99/11/02/1057201/convert-a-boeing-727-into-a-home",
"title": "Convert a Boeing 727 Into a Home"
},
{
"url": "https://linux.slashdot.org/story/99/11/02/1658253/linuxone-releases-a-product",
"title": "LinuxOne Releases a Product"
},
{
"url": "https://linux.slashdot.org/story/99/11/02/1617230/suse-coming-on-dvd",
"title": "SuSE Coming on DVD"
},
{
"url": "https://tech.slashdot.org/story/99/11/02/0844212/wine-991031-hallowine-released",
"title": "WINE 991031 (Hallowine) Released"
},
{
"url": "https://slashdot.org/story/99/11/02/141243/vdsl-demoed",
"title": "VDSL Demoed"
},
{
"url": "https://hardware.slashdot.org/story/99/11/02/1251243/creative-labs-gpls-dxr2-dvd-decoder-drivers",
"title": "Creative Labs GPLs dxr2 DVD Decoder Drivers"
},
{
"url": "https://ask.slashdot.org/story/99/10/20/1246241/perl-domination-in-cgi-programming",
"title": "Perl Domination in CGI Programming?"
},
{
"url": "https://tech.slashdot.org/story/99/11/02/1131249/passwords-for-mysql-apache-samba----all-at-once",
"title": "Passwords for MySQL, Apache, Samba -- all at once?"
},
{
"url": "https://news.slashdot.org/story/99/11/02/1011212/townshend-and-generative-lifehouse",
"title": "Townshend and Generative Lifehouse"
},
{
"url": "https://slashdot.org/story/99/11/02/1027204/microsoft-announces-w2k-pricing",
"title": "Microsoft Announces W2K Pricing"
},
{
"url": "https://science.slashdot.org/story/99/10/28/1133200/nanosystems",
"title": "Nanosystems"
},
{
"url": "https://yro.slashdot.org/story/99/11/02/0941227/realnetworks-to-create-patch-to-block-personal-data",
"title": "RealNetworks to Create Patch to Block Personal Data"
},
{
"url": "https://linux.slashdot.org/story/99/11/02/0936223/first-mixed-hdl-simulator-for-linux",
"title": "First mixed-HDL Simulator for Linux"
},
{
"url": "https://hardware.slashdot.org/story/99/11/02/0732255/aureal-to-release-linux-driverssource-code",
"title": "Aureal to release Linux drivers/source code"
},
{
"url": "https://linux.slashdot.org/story/99/11/02/0032227/japanese-pc-manufacturers-preinstalling-linux",
"title": "Japanese PC Manufacturers Preinstalling Linux"
},
{
"url": "https://yro.slashdot.org/story/99/11/02/0720258/after-toshibas-settlement-others-follow-lawsuit",
"title": "After Toshiba's settlement, Others Follow (Law)suit"
},
{
"url": "https://science.slashdot.org/story/99/11/02/0027216/hiv-gene-offers-potential-cancer-cure",
"title": "HIV Gene Offers Potential Cancer Cure"
},
{
"url": "https://bsd.slashdot.org/story/99/11/02/0442207/november-daemonnews-is-out",
"title": "November DaemonNews is out"
},
{
"url": "https://yro.slashdot.org/story/99/11/01/2047228/popular--common-sense-y2k-fix-patented",
"title": "Popular (& Common Sense) Y2k Fix Patented"
},
{
"url": "https://linux.slashdot.org/story/99/11/01/2224250/the-linux-kernel-archives-gets-major-update",
"title": "The Linux Kernel Archives Gets Major Update"
},
{
"url": "https://slashdot.org/story/99/11/01/2330229/pentium-iii-hits-1ghz",
"title": "Pentium III hits 1Ghz"
},
{
"url": "https://slashdot.org/story/99/11/01/1922240/the-year2000-tex-calendar",
"title": "The \\year=2000 TeX calendar"
},
{
"url": "https://science.slashdot.org/story/99/11/01/1252243/oil-isnt-from-dinosaurs-other-iconoclasms",
"title": "Oil Isn't from Dinosaurs & Other Iconoclasms"
},
{
"url": "https://slashdot.org/story/99/11/01/1720212/iowa-to-test-forms-of-internet-voting",
"title": "Iowa to test forms of Internet voting"
},
{
"url": "https://hardware.slashdot.org/story/99/11/01/1517200/palms-in-the-classroom-and-a-contest",
"title": "Palms in the Classroom and a Contest"
},
{
"url": "https://slashdot.org/story/99/11/01/1325242/geeks-silicon-valley-and-politics",
"title": "Geeks, Silicon Valley, and Politics"
},
{
"url": "https://slashdot.org/story/99/11/01/1435209/corel-linux-to-be-bundled-w20-million-motherboards",
"title": "Corel Linux to be Bundled w/20 Million motherboards"
},
{
"url": "https://tech.slashdot.org/story/99/11/01/1310214/towards-molecular-computing",
"title": "Towards Molecular Computing"
},
{
"url": "https://hardware.slashdot.org/story/99/11/01/1038209/one-chip-for-all-your-wireless-needs",
"title": "One Chip For All Your Wireless Needs"
},
{
"url": "https://linux.slashdot.org/story/99/11/01/1246215/red-hat-forms-non-profit-open-source-group",
"title": "Red Hat Forms non-Profit Open Source Group"
},
{
"url": "https://linux.slashdot.org/story/99/10/31/1858209/interview-query-queen-elizabeth-iis-webmaster",
"title": "Interview: Query Queen Elizabeth II's Webmaster"
},
{
"url": "https://games.slashdot.org/story/99/11/01/0840256/review-railroad-tycoon-ii-gold-for-linux",
"title": "Review: Railroad Tycoon II Gold for Linux"
},
{
"url": "https://bsd.slashdot.org/story/99/10/30/2053214/linuxworld-article-about-freebsdcon",
"title": "LinuxWorld article about FreeBSDCon"
},
{
"url": "https://slashdot.org/story/99/11/01/0832209/information-exchange-programs",
"title": "Information Exchange Programs"
},
{
"url": "https://slashdot.org/story/99/10/30/0936212/investment-advisor-alleges-ms-financial-fraud",
"title": "Investment Advisor Alleges MS Financial Fraud"
},
{
"url": "https://yro.slashdot.org/story/99/11/01/082206/realnetworks-realjukebox-monitors-user-habits",
"title": "RealNetworks' RealJukeBox Monitors User Habits"
},
{
"url": "https://games.slashdot.org/story/99/11/01/0750211/wolfenstein-2000-confirmed",
"title": "Wolfenstein 2000 Confirmed"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2325206/anti-ballistic-missile-weapons",
"title": "Anti-Ballistic Missile Weapons?"
},
{
"url": "https://slashdot.org/story/99/10/31/205200/cobalt-public-date-announced",
"title": "Cobalt Public Date Announced"
},
{
"url": "https://news.slashdot.org/story/99/10/31/1343235/spielberg-to-direct-wallace-and-gromit",
"title": "Spielberg to Direct Wallace and Gromit?"
},
{
"url": "https://tech.slashdot.org/story/99/10/31/1337238/are-you-ready-for-burn-all-gifs-day",
"title": "Are You Ready For Burn All GIFs Day?"
},
{
"url": "https://features.slashdot.org/story/99/10/31/1059238/how-the-internet-boom-harms-society",
"title": "How the Internet Boom Harms Society"
},
{
"url": "https://slashdot.org/story/99/10/30/1016222/a-sysadmins-worst-halloween-fears",
"title": "A Sysadmin's Worst Halloween Fears"
},
{
"url": "https://news.slashdot.org/story/99/10/30/2132227/seeking-a-ghost-via-web-cam",
"title": "Seeking a Ghost via Web Cam"
},
{
"url": "https://news.slashdot.org/story/99/10/30/2321235/watching-dvds-in-linux-howto",
"title": "Watching DVDs in Linux HOWTO"
},
{
"url": "https://hardware.slashdot.org/story/99/10/30/2057203/guillemot-acquires-hercules",
"title": "Guillemot Acquires Hercules"
},
{
"url": "https://news.slashdot.org/story/99/10/30/1743232/minor-slashdot-updates",
"title": "Minor Slashdot Updates"
},
{
"url": "https://slashdot.org/story/99/10/30/1256237/alien-contact-illegal-in-us",
"title": "Alien Contact Illegal in US"
},
{
"url": "https://news.slashdot.org/story/99/10/30/1253219/toshiba-settling-billion-dollar-lawsuit",
"title": "Toshiba Settling Billion Dollar Lawsuit"
},
{
"url": "https://slashdot.org/story/99/10/30/0850226/long-delayed-rambus-machines-may-show-at-comdex",
"title": "Long-Delayed Rambus Machines May Show at Comdex"
},
{
"url": "https://tech.slashdot.org/story/99/10/30/090259/propaganda-news-and-irc-party",
"title": "Propaganda News and IRC Party"
},
{
"url": "https://slashdot.org/story/99/10/29/2054241/grass-geographic-information-system-now-under-gpl",
"title": "GRASS Geographic Information System now under GPL"
},
{
"url": "https://it.slashdot.org/story/99/10/30/0841215/two-spammers-murdered-in-new-jersey",
"title": "Two Spammers Murdered in New Jersey"
},
{
"url": "https://hardware.slashdot.org/story/99/10/29/2053221/creative-labs-to-open-sb-live-drivers",
"title": "Creative Labs to open SB Live Drivers"
},
{
"url": "https://slashdot.org/story/99/10/29/2011221/worlds-fastest-supercomputer-to-be-linux",
"title": "World's Fastest Supercomputer to be Linux"
},
{
"url": "https://news.slashdot.org/story/99/10/29/1215229/salon-writes-on-the-troubles-with-trek",
"title": "Salon Writes on The Troubles with \"Trek\""
},
{
"url": "https://tech.slashdot.org/story/99/10/29/2050218/overhead-of-using-ssl",
"title": "Overhead of using SSL?"
},
{
"url": "https://linux.slashdot.org/story/99/10/29/198200/slackware-70-stable-released",
"title": "Slackware 7.0 (Stable) Released"
},
{
"url": "https://slashdot.org/story/99/10/29/1729241/great-small-business-idea-for-linux",
"title": "Great Small Business Idea for Linux"
},
{
"url": "https://linux.slashdot.org/story/99/10/29/1543228/open-source-who-are-those-guys",
"title": "Open Source: Who Are Those Guys?"
},
{
"url": "https://slashdot.org/story/99/10/29/1313259/the-porn---mp3-connection",
"title": "The Porn - MP3 Connection"
},
{
"url": "https://news.slashdot.org/story/99/10/29/1149208/judge-says-internet-obsoletes-lengthy-non-competes",
"title": "Judge says Internet Obsoletes Lengthy Non-Competes"
},
{
"url": "https://slashdot.org/story/99/10/29/0832246/crypto-guru-bruce-schneier-answers",
"title": "Crypto Guru Bruce Schneier Answers"
},
{
"url": "https://slashdot.org/story/99/10/29/128228/part-of-this-nutrit-awh-nevermind",
"title": "Part of this nutrit... awh nevermind"
},
{
"url": "https://slashdot.org/story/99/10/29/1123210/public-beta-for-opendesk",
"title": "Public Beta For OpenDesk"
},
{
"url": "https://linux.slashdot.org/story/99/10/29/0937225/red-hat-linux-61-vs-caldera-openlinux-23",
"title": "Red Hat Linux 6.1 vs Caldera OpenLinux 2.3"
},
{
"url": "https://news.slashdot.org/story/99/10/28/1116250/i-want-names-for-my-servers",
"title": "I Want Names for my Servers!"
},
{
"url": "https://tech.slashdot.org/story/99/10/29/0927226/3coms-gamer-modem-pings-faster",
"title": "3Com's \"Gamer\" Modem Pings Faster?"
},
{
"url": "https://news.slashdot.org/story/99/10/27/1436214/the-new-new-thing",
"title": "The New, New, Thing"
},
{
"url": "https://linux.slashdot.org/story/99/10/29/0918231/linus-torvalds-is-turning-30-kudos-are-rolling-in",
"title": "Linus Torvalds is Turning 30, Kudos Are Rolling In"
},
{
"url": "https://tech.slashdot.org/story/99/10/29/0844240/ibm-announces-flexible-transistors",
"title": "IBM Announces Flexible Transistors"
},
{
"url": "https://hardware.slashdot.org/story/99/10/28/1420228/simcity-for-palmos-platform",
"title": "SimCity for PalmOS Platform"
},
{
"url": "https://slashdot.org/story/99/10/28/2119211/worlds-slowest-nt-server",
"title": "Worlds Slowest NT Server"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2322231/laser-vision-correction",
"title": "Laser Vision Correction?"
},
{
"url": "https://slashdot.org/story/99/10/28/1610234/cnets-top-10-hacks",
"title": "CNet's \"Top 10 Hacks\""
},
{
"url": "https://slashdot.org/story/99/10/28/124231/bay-area-bandwidth-coop-formed",
"title": "Bay Area Bandwidth Coop Formed"
},
{
"url": "https://slashdot.org/story/99/10/28/1013223/coca-cola-supply-and-demand",
"title": "Coca Cola Supply and Demand"
},
{
"url": "https://slashdot.org/story/99/10/28/034225/tux-has-a-nameless-green-martian-relative",
"title": "Tux Has a Nameless Green Martian Relative"
},
{
"url": "https://slashdot.org/story/99/10/28/1636205/idg-and-trademark-dilution-for-dummies",
"title": "IDG and 'Trademark Dilution' For Dummies"
},
{
"url": "https://slashdot.org/story/99/10/28/1319204/intels-anti-athlon-campaign",
"title": "Intel's Anti-Athlon Campaign"
},
{
"url": "https://news.slashdot.org/story/99/10/28/109251/major-pc-makers-to-ship-pcs-sans-windows",
"title": "Major PC Makers to Ship PCs Sans Windows"
},
{
"url": "https://slashdot.org/story/99/10/28/0946212/nauru-real-life-kinakuta",
"title": "Nauru: Real life Kinakuta"
},
{
"url": "https://news.slashdot.org/story/99/10/28/1114213/movie-review-princess-mononoke",
"title": "Movie Review: Princess Mononoke"
},
{
"url": "https://bsd.slashdot.org/story/99/10/28/0922229/openbsd-article-on-securityportal",
"title": "OpenBSD article on SecurityPortal"
},
{
"url": "https://slashdot.org/story/99/10/28/106250/great-way-to-start-a-day",
"title": "Great way to start a day..."
},
{
"url": "https://slashdot.org/story/99/10/28/0847235/qtgpl-licensing-trouble",
"title": "QT/GPL licensing trouble"
},
{
"url": "https://slashdot.org/story/99/10/28/0824229/amiga-dealers-suing-amiga-incgateway",
"title": "Amiga Dealers Suing Amiga Inc./Gateway"
},
{
"url": "https://slashdot.org/story/99/10/21/095233/darwins-radio",
"title": "Darwin's Radio"
},
{
"url": "https://slashdot.org/story/99/10/28/0820202/french-senator-proposes-requiring-open-source",
"title": "French Senator Proposes Requiring Open Source"
},
{
"url": "https://news.slashdot.org/story/99/10/28/029259/mp3-player-made-from-a-router",
"title": "MP3 Player Made From a Router"
},
{
"url": "https://linux.slashdot.org/story/99/10/28/020239/oracle-rolls-out-latest-nc---with-linux",
"title": "Oracle Rolls Out Latest NC - With Linux"
},
{
"url": "https://slashdot.org/story/99/10/27/0012250/tucows-opens-domain-name-registry",
"title": "Tucows Opens Domain Name Registry"
},
{
"url": "https://tech.slashdot.org/story/99/10/28/0151212/eros-11-relased-under-gpl",
"title": "EROS 1.1 relased under GPL"
},
{
"url": "https://bsd.slashdot.org/story/99/10/17/2317202/which-bsd",
"title": "Which BSD?"
},
{
"url": "https://slashdot.org/story/99/10/27/1619251/knuth-lectures-on-god-and-computers-online",
"title": "Knuth lectures on \"God and Computers\" Online"
},
{
"url": "https://slashdot.org/story/99/10/27/155240/extraterrestrial-real-estate-for-sale",
"title": "Extraterrestrial Real Estate for Sale"
},
{
"url": "https://linux.slashdot.org/story/99/10/27/130225/turbolinux-releases-potentially-dangerous-clustering-software",
"title": "TurboLinux Releases \"Potentially Dangerous\" Clustering Software?"
},
{
"url": "https://bsd.slashdot.org/story/99/10/27/0910227/freebsd-supported-in-compaqs-testdrive-programme",
"title": "FreeBSD supported in Compaq's testdrive programme"
},
{
"url": "https://slashdot.org/story/99/10/27/107228/us-house-of-reps-bans-cybersquatting",
"title": "US House of Reps. Bans \"Cybersquatting\""
},
{
"url": "https://features.slashdot.org/story/99/10/25/181257/more-bad-news-from-the-hellmouth",
"title": "More Bad News From The Hellmouth"
},
{
"url": "https://science.slashdot.org/story/99/10/27/0830238/biotech-makes-the-news",
"title": "Biotech Makes the News"
},
{
"url": "https://slashdot.org/story/99/10/27/0818256/salon-on-user-friendly",
"title": "Salon on User Friendly"
},
{
"url": "https://news.slashdot.org/story/99/10/27/0126222/zona-research-does-programming-language-poll",
"title": "Zona Research Does Programming Language Poll"
},
{
"url": "https://news.slashdot.org/story/99/10/26/2042233/80-hour46gb-portable-mp3-player",
"title": "80 hour/4.6Gb Portable MP3 Player"
},
{
"url": "https://news.slashdot.org/story/99/10/26/1920228/steven-spielberg-to-produce-web-films",
"title": "Steven Spielberg to Produce Web Films"
},
{
"url": "https://slashdot.org/story/99/10/26/199227/icann-board-election-results",
"title": "ICANN Board Election Results"
},
{
"url": "https://slashdot.org/story/99/10/26/1918204/lycos-cant-get-there-from-here",
"title": "Lycos: Can't Get There From Here"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/232232/thin-client-applicaton-architectures",
"title": "Thin-Client Applicaton Architectures?"
},
{
"url": "https://news.slashdot.org/story/99/10/26/174213/more-sony-aibos-on-the-way",
"title": "More Sony AIBOs On the Way"
},
{
"url": "https://yro.slashdot.org/story/99/10/26/149256/domain-registrars-not-legally-responsible-for-domain-names",
"title": "Domain Registrars Not Legally Responsible for Domain Names"
},
{
"url": "https://science.slashdot.org/story/99/10/26/1658218/mashed-potatoes-directly-enhance-memory",
"title": "Mashed Potatoes Directly Enhance Memory"
},
{
"url": "https://slashdot.org/story/99/10/26/157222/microsoft-cracked",
"title": "Microsoft Cracked"
},
{
"url": "https://linux.slashdot.org/story/99/10/16/166256/linux-intranet-application-and-collaboration-software",
"title": "Linux Intranet Application and Collaboration Software?"
},
{
"url": "https://news.slashdot.org/story/99/10/26/137207/beyond-the-programmers-stone",
"title": "Beyond The Programmers' Stone"
},
{
"url": "https://bsd.slashdot.org/story/99/10/26/115211/openbsd-integrates-openssh",
"title": "OpenBSD integrates OpenSSH"
},
{
"url": "https://science.slashdot.org/story/99/10/26/1325233/sir-arthur-speaks",
"title": "Sir Arthur Speaks"
},
{
"url": "https://linux.slashdot.org/story/99/10/26/1137205/linux-showdown-or-what-do-you-want-to-know-in-linux",
"title": "Linux Showdown, Or What Do You Want to Know in Linux?"
},
{
"url": "https://bsd.slashdot.org/story/99/10/26/1054216/freebsd-driver-database-now-covers-bsd",
"title": "FreeBSD driver database now covers *BSD"
},
{
"url": "https://tech.slashdot.org/story/99/10/26/1127210/kde-20-technology-overview",
"title": "KDE 2.0 Technology Overview"
},
{
"url": "https://slashdot.org/story/99/10/26/0916237/mame-running-on-kodak-digital-camera",
"title": "MAME running on Kodak Digital Camera"
},
{
"url": "https://science.slashdot.org/story/99/10/26/082245/dna-code---ip-or-public-domain",
"title": "DNA Code - IP or Public Domain?"
},
{
"url": "https://news.slashdot.org/story/99/10/21/0916240/practical-software-requirements",
"title": "Practical Software Requirements"
},
{
"url": "https://linux.slashdot.org/story/99/10/26/0810224/linuxdvd-css-decrypt---source-available",
"title": "LinuxDVD CSS Decrypt - Source Available"
},
{
"url": "https://tech.slashdot.org/story/99/10/26/0753255/miguel-de-icaza-quits-day-job",
"title": "Miguel de Icaza Quits Day Job"
},
{
"url": "https://yro.slashdot.org/story/99/10/22/0249212/cookies-ad-banners-and-privacy",
"title": "Cookies, Ad Banners, and Privacy"
},
{
"url": "https://slashdot.org/story/99/10/26/0255205/yet-another-article-on-hacking",
"title": "Yet Another Article on Hacking"
},
{
"url": "https://news.slashdot.org/story/99/10/25/2047223/phish-offers-archive-concert-in-mp3",
"title": "Phish Offers Archive Concert in MP3"
},
{
"url": "https://hardware.slashdot.org/story/99/10/25/2042220/mouse-fun-from-microsoft",
"title": "Mouse Fun from Microsoft"
},
{
"url": "https://yro.slashdot.org/story/99/10/25/2039238/declassified-tempest-material-comes-online",
"title": "Declassified Tempest Material Comes Online"
},
{
"url": "https://hardware.slashdot.org/story/99/10/25/1548214/coppermine-vs-athlon",
"title": "Coppermine vs. Athlon"
},
{
"url": "https://slashdot.org/story/99/10/25/1419226/intels-18-micron-chips-coppermine-released",
"title": "Intel's .18 Micron Chips \"Coppermine\" Released"
},
{
"url": "https://slashdot.org/story/99/10/25/145209/glow-in-the-dark-christmas-trees",
"title": "Glow-in-the-dark Christmas Trees"
},
{
"url": "https://slashdot.org/story/99/10/25/1318209/64-bit-solaris-tests-successful",
"title": "64-bit Solaris Tests Successful"
},
{
"url": "https://tech.slashdot.org/story/99/10/25/134249/network-computing-looks-at-web-servers",
"title": "Network Computing Looks at Web Servers"
},
{
"url": "https://science.slashdot.org/story/99/10/25/0833207/global-population-implosion",
"title": "Global Population Implosion?"
},
{
"url": "https://interviews.slashdot.org/story/99/10/24/1017235/interrogate-crypto-luminary-bruce-schneier",
"title": "Interrogate Crypto Luminary Bruce Schneier"
},
{
"url": "https://bsd.slashdot.org/story/99/10/25/0711254/freebsd-implicated-in-hotmail-security-problems",
"title": "FreeBSD implicated in HotMail security problems"
},
{
"url": "https://tech.slashdot.org/story/99/10/25/122232/commercial-use-of-apache-and-ssl",
"title": "Commercial use of Apache and SSL"
},
{
"url": "https://features.slashdot.org/story/99/10/21/115220/onward-christian-geeks",
"title": "Onward, Christian Geeks"
},
{
"url": "https://bsd.slashdot.org/story/99/10/25/0651206/openbsd-explained-4",
"title": "OpenBSD Explained, #4"
},
{
"url": "https://linux.slashdot.org/story/99/10/25/0850208/internetcom-acquires-linuxcentral",
"title": "Internet.com Acquires Linuxcentral"
},
{
"url": "https://slashdot.org/story/99/10/25/0750228/dell-knocks-off-compaq",
"title": "Dell Knocks Off Compaq"
},
{
"url": "https://bsd.slashdot.org/story/99/10/25/0647237/serverwatch-review-of-freebsd",
"title": "ServerWatch review of FreeBSD"
},
{
"url": "https://linux.slashdot.org/story/99/10/17/2255219/if-linux-wasnt-open-source",
"title": "If Linux Wasn't Open Source"
},
{
"url": "https://apple.slashdot.org/story/99/10/24/2032249/ibook-boots-linux",
"title": "iBook boots Linux"
},
{
"url": "https://yro.slashdot.org/story/99/10/24/1147256/software-to-predict-troubled-youths",
"title": "Software to Predict \"Troubled Youths\""
},
{
"url": "https://features.slashdot.org/story/99/10/23/202252/uncle-robins-advice-for-lovelorn-geeks",
"title": "Uncle Robin's Advice for Lovelorn Geeks"
},
{
"url": "https://tech.slashdot.org/story/99/10/24/1141243/new-sandman-book-and-signing",
"title": "New Sandman Book and Signing"
},
{
"url": "https://slashdot.org/story/99/10/24/0151223/altavista-redesign-is-more-portal-like",
"title": "Altavista Redesign is more 'Portal-Like'"
},
{
"url": "https://tech.slashdot.org/story/99/10/23/2021251/photogenics-to-be-released-for-linux",
"title": "Photogenics To Be Released For Linux"
},
{
"url": "https://science.slashdot.org/story/99/10/24/022218/how-much-give-can-the-brain-take",
"title": "How Much Give Can the Brain Take?"
},
{
"url": "https://hardware.slashdot.org/story/99/10/23/1657241/legos-for-hackers",
"title": "Legos for Hackers"
},
{
"url": "https://slashdot.org/story/99/10/23/204250/intel-releasing-700mhz-p3s",
"title": "Intel Releasing 700Mhz P3s"
},
{
"url": "https://linux.slashdot.org/story/99/10/23/168219/is-media-attention-bad-for-linux",
"title": "Is Media Attention Bad for Linux?"
},
{
"url": "https://slashdot.org/story/99/10/23/1153204/comdex-lets-teen-execs-attend",
"title": "Comdex Lets Teen Execs Attend"
},
{
"url": "https://news.slashdot.org/story/99/10/23/167234/kasparov-beats-the-world",
"title": "Kasparov Beats the World"
},
{
"url": "https://science.slashdot.org/story/99/10/23/0759207/new-photos-of-io",
"title": "New Photos of Io"
},
{
"url": "https://linux.slashdot.org/story/99/10/23/126218/linux-counter-hits-120000",
"title": "Linux Counter Hits 120,000"
},
{
"url": "https://slashdot.org/story/99/10/22/1938206/results-from-jam-echelon-day",
"title": "Results From \"Jam Echelon Day\""
},
{
"url": "https://tech.slashdot.org/story/99/10/23/0755222/mutt-hits-10",
"title": "Mutt Hits 1.0"
},
{
"url": "https://hardware.slashdot.org/story/99/10/22/1933227/handspring-having-troubles-delivering-visors",
"title": "Handspring Having Troubles Delivering Visors"
},
{
"url": "https://tech.slashdot.org/story/99/10/22/186244/can-marc-do-it-again",
"title": "Can Marc Do it Again?"
},
{
"url": "https://slashdot.org/story/99/10/22/1916253/statement-on-ipv6-privacy-concerns",
"title": "Statement on IPv6 Privacy Concerns"
},
{
"url": "https://slashdot.org/story/99/10/22/110202/return-of-the-quickies",
"title": "Return of the Quickies"
},
{
"url": "https://linux.slashdot.org/story/99/10/22/0945205/linux-scavenger-hunt-party",
"title": "Linux Scavenger Hunt Party"
},
{
"url": "https://hardware.slashdot.org/story/99/10/22/1527254/thumb-keyboard-for-palmpilot",
"title": "Thumb Keyboard For PalmPilot"
},
{
"url": "https://linux.slashdot.org/story/99/10/16/1541239/oracle-sql-development-environment-in-linux",
"title": "Oracle SQL Development Environment in Linux?"
},
{
"url": "https://yro.slashdot.org/story/99/10/21/1358244/ftc-regulates-kids-privacy-online",
"title": "FTC Regulates Kids' Privacy Online"
},
{
"url": "https://news.slashdot.org/story/99/10/22/1157259/bizzare-answers-from-cult-of-the-dead-cow",
"title": "Bizzare Answers from Cult of the Dead Cow"
},
{
"url": "https://slashdot.org/story/99/10/22/1148259/bill-joy-esr-rms-and-more-on-scsl-vs-gpl",
"title": "Bill Joy, ESR, RMS and more on SCSL vs GPL"
},
{
"url": "https://slashdot.org/story/99/10/22/0959240/amazon-sues-bn-over-software-patent",
"title": "Amazon Sues B&N over Software Patent"
},
{
"url": "https://linux.slashdot.org/story/99/10/22/1041217/alan-cox-on-the-risks-of-closed-source-computing",
"title": "Alan Cox on The Risks of Closed Source Computing"
},
{
"url": "https://slashdot.org/story/99/10/22/0918217/whats-the-government-really-classifying",
"title": "What's the Government /Really/ Classifying?"
},
{
"url": "https://news.slashdot.org/story/99/10/20/0847201/pasquales-angel",
"title": "Pasquale's Angel"
},
{
"url": "https://hardware.slashdot.org/story/99/10/22/0725210/do-it-yourself-cpu-cooling",
"title": "Do-it-yourself CPU Cooling"
},
{
"url": "https://slashdot.org/story/99/10/22/0718217/sendmail-810-public-beta-released",
"title": "Sendmail 8.10 Public Beta Released"
},
{
"url": "https://slashdot.org/story/99/10/22/0030210/let-the-college-price-war-begin",
"title": "Let the College Price War Begin"
},
{
"url": "https://slashdot.org/story/99/10/21/2122254/massachusetts-now-the-dot-commonwealth",
"title": "Massachusetts now the \"Dot Commonwealth\""
},
{
"url": "https://linux.slashdot.org/story/99/10/21/2332228/new-linux-subsection-on-google",
"title": "New Linux Subsection on Google"
},
{
"url": "https://hardware.slashdot.org/story/99/10/21/2328256/color-palmos-screenshots",
"title": "Color PalmOS Screenshots"
},
{
"url": "https://bsd.slashdot.org/story/99/10/21/214249/open-resource-encouraging-freebsd-driver-developme",
"title": "Open Resource Encouraging FreeBSD Driver Developme"
},
{
"url": "https://bsd.slashdot.org/story/99/10/21/2129250/freebsdcon-quickies",
"title": "FreeBSDCon Quickies"
},
{
"url": "https://yro.slashdot.org/story/99/10/21/1516245/cto-is-too-young-for-comdex",
"title": "CTO is Too Young for Comdex"
},
{
"url": "https://yro.slashdot.org/story/99/10/21/1447237/aols-double-standard-on-profiles",
"title": "AOL's Double Standard on Profiles"
},
{
"url": "https://news.slashdot.org/story/99/10/21/1535215/fcc-allocates-more-bandwidth-to-transportation",
"title": "FCC Allocates More Bandwidth to Transportation"
},
{
"url": "https://ask.slashdot.org/story/99/10/16/1535210/how-to-approach-venture-capital-firms",
"title": "How to Approach Venture Capital Firms?"
},
{
"url": "https://slashdot.org/story/99/10/21/1113206/how-not-to-attract-geeks",
"title": "How Not to Attract Geeks"
},
{
"url": "https://yro.slashdot.org/story/99/10/19/1256238/drug-censorship-bill",
"title": "Drug Censorship Bill"
},
{
"url": "https://science.slashdot.org/story/99/10/21/118237/rise-of-the-nanobots",
"title": "Rise of the Nanobots"
},
{
"url": "https://hardware.slashdot.org/story/99/10/21/0956227/palmtop-offers-legally-binding-e-signatures",
"title": "PalmTop offers legally binding E-signatures"
},
{
"url": "https://news.slashdot.org/story/99/10/18/1059257/hackers-heroes-of-the-computer-revolution",
"title": "Hackers: Heroes of the Computer Revolution"
},
{
"url": "https://games.slashdot.org/story/99/10/21/0153259/video-game-wars-arent-always-games",
"title": "Video Game Wars Aren't Always Games"
},
{
"url": "https://tech.slashdot.org/story/99/10/21/0848202/risc-vs-cisc-in-the-post-risc-era",
"title": "RISC vs. CISC in the post-RISC era"
},
{
"url": "https://linux.slashdot.org/story/99/10/21/0212240/its-the-developers-stupid-the-real-nt-linux-battle",
"title": "It's the Developers, Stupid!: The Real NT-Linux Battle"
},
{
"url": "https://slashdot.org/story/99/10/21/0046215/opening-amiga-source-proposed",
"title": "Opening Amiga Source Proposed"
},
{
"url": "https://slashdot.org/story/99/10/21/0036221/sec-no-stocks-allowed-on-ebay",
"title": "SEC: No Stocks Allowed on Ebay"
},
{
"url": "https://ask.slashdot.org/story/99/10/20/1421236/internal-dsl-modems-and-linux-drivers",
"title": "Internal DSL Modems and Linux Drivers?"
},
{
"url": "https://hardware.slashdot.org/story/99/10/21/0023254/tiny-new-chips-win-chipcenter-award",
"title": "Tiny New Chips Win ChipCenter Award"
},
{
"url": "https://slashdot.org/story/99/10/20/1953219/linux-after-y2k",
"title": "Linux After Y2K"
},
{
"url": "https://science.slashdot.org/story/99/10/20/1932254/wooly-mammoth-extracted-intact-from-siberian-ice",
"title": "Wooly Mammoth Extracted Intact From Siberian Ice"
},
{
"url": "https://slashdot.org/story/99/10/18/1419245/october-21-is-jam-echelon-day",
"title": "October 21 is 'Jam Echelon' Day"
},
{
"url": "https://slashdot.org/story/99/10/20/1639243/home-cookin-the-electric-cd-acid-test",
"title": "Home Cookin': The Electric CD Acid Test"
},
{
"url": "https://hardware.slashdot.org/story/99/10/20/1628221/palm-pilot-with-hard-drive",
"title": "Palm Pilot with Hard Drive"
},
{
"url": "https://linux.slashdot.org/story/99/10/16/1513231/transparent-ipv6-with-linux",
"title": "Transparent IPv6 with Linux?"
},
{
"url": "https://slashdot.org/story/99/10/20/1342208/distributed-denial-of-service-attacks",
"title": "Distributed Denial of Service Attacks"
},
{
"url": "https://ask.slashdot.org/story/99/10/20/1415209/open-source-or-commercial-wwwboard-software",
"title": "Open Source or Commercial WWWBoard Software?"
},
{
"url": "https://games.slashdot.org/story/99/10/20/1235203/linux-unreal-tournament-available",
"title": "Linux Unreal Tournament Available"
},
{
"url": "https://ask.slashdot.org/story/99/10/20/1238236/building-a-linux-cluster-from-the-ground-up",
"title": "Building a Linux Cluster from the Ground Up?"
},
{
"url": "https://ask.slashdot.org/story/99/10/20/1223245/how-do-european-techies-go-america",
"title": "How Do European Techies Go America?"
},
{
"url": "https://it.slashdot.org/story/99/10/20/1017231/security-in-wireless-networks",
"title": "Security in Wireless Networks"
},
{
"url": "https://slashdot.org/story/99/10/20/1124218/sun-microsystems-acquires-netbeans",
"title": "Sun Microsystems acquires NetBeans"
},
{
"url": "https://slashdot.org/story/99/10/20/1110242/kill--9-with-a-doom-shotgun",
"title": "Kill -9 With a Doom Shotgun"
},
{
"url": "https://linux.slashdot.org/story/99/10/20/0929224/esr-interview-in-fast-company-magazine",
"title": "ESR Interview in Fast Company Magazine"
},
{
"url": "https://news.slashdot.org/story/99/10/18/1053237/contemporary-logic-design",
"title": "Contemporary Logic Design"
},
{
"url": "https://slashdot.org/story/99/10/20/0950219/corel-without-cowpland",
"title": "Corel Without Cowpland?"
},
{
"url": "https://tech.slashdot.org/story/99/10/20/0825231/design-patterns-in-mozilla-contest",
"title": "Design Patterns in Mozilla Contest"
},
{
"url": "https://radio.slashdot.org/story/99/10/20/0849220/geeks-in-space-live-from-the-new-studio",
"title": "Geeks In Space: Live from the New Studio"
},
{
"url": "https://linux.slashdot.org/story/99/10/20/0835249/linux-kernel-2213-makes-the-scene",
"title": "Linux Kernel 2.2.13 Makes the Scene"
},
{
"url": "https://tech.slashdot.org/story/99/10/20/0820255/ati-announces-open-2d3d-linux-support",
"title": "ATI Announces Open 2D/3D Linux Support"
},
{
"url": "https://linux.slashdot.org/story/99/10/20/0042238/dvd-for-linux-an-interview-with-the-developers",
"title": "DVD for Linux: an Interview With the Developers"
},
{
"url": "https://slashdot.org/story/99/10/20/011211/us-may-kill-open-source-crypto-export-regs",
"title": "U.S. May Kill Open Source Crypto Export Regs"
},
{
"url": "https://yro.slashdot.org/story/99/10/19/2236241/teen-charged-with-transmission-of-false-data",
"title": "Teen Charged with \"Transmission of False Data\""
},
{
"url": "https://apple.slashdot.org/story/99/10/19/2020208/half-life-for-macintosh-cancelled",
"title": "Half-Life for Macintosh Cancelled"
},
{
"url": "https://tech.slashdot.org/story/99/10/20/0122248/amd-planning-1ghz-cpus",
"title": "AMD Planning 1GHz CPUs"
},
{
"url": "https://hardware.slashdot.org/story/99/10/19/2151241/color-palms-announced",
"title": "Color Palms Announced"
},
{
"url": "https://slashdot.org/story/99/10/19/1853252/william-gibson-in-the-news",
"title": "William Gibson in The News"
},
{
"url": "https://yro.slashdot.org/story/99/10/19/1221256/house-considers-anti-spam-act",
"title": "House Considers Anti-Spam Act"
},
{
"url": "https://news.slashdot.org/story/99/10/19/1643238/simulating-human-musical-performance",
"title": "Simulating Human Musical Performance"
},
{
"url": "https://hardware.slashdot.org/story/99/10/19/136202/palmos-33-released",
"title": "PalmOS 3.3 Released"
},
{
"url": "https://slashdot.org/story/99/10/19/1230228/encyclopedia-britannica-goes-to-the-free",
"title": "Encyclopedia Britannica Goes To The Free"
},
{
"url": "https://ask.slashdot.org/story/99/10/16/151209/basic-linux-systems-for-the-home-user",
"title": "Basic Linux Systems for the Home User?"
},
{
"url": "https://yro.slashdot.org/story/99/10/18/087241/campaign-finance-meets-the-web",
"title": "Campaign Finance Meets the Web"
},
{
"url": "https://slashdot.org/story/99/10/19/137256/modem-tax---urban-legend-come-true",
"title": "Modem Tax - Urban Legend Come True?"
},
{
"url": "https://slashdot.org/story/99/10/19/1236205/windows-ce-going-open-source",
"title": "Windows CE going Open Source?"
},
{
"url": "https://yro.slashdot.org/story/99/10/19/1129231/freedom-forum-first-amendment-survey",
"title": "Freedom Forum First Amendment Survey"
},
{
"url": "https://news.slashdot.org/story/99/10/19/1032254/basic-patent-law-for-programmers",
"title": "Basic Patent Law for Programmers"
},
{
"url": "https://linux.slashdot.org/story/99/10/19/1220220/linuxtoday-acquired-by-internetcom",
"title": "LinuxToday Acquired By Internet.com"
},
{
"url": "https://news.slashdot.org/story/99/10/19/0948219/the-unofficial-guide-to-lego-mindstorms",
"title": "The Unofficial Guide to Lego Mindstorms"
},
{
"url": "https://news.slashdot.org/story/99/10/18/1049244/snow-crash",
"title": "Snow Crash"
},
{
"url": "https://slashdot.org/story/99/10/19/103236/ibm-leaving-retail-pc-market",
"title": "IBM Leaving Retail PC Market"
},
{
"url": "https://slashdot.org/story/99/10/19/0858203/1100-mhz-athlon-killer-due-from-intel-in-december",
"title": "1100 MHz 'Athlon Killer' Due From Intel in December"
},
{
"url": "https://yro.slashdot.org/story/99/10/19/0750221/nsi-changes-whois-again",
"title": "NSI Changes whois Again"
},
{
"url": "https://linux.slashdot.org/story/99/10/19/083205/more-on-queen-elizabeth-ii-and-linux",
"title": "More on Queen Elizabeth II and Linux"
},
{
"url": "https://linux.slashdot.org/story/99/10/18/2322216/linux-to-get-windows-apps",
"title": "Linux to Get Windows Apps?"
},
{
"url": "https://slashdot.org/story/99/10/18/2022211/petreley-on-caldera-openlinux-23",
"title": "Petreley on Caldera OpenLinux 2.3"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2330236/xor-anyone",
"title": "Xor, Anyone?"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2320207/multiple-ide-controllers",
"title": "Multiple IDE Controllers"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2314244/smart-cards-or-securid-tokens-and-bsd",
"title": "Smart Cards or SecurID tokens and *BSD?"
},
{
"url": "https://news.slashdot.org/story/99/10/18/2314243/more-quakes-for-taiwan",
"title": "More Quakes For Taiwan"
},
{
"url": "https://it.slashdot.org/story/99/10/18/1119259/amazoncom-hosting-crypto-contest",
"title": "Amazon.com Hosting Crypto-Contest"
},
{
"url": "https://yro.slashdot.org/story/99/10/18/1640257/trend-more-software-patents",
"title": "Trend: More Software Patents"
},
{
"url": "https://developers.slashdot.org/story/99/10/18/1552223/java-2-hotspot-on-linux-in-2000",
"title": "Java 2 & Hotspot on Linux in 2000"
},
{
"url": "https://games.slashdot.org/story/99/10/18/0743250/zd-objective-reporting-not-just-for-linux",
"title": "ZD \"Objective Reporting\" Not Just For Linux"
},
{
"url": "https://games.slashdot.org/story/99/10/18/1024201/no-next-q3test",
"title": "No Next Q3Test"
},
{
"url": "https://ask.slashdot.org/story/99/10/16/1423221/open-source-e-business-solutions",
"title": "Open Source E-Business Solutions?"
},
{
"url": "https://slashdot.org/story/99/10/18/1011200/mtv-hacker-saga-gets-worse",
"title": "MTV Hacker Saga Gets Worse"
},
{
"url": "https://hardware.slashdot.org/story/99/10/18/113203/color-palmos-devices-soon",
"title": "Color PalmOS Devices Soon?"
},
{
"url": "https://tech.slashdot.org/story/99/10/18/0939245/ask-the-cult-of-the-dead-cow-anything",
"title": "Ask the Cult of the Dead Cow Anything"
},
{
"url": "https://features.slashdot.org/story/99/10/17/1749217/the-slashdot-interval",
"title": "The Slashdot Interval"
},
{
"url": "https://apple.slashdot.org/story/99/10/18/0939239/apple-the-g4-order-truth",
"title": "Apple & The G4 Order Truth"
},
{
"url": "https://slashdot.org/story/99/10/18/0811236/cowpland-reacts-to-insider-trader-charges",
"title": "Cowpland Reacts to Insider Trader Charges"
},
{
"url": "https://games.slashdot.org/story/99/10/18/087247/chess-dispute-kasparov-vs-the-world-vs-msn",
"title": "Chess Dispute: Kasparov vs. the World vs. MSN"
},
{
"url": "https://linux.slashdot.org/story/99/10/18/0822236/ny-times-on-the-fragmentation-of-linux",
"title": "NY Times on \"the Fragmentation of Linux\""
},
{
"url": "https://tech.slashdot.org/story/99/10/18/0818246/two-interesting-mozilla-articles",
"title": "Two Interesting Mozilla Articles"
},
{
"url": "https://yro.slashdot.org/story/99/10/18/082213/so-you-want-to-be-a-cryptographer",
"title": "So, You Want to be a Cryptographer"
},
{
"url": "https://linux.slashdot.org/story/99/10/18/0123214/red-hat-sells-rms-linux",
"title": "Red Hat Sells RMS Linux"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2311250/quota-compatibility-between-linux-and-solaris",
"title": "Quota Compatibility between Linux and Solaris"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2237244/realplayer-g2-for-alpha-expired-now-what",
"title": "RealPlayer G2 for Alpha Expired! Now, What?"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2234223/red-hat-and-broken-ipmasquerading",
"title": "Red Hat and Broken IPMasquerading"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/2212212/what-happened-to-netcaster",
"title": "What Happened to Netcaster?"
},
{
"url": "https://ask.slashdot.org/story/99/10/17/223250/on-hollywood-and-the-portrayal-of-computers",
"title": "On Hollywood and the Portrayal of Computers"
},
{
"url": "https://slashdot.org/story/99/10/17/1719202/slashdot-reader-analyzes-bbc-interview-with-bill-gates",
"title": "Slashdot Reader Analyzes BBC Interview With Bill Gates"
},
{
"url": "https://slashdot.org/story/99/10/17/1235249/washington-dc-is-most-wired-region-in-the-us",
"title": "Washington DC is Most Wired Region in the U.S."
},
{
"url": "https://apple.slashdot.org/story/99/10/17/1123229/apple-re-reverses-g4-order-cancellations",
"title": "Apple Re-Reverses G4 Order Cancellations"
},
{
"url": "https://tech.slashdot.org/story/99/10/17/1216212/project-jakarta-out",
"title": "Project Jakarta out"
},
{
"url": "https://news.slashdot.org/story/99/10/17/1116248/the-whos-reunion-concert-to-be-webcast-live",
"title": "The Who's Reunion Concert to be Webcast Live!"
},
{
"url": "https://slashdot.org/story/99/10/17/1025208/why-you-are-not-on-any-forbes-lists-of-rich-people",
"title": "Why You Are Not On Any Forbes Lists of Rich People"
},
{
"url": "https://slashdot.org/story/99/10/17/0032222/new-gop-domain-name-violates-rfc-2146",
"title": "New GOP Domain Name Violates RFC 2146"
},
{
"url": "https://ask.slashdot.org/story/99/10/16/1621216/is-there-an-uptime-limit",
"title": "Is there an Uptime Limit?"
},
{
"url": "https://slashdot.org/story/99/10/16/2053207/ms-attempt-to-find-pirated-software-fails-miserably",
"title": "MS Attempt to Find Pirated Software Fails Miserably"
},
{
"url": "https://bsd.slashdot.org/story/99/10/16/2141229/netbsd-integrates-support-for-cardbus-devices",
"title": "NetBSD Integrates Support for Cardbus Devices"
},
{
"url": "https://slashdot.org/story/99/10/16/2037241/woman-avoids-70000-online-gambling-debt",
"title": "Woman Avoids $70,000 Online Gambling Debt"
},
{
"url": "https://ask.slashdot.org/story/99/10/16/1557212/problems-when-closing-xfree86-using-a-s3virgegx",
"title": "Problems when Closing XFree86 Using a S3Virge/Gx"
},
{
"url": "https://ask.slashdot.org/story/99/10/16/1531224/how-do-linux-threads-compare-to-nt-threads",
"title": "How do Linux Threads Compare to NT Threads?"
},
{
"url": "https://ask.slashdot.org/story/99/10/16/1527254/open-business-model",
"title": "Open Business Model?"
},
{
"url": "https://games.slashdot.org/story/99/10/16/0935236/the-hacking-contest-nobody-tried-to-win",
"title": "The Hacking Contest Nobody Tried to Win"
},
{
"url": "https://linux.slashdot.org/story/99/10/16/0922249/rick-moen-debunks-gartner-myths",
"title": "Rick Moen Debunks Gartner Myths"
},
{
"url": "https://news.slashdot.org/story/99/10/16/1017231/hemos-is-homeless",
"title": "Hemos is Homeless"
},
{
"url": "https://slashdot.org/story/99/10/16/092250/corel-beta-now-gpl-compliant",
"title": "Corel Beta now GPL-compliant"
},
{
"url": "https://linux.slashdot.org/story/99/10/16/093255/slackware-7-beta-out",
"title": "Slackware 7 Beta Out"
},
{
"url": "https://news.slashdot.org/story/99/10/16/0844234/staroffice-boss-says-he-chose-sun-license-over-gpl-for-good-reasons",
"title": "StarOffice Boss Says He Chose Sun License over GPL for Good Reasons"
},
{
"url": "https://slashdot.org/story/99/10/16/0831242/microsoft-proposes-open-replacement-for-corba",
"title": "Microsoft Proposes \"Open\" Replacement for CORBA"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/044224/ask-slashdot-what-music-do-you-code-by",
"title": "Ask Slashdot: What Music do you Code By?"
},
{
"url": "https://science.slashdot.org/story/99/10/15/1222245/donate-spare-cycles-for-climate-prediction",
"title": "Donate Spare Cycles for Climate Prediction"
},
{
"url": "https://tech.slashdot.org/story/99/10/15/1856200/apachecon-2000",
"title": "ApacheCon 2000"
},
{
"url": "https://yro.slashdot.org/story/99/10/15/1434252/trademark-cyberpiracy-prevention-act",
"title": "Trademark Cyberpiracy Prevention Act"
},
{
"url": "https://slashdot.org/story/99/10/15/1349209/upside-editorial-piece-on-sun-and-open-source",
"title": "Upside Editorial Piece on Sun and Open Source"
},
{
"url": "https://slashdot.org/story/99/10/15/1217205/fcc-leaves-broadband-alone",
"title": "FCC Leaves Broadband Alone"
},
{
"url": "https://news.slashdot.org/story/99/10/15/097200/major-star-wars-character-to-die-in-next-books",
"title": "Major Star Wars Character To Die in Next Books"
},
{
"url": "https://yro.slashdot.org/story/99/10/15/1224252/ms-lobbies-to-cut-doj-antitrust-budget",
"title": "MS Lobbies to Cut DOJ Antitrust Budget"
},
{
"url": "https://linux.slashdot.org/story/99/10/15/0928254/debian-retail-on-cnn",
"title": "Debian Retail on CNN"
},
{
"url": "https://tech.slashdot.org/story/99/10/05/1636218/open-source-poster-boys",
"title": "Open Source Poster Boys"
},
{
"url": "https://news.slashdot.org/story/99/10/10/198257/slashdot-announces-apache-and-bsd-sections",
"title": "Slashdot Announces Apache and BSD Sections"
},
{
"url": "https://linux.slashdot.org/story/99/10/11/1533242/codewarrior-for-linux-reviewed",
"title": "CodeWarrior for Linux: Reviewed"
},
{
"url": "https://science.slashdot.org/story/99/10/15/090226/advance-on-nanotech-dip-pen---the-nano-plotter",
"title": "Advance on Nanotech Dip Pen - The Nano Plotter"
},
{
"url": "https://games.slashdot.org/story/99/10/15/1012230/john-carmack-answers",
"title": "John Carmack Answers"
},
{
"url": "https://slashdot.org/story/99/10/15/0839255/ibms-73gig-drive",
"title": "IBMs 73Gig Drive"
},
{
"url": "https://slashdot.org/story/99/10/15/0849208/jeremy-paxman-bbc-interview-with-bill-gates",
"title": "Jeremy Paxman, BBC, Interview with Bill Gates"
},
{
"url": "https://bsd.slashdot.org/story/99/10/15/0459203/general-admission-at-freebsd-con",
"title": "General admission at FreeBSD Con"
},
{
"url": "https://hardware.slashdot.org/story/99/10/14/1732231/hands-on-review-of-pdq-palmcellphone",
"title": "Hands on Review of pdQ Palm/Cellphone"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/1136232/widescreen-tvs-in-the-us",
"title": "Widescreen TVs in the US?"
},
{
"url": "https://linux.slashdot.org/story/99/10/14/210211/li18nux-effort-announced",
"title": "Li18nux Effort Announced"
},
{
"url": "https://slashdot.org/story/99/10/14/1748254/lost-in-the-translation",
"title": "Lost in the Translation"
},
{
"url": "https://linux.slashdot.org/story/99/10/14/2052211/puffinfest-at-als",
"title": "PuffinFest at ALS"
},
{
"url": "https://slashdot.org/story/99/10/14/1656200/corel-ceo-charged-with-securities-violations",
"title": "Corel CEO Charged with Securities Violations"
},
{
"url": "https://tech.slashdot.org/story/99/10/14/1420204/xig-ad-campaign-slamming-xfree",
"title": "Xig Ad Campaign Slamming Xfree?"
},
{
"url": "https://apple.slashdot.org/story/99/10/14/1416233/apple-reverses-g4-downgrade",
"title": "Apple Reverses G4 downgrade"
},
{
"url": "https://slashdot.org/story/99/10/14/1110245/mtvs-hacker-portrayal",
"title": "MTV's Hacker Portrayal"
},
{
"url": "https://slashdot.org/story/99/10/14/0912206/language-translation-domain-name-claims",
"title": "Language Translation Domain Name Claims"
},
{
"url": "https://linux.slashdot.org/story/99/10/14/0932259/als-lwn-producing-daily-showguide",
"title": "ALS & LWN Producing Daily Showguide"
},
{
"url": "https://linux.slashdot.org/story/99/10/14/0850217/the-red-hat-diaries",
"title": "The Red Hat Diaries"
},
{
"url": "https://news.slashdot.org/story/99/10/07/1316214/a-history-of-modern-computing",
"title": "A History of Modern Computing"
},
{
"url": "https://science.slashdot.org/story/99/10/14/0845237/time-doesnt-exist",
"title": "Time Doesn't Exist"
},
{
"url": "https://linux.slashdot.org/story/99/10/14/0838249/gartner-slams-linux",
"title": "Gartner Slams Linux"
},
{
"url": "https://science.slashdot.org/story/99/10/13/1938216/girl-geeks-launch-picosatellite",
"title": "Girl Geeks Launch Picosatellite"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/114224/cross-platform-email-client",
"title": "Cross Platform Email Client?"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/0425241/linux-as-an-isdn-based-remote-access-server",
"title": "Linux as an ISDN Based Remote Access Server?"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/0421239/221x-kernel-building-problems",
"title": "2.2.1x Kernel Building Problems"
},
{
"url": "https://games.slashdot.org/story/99/10/13/0227244/sega-dreamcasts-and-lan-access",
"title": "Sega Dreamcasts and LAN Access?"
},
{
"url": "https://linux.slashdot.org/story/99/10/13/2330221/sco-to-invest-in-linuxmall",
"title": "SCO To Invest in LinuxMall"
},
{
"url": "https://apple.slashdot.org/story/99/10/13/2237238/apple-makes-g4s-slower",
"title": "Apple Makes G4s Slower"
},
{
"url": "https://slashdot.org/story/99/10/13/1920247/kevin-poulsen-slams-media-cyberterror-coverage",
"title": "Kevin Poulsen Slams Media Cyberterror Coverage"
},
{
"url": "https://tech.slashdot.org/story/99/10/13/1911258/smart-dust-a-followup",
"title": "Smart Dust: A Followup"
},
{
"url": "https://slashdot.org/story/99/10/13/1947221/new-criteria-for-net-sales-tax-proposals-released",
"title": "New Criteria for Net Sales Tax Proposals Released"
},
{
"url": "https://radio.slashdot.org/story/99/10/13/1633238/geeks-in-space-live-from-kidmart",
"title": "Geeks in Space: Live from Kidmart"
},
{
"url": "https://yro.slashdot.org/story/99/10/11/1557258/one-for-the-kids",
"title": "One for the Kids"
},
{
"url": "https://bsd.slashdot.org/story/99/10/12/1359235/openbsd-receives-equipment-donation-worth-10000",
"title": "OpenBSD receives equipment donation worth $10,000"
},
{
"url": "https://news.slashdot.org/story/99/10/13/132216/gateway-to-sell-cobalt-systems",
"title": "Gateway to Sell Cobalt Systems"
},
{
"url": "https://apple.slashdot.org/story/99/10/13/130206/steve-jobs-interview-with-time-magazine",
"title": "Steve Jobs Interview with Time Magazine"
},
{
"url": "https://science.slashdot.org/story/99/10/13/1054225/caffeine-good-for-long-term-memory",
"title": "Caffeine Good For Long-Term Memory"
},
{
"url": "https://hardware.slashdot.org/story/99/10/07/1641250/palmpilot---the-ultimate-guide-2nd-edition",
"title": "PalmPilot - The Ultimate Guide (2nd Edition)"
},
{
"url": "https://slashdot.org/story/99/10/13/0915241/a-universal-networking-language-for-the-internet",
"title": "A Universal Networking Language for the Internet?"
},
{
"url": "https://tech.slashdot.org/story/99/10/13/1032210/3com-psion-to-join-forces-for-wireless-internet",
"title": "3Com & Psion to Join Forces for Wireless Internet"
},
{
"url": "https://yro.slashdot.org/story/99/10/11/223212/trusted-computing-platform-alliance",
"title": "Trusted Computing Platform Alliance"
},
{
"url": "https://features.slashdot.org/story/99/10/12/1152237/dying-babies-and-the-myth-of-american-freedom",
"title": "Dying Babies and The Myth of American Freedom"
},
{
"url": "https://slashdot.org/story/99/10/13/0826253/msn-lists-10-dumb-things-nt-users-do",
"title": "MSN Lists 10 Dumb Things NT Users Do"
},
{
"url": "https://tech.slashdot.org/story/99/10/13/0023246/usb2-specs-are-in",
"title": "USB2 Specs Are In"
},
{
"url": "https://science.slashdot.org/story/99/10/12/2344257/monsanto-agrees-not-to-sell-terminator-seeds",
"title": "Monsanto Agrees Not to Sell \"Terminator\" Seeds"
},
{
"url": "https://tech.slashdot.org/story/99/10/12/214230/october-gnome-released",
"title": "October Gnome Released"
},
{
"url": "https://bsd.slashdot.org/story/99/10/13/0543248/daemon-news-launches-daily-news-service",
"title": "Daemon News launches daily news service"
},
{
"url": "https://yro.slashdot.org/story/99/10/12/2227208/privacy-loses-in-california",
"title": "Privacy Loses in California"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/0417252/implementing-a-load-balanced-webserver",
"title": "Implementing a Load-Balanced Webserver?"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/0414215/using-a-digital-camcorder-as-a-tape-drive",
"title": "Using a Digital Camcorder as a Tape Drive?"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/049234/smbclient-and-local-access-transfers",
"title": "SMBclient and Local Access Transfers..."
},
{
"url": "https://games.slashdot.org/story/99/10/12/2331219/games-drive-wider-linux-adoption",
"title": "Games Drive Wider Linux Adoption"
},
{
"url": "https://bsd.slashdot.org/story/99/10/12/0342235/openbsd-and-crypto-in-the-new-york-times",
"title": "OpenBSD and Crypto in the New York Times"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/0356250/pci-sound-card-recommendations-for-linux",
"title": "PCI Sound Card Recommendations for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/10/13/0251239/on-coding-multiplatform-distributed-systems",
"title": "On Coding Multiplatform Distributed Systems..."
},
{
"url": "https://tech.slashdot.org/story/99/10/12/1835225/nortel-gets-64-terabits-on-a-single-fibre",
"title": "Nortel gets 6.4 Terabits on a Single Fibre"
},
{
"url": "https://hardware.slashdot.org/story/99/10/12/2321237/notebooks-for-rough-people",
"title": "Notebooks for Rough People"
},
{
"url": "https://slashdot.org/story/99/10/12/1826242/amazoncom-receives-patent-for-1-click-shopping",
"title": "Amazon.com Receives Patent for 1-Click Shopping"
},
{
"url": "https://science.slashdot.org/story/99/10/12/1232207/1999-nobel-science-prizes-announced",
"title": "1999 Nobel Science Prizes Announced"
},
{
"url": "https://slashdot.org/story/99/10/12/1823222/ibm-promises-even-more-linux-support",
"title": "IBM Promises Even More Linux Support"
},
{
"url": "https://tech.slashdot.org/story/99/10/12/125240/spacecraft-launching-maglevs",
"title": "Spacecraft Launching Maglevs"
},
{
"url": "https://yro.slashdot.org/story/99/10/11/1829252/ietf-and-wiretapping-standards",
"title": "IETF and wiretapping standards"
},
{
"url": "https://tech.slashdot.org/story/99/10/12/0853222/ikonos-1-meter-resolution-earth-images-from-space",
"title": "Ikonos 1-Meter Resolution Earth Images from Space"
},
{
"url": "https://it.slashdot.org/story/99/10/12/138248/intel-squashes-rambus-bugs",
"title": "Intel squashes Rambus Bugs"
},
{
"url": "https://linux.slashdot.org/story/99/10/12/108245/pcweek-summarizes-hackpcweekcom-test",
"title": "PCWeek Summarizes hackpcweek.com Test"
},
{
"url": "https://slashdot.org/story/99/10/12/098251/nokia-and-intel-to-make-linux-based-set-top-box",
"title": "Nokia and Intel to make Linux-based Set-Top Box"
},
{
"url": "https://science.slashdot.org/story/99/10/12/0947243/genetically-engineered-children",
"title": "Genetically Engineered Children"
},
{
"url": "https://slashdot.org/story/99/10/11/1136204/microsoft-launches-passport",
"title": "Microsoft Launches Passport"
},
{
"url": "https://news.slashdot.org/story/99/10/12/0849210/free-software-and-the-innovators-dilema",
"title": "Free Software and the Innovators Dilema"
},
{
"url": "https://yro.slashdot.org/story/99/10/11/0826243/icann-elections-begin",
"title": "ICANN Elections Begin"
},
{
"url": "https://news.slashdot.org/story/99/10/07/1121201/the-code-book",
"title": "The Code Book"
},
{
"url": "https://slashdot.org/story/99/10/12/0811245/bbc-solicts-questions-to-ask-bill-gates",
"title": "BBC Solicts Questions to Ask Bill Gates"
},
{
"url": "https://games.slashdot.org/story/99/10/12/087205/loki-to-release-heretic-ii-and-heavy-gear-ii",
"title": "Loki to Release Heretic II and Heavy Gear II"
},
{
"url": "https://yro.slashdot.org/story/99/10/12/0717240/your-medical-records-online",
"title": "Your Medical Records Online"
},
{
"url": "https://slashdot.org/story/99/10/12/080248/password-thief-ransacks-aol",
"title": "Password Thief Ransacks AOL"
},
{
"url": "https://linux.slashdot.org/story/99/09/29/0520201/linux-databases-with-huge-tables",
"title": "Linux Databases with Huge Tables?"
},
{
"url": "https://games.slashdot.org/story/99/10/12/0411247/loki-releases-an-installer",
"title": "Loki releases an installer"
},
{
"url": "https://linux.slashdot.org/story/99/10/11/0335229/200-linux-pcs",
"title": "$200 Linux PCs"
},
{
"url": "https://linux.slashdot.org/story/99/10/12/0026240/va-oreilly-and-sgi-sponsor-debian-in-a-box",
"title": "VA, O'Reilly, and SGI Sponsor Debian in a Box"
},
{
"url": "https://hardware.slashdot.org/story/99/10/11/1545205/toms-hardware-on-the-geforce256",
"title": "Tom's Hardware on The GeForce256"
},
{
"url": "https://linux.slashdot.org/story/99/10/11/175230/intel-invests-in-turbolinux",
"title": "Intel Invests in TurboLinux"
},
{
"url": "https://science.slashdot.org/story/99/10/11/1519228/the-big-bang-generator-that-wasnt",
"title": "The Big Bang Generator That Wasn't"
},
{
"url": "https://tech.slashdot.org/story/99/10/11/1319209/50-flat-screens-from-pioneer",
"title": "50\" Flat Screens from Pioneer"
},
{
"url": "https://science.slashdot.org/story/99/10/11/1346230/solar-powered-chemical-processing",
"title": "Solar Powered Chemical Processing"
},
{
"url": "https://linux.slashdot.org/story/99/10/11/0445243/possible-gpl-violation",
"title": "Possible GPL Violation?"
},
{
"url": "https://games.slashdot.org/story/99/10/11/098254/ask-john-carmack-about-quake---or-anything-else",
"title": "Ask John Carmack About Quake - or Anything Else"
},
{
"url": "https://slashdot.org/story/99/10/11/0914259/humorous-product-disclaimers",
"title": "Humorous Product Disclaimers"
},
{
"url": "https://bsd.slashdot.org/story/99/10/10/1036211/freebsdcon-99-speaker-schedule-announced",
"title": "FreeBSDCon '99 Speaker Schedule Announced"
},
{
"url": "https://hardware.slashdot.org/story/99/10/11/0919209/the-ups-and-downs-of-wearable-computing",
"title": "The Ups and Downs of Wearable Computing"
},
{
"url": "https://yro.slashdot.org/story/99/10/11/080238/still-cant-export-open-source-crypto",
"title": "Still Can't Export Open-Source Crypto"
},
{
"url": "https://tech.slashdot.org/story/99/10/11/073235/mozilla-m10-released-to-the-world",
"title": "Mozilla M10 Released To The World"
},
{
"url": "https://science.slashdot.org/story/99/10/11/0659214/8-legged-robotic-micro-ant-from-sweden",
"title": "8 Legged Robotic Micro Ant from Sweden"
},
{
"url": "https://tech.slashdot.org/story/99/10/10/1932253/kde-looks-ahead",
"title": "KDE Looks Ahead"
},
{
"url": "https://slashdot.org/story/99/10/10/1936223/human-interface-design-hall-of-shame",
"title": "Human Interface Design Hall of Shame"
},
{
"url": "https://tech.slashdot.org/story/99/10/10/2214238/enlightenment-0160-release",
"title": "Enlightenment 0.16.0 Release"
},
{
"url": "https://apple.slashdot.org/story/99/10/10/1824230/g4-bug-keeps-them-at-500mhz",
"title": "G4 Bug Keeps Them at 500MHz"
},
{
"url": "https://news.slashdot.org/story/99/10/10/0124204/mtv-profiles-hackers",
"title": "MTV Profiles \"Hackers\""
},
{
"url": "https://slashdot.org/story/99/10/10/0844252/michael-lewis-profiles-jim-clark-in-ny-times",
"title": "Michael Lewis Profiles Jim Clark in NY Times"
},
{
"url": "https://news.slashdot.org/story/99/10/10/1114226/no-more-suits-it-worker-shortage-will-end-soon",
"title": "No More Suits; IT Worker Shortage Will End Soon"
},
{
"url": "https://linux.slashdot.org/story/99/10/10/0057237/update-opera-browser-for-linux",
"title": "Update: Opera Browser for Linux"
},
{
"url": "https://science.slashdot.org/story/99/10/10/016205/sir-arthur-clarke-writes-about-the-21st-century",
"title": "Sir Arthur Clarke Writes About the 21st Century"
},
{
"url": "https://slashdot.org/story/99/10/10/0752250/congress-ixnays-fidnet-prez-finds-money",
"title": "Congress Ixnays FIDNET; Prez Finds Money"
},
{
"url": "https://games.slashdot.org/story/99/10/10/0042252/ati-introduces-a-parallel-processing-video-card",
"title": "ATI Introduces a Parallel Processing Video Card"
},
{
"url": "https://ask.slashdot.org/story/99/10/09/2010246/high-intensity-computer-colleges",
"title": "High Intensity Computer Colleges?"
},
{
"url": "https://slashdot.org/story/99/10/09/2119203/new-mexico-drops-creationists-decides-to-evolve",
"title": "New Mexico Drops Creationists, Decides to Evolve"
},
{
"url": "https://ask.slashdot.org/story/99/10/09/205210/linux-based-thin-x-terminals",
"title": "Linux-Based Thin X-Terminals?"
},
{
"url": "https://ask.slashdot.org/story/99/10/09/201241/ftp-client-recommendations",
"title": "FTP Client Recommendations?"
},
{
"url": "https://ask.slashdot.org/story/99/10/09/1956218/suggested-books-for-learning-cryptography",
"title": "Suggested Books for Learning Cryptography?"
},
{
"url": "https://ask.slashdot.org/story/99/10/09/1954240/is-there-an-ecco-out-there",
"title": "Is there an ECCO out there?"
},
{
"url": "https://slashdot.org/story/99/10/09/126249/the-end-of-moores-law",
"title": "The End of Moore's Law?"
},
{
"url": "https://hardware.slashdot.org/story/99/10/09/1149211/building-an-1100mhz-superstation",
"title": "Building an 1100Mhz \"SuperStation\""
},
{
"url": "https://news.slashdot.org/story/99/10/08/2123255/notes-toward-a-postcyberpunk-manifesto",
"title": "Notes Toward a Postcyberpunk Manifesto"
},
{
"url": "https://linux.slashdot.org/story/99/10/09/0815228/linux-art-and-lotsa-linux-hype",
"title": "Linux Art and Lotsa Linux Hype"
},
{
"url": "https://tech.slashdot.org/story/99/10/09/084208/mozilla-m10-released",
"title": "Mozilla M10 Released"
},
{
"url": "https://linux.slashdot.org/story/99/09/29/056205/recommended-hardware-for-streaming-mp3-radio-stations",
"title": "Recommended Hardware for Streaming MP3 Radio Stations?"
},
{
"url": "https://linux.slashdot.org/story/99/10/08/2113226/german-linux-hotel-has-tux-in-every-bed",
"title": "German \"Linux Hotel\" has Tux in Every Bed"
},
{
"url": "https://linux.slashdot.org/story/99/10/08/2014211/lwns-penguin-gallery",
"title": "LWN's Penguin Gallery"
},
{
"url": "https://news.slashdot.org/story/99/10/08/2232222/david-huffman-is-dead",
"title": "David Huffman is Dead"
},
{
"url": "https://news.slashdot.org/story/99/10/08/2028219/esr-responds-to-nikolai-bezroukov",
"title": "ESR Responds to Nikolai Bezroukov"
},
{
"url": "https://slashdot.org/story/99/10/08/1927232/va-linux-files-for-ipo",
"title": "VA Linux Files For IPO"
},
{
"url": "https://slashdot.org/story/99/10/08/1336243/managing-geeks",
"title": "Managing Geeks"
},
{
"url": "https://slashdot.org/story/99/10/08/1640258/commercials-suck",
"title": "Commercials Suck"
},
{
"url": "https://slashdot.org/story/99/10/08/1226209/us-admits-cyberwarfare-against-yugoslavia",
"title": "US Admits CyberWarfare against Yugoslavia"
},
{
"url": "https://tech.slashdot.org/story/99/10/08/1231251/whither-netscape-50",
"title": "Whither Netscape 5.0?"
},
{
"url": "https://yro.slashdot.org/story/99/10/07/151221/dirty-domains",
"title": "Dirty Domains"
},
{
"url": "https://slashdot.org/story/99/10/08/1134228/both-students-and-teachers-use-technology-to-cheat",
"title": "Both Students and Teachers Use Technology to Cheat"
},
{
"url": "https://slashdot.org/story/99/10/08/1029243/a-bold-essay-from-tim-oreilly",
"title": "A Bold Essay From Tim O'Reilly"
},
{
"url": "https://news.slashdot.org/story/99/10/08/1147217/the-interview-with-bruce-sterling",
"title": "The Interview with Bruce Sterling"
},
{
"url": "https://it.slashdot.org/story/99/10/08/1050249/this-email-will-self-destruct",
"title": "This Email Will Self Destruct..."
},
{
"url": "https://news.slashdot.org/story/99/10/08/0924222/cbs-to-pay-one-million-to-desert-island-survivor",
"title": "CBS to Pay One Million to Desert Island \"Survivor\""
},
{
"url": "https://linux.slashdot.org/story/99/10/08/0943248/alan-cox-says-24-kernel-in-november",
"title": "Alan Cox says 2.4 Kernel in November"
},
{
"url": "https://news.slashdot.org/story/99/10/08/1025211/academic-criticism-of-esrs-the-cathedral-the-bazaar",
"title": "Academic Criticism of ESR's The Cathedral & The Bazaar"
},
{
"url": "https://news.slashdot.org/story/99/10/08/0250221/robert-cringley-on-slashdot-editing-janes",
"title": "Robert Cringley on Slashdot Editing Jane's"
},
{
"url": "https://tech.slashdot.org/story/99/10/07/1620257/revolution-in-graphics",
"title": "Revolution in Graphics?"
},
{
"url": "https://linux.slashdot.org/story/99/10/07/174238/ellison-to-push-linux-ncs",
"title": "Ellison to Push Linux NCs"
},
{
"url": "https://tech.slashdot.org/story/99/10/07/2327229/hp-ibm-unveil-new-chips",
"title": "HP & IBM Unveil New Chips"
},
{
"url": "https://hardware.slashdot.org/story/99/10/07/1442218/victorinox-announces-cybertool",
"title": "Victorinox Announces Cybertool"
},
{
"url": "https://hardware.slashdot.org/story/99/10/07/1257212/good-bye-nino-hello-from-handspring",
"title": "Good-Bye Nino; Hello from Handspring"
},
{
"url": "https://slashdot.org/story/99/10/07/1322244/wheres-all-the-outrage-about-the-ipv6-privacy",
"title": "Where's All The Outrage About The IPv6 Privacy?"
},
{
"url": "https://linux.slashdot.org/story/99/10/07/0940223/mad-dog-goes-underground",
"title": "Mad Dog Goes Underground"
},
{
"url": "https://science.slashdot.org/story/99/10/07/1313256/the-cat-cam",
"title": "The Cat Cam"
},
{
"url": "https://yro.slashdot.org/story/99/10/07/1224253/mp3s-evade-censorship-in-belgrade",
"title": "MP3s Evade Censorship in Belgrade"
},
{
"url": "https://features.slashdot.org/story/99/10/07/120249/janes-intelligence-review-lauds-slashdot-readers-as-cyberterrorism-experts",
"title": "Jane's Intelligence Review Lauds Slashdot Readers as Cyberterrorism Experts"
},
{
"url": "https://tech.slashdot.org/story/99/10/07/1014220/rambus-production-capacity-switched-to-make-sdram",
"title": "Rambus Production Capacity Switched to Make SDRAM"
},
{
"url": "https://science.slashdot.org/story/99/10/07/0844255/hubble-discovers-birth-of-galaxy",
"title": "Hubble Discovers Birth of Galaxy"
},
{
"url": "https://slashdot.org/story/99/10/07/094222/scared-of-your-own-words",
"title": "Scared of Your Own Words?"
},
{
"url": "https://news.slashdot.org/story/99/10/02/1228218/the-big-u",
"title": "The Big U"
},
{
"url": "https://news.slashdot.org/story/99/10/07/0829246/is-technology-unplugging-our-minds",
"title": "\"Is Technology Unplugging Our Minds?\""
},
{
"url": "https://tech.slashdot.org/story/99/10/07/0822225/playstation-2-workstation",
"title": "Playstation 2 Workstation"
},
{
"url": "https://science.slashdot.org/story/99/10/07/0818252/sound-producing-lcd-screens",
"title": "Sound-producing LCD Screens"
},
{
"url": "https://slashdot.org/story/99/10/06/2148218/pez-forbidden-in-meta-tags",
"title": "\"Pez\" Forbidden in Meta Tags"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0441219/what-alternative-domain-registrants-are-out-there",
"title": "What Alternative Domain Registrants are out There?"
},
{
"url": "https://science.slashdot.org/story/99/10/06/2147249/a-10th-planet-in-our-solar-system",
"title": "A 10th Planet in Our Solar System?"
},
{
"url": "https://science.slashdot.org/story/99/10/07/0032215/nanoguitar---the-next-musical-generation",
"title": "Nanoguitar - The Next Musical Generation"
},
{
"url": "https://slashdot.org/story/99/10/06/2114201/russians-crack-us-department-of-defense-computers",
"title": "Russians Crack US Department of Defense Computers"
},
{
"url": "https://linux.slashdot.org/story/99/10/06/2129208/red-hat-moves-into-european-linux-marketplace",
"title": "Red Hat Moves Into European Linux Marketplace"
},
{
"url": "https://news.slashdot.org/story/99/10/06/1649242/scully-to-leave-x-files-as-well",
"title": "Scully to leave X-Files as well"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1841254/keyboards---dvorak-or-qwerty",
"title": "Keyboards - Dvorak or Qwerty?"
},
{
"url": "https://bsd.slashdot.org/story/99/10/06/173210/openbsd-gains-commercial-support",
"title": "OpenBSD Gains Commercial Support"
},
{
"url": "https://linux.slashdot.org/story/99/10/06/1634227/torvalds-criticizes-open-source-wannabes",
"title": "Torvalds Criticizes Open-Source Wannabes"
},
{
"url": "https://news.slashdot.org/story/99/10/06/1316233/google-in-the-new-york-times",
"title": "Google in The New York Times"
},
{
"url": "https://science.slashdot.org/story/99/10/01/1215235/short-history-of-the-21st-century",
"title": "Short History of the 21st Century"
},
{
"url": "https://news.slashdot.org/story/99/10/02/1251251/antarctica",
"title": "Antarctica"
},
{
"url": "https://slashdot.org/story/99/10/06/0816247/henleycom-reznorcom-is-your-name-next",
"title": "Henley.com, Reznor.com. Is Your Name Next?"
},
{
"url": "https://science.slashdot.org/story/99/10/06/0740209/nasamit-can-successfully-grow-human-tissue",
"title": "NASA/MIT Can Successfully Grow Human Tissue"
},
{
"url": "https://slashdot.org/story/99/10/06/0734213/qnx-os-on-a-floppy",
"title": "QNX OS on a floppy"
},
{
"url": "https://tech.slashdot.org/story/99/10/05/2053219/dvorak-takes-on-the-crackers",
"title": "Dvorak Takes On The Crackers"
},
{
"url": "https://slashdot.org/story/99/10/05/2236249/princeton-prof-advocates-euthanizing-handicapped-babies",
"title": "Princeton Prof Advocates Euthanizing Handicapped Babies"
},
{
"url": "https://tech.slashdot.org/story/99/10/05/2051201/disposable-computers",
"title": "Disposable Computers"
},
{
"url": "https://science.slashdot.org/story/99/10/05/2113248/alan-turings-prediction-for-the-year-2000",
"title": "Alan Turing's Prediction for the Year 2000"
},
{
"url": "https://slashdot.org/story/99/10/05/2028211/that-70s-shows-new-theme-song-sucks",
"title": "That 70s Show's New Theme Song Sucks"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/188223/will-expiration-of-rsas-patent-unencumber-sslpgp",
"title": "Will Expiration of RSA's Patent Unencumber SSL/PGP?"
},
{
"url": "https://linux.slashdot.org/story/99/10/05/1714254/microsoft-clarifies-linux-myths",
"title": "Microsoft Clarifies Linux Myths"
},
{
"url": "https://slashdot.org/story/99/10/05/1627229/congressman-advocates-breaking-up-a-guilty-ms",
"title": "Congressman Advocates Breaking-Up a Guilty MS"
},
{
"url": "https://apple.slashdot.org/story/99/10/05/1554251/new-imac-rolled-out",
"title": "New iMac Rolled Out"
},
{
"url": "https://hardware.slashdot.org/story/99/10/05/120215/psion-revo-and-palm-vx-launched",
"title": "Psion Revo and Palm Vx launched"
},
{
"url": "https://slashdot.org/story/99/10/05/1234234/monty-python-turns-30",
"title": "Monty Python Turns 30"
},
{
"url": "https://slashdot.org/story/99/10/05/1153209/ultra-cheap-ultras-from-sun",
"title": "Ultra Cheap Ultras From Sun"
},
{
"url": "https://linux.slashdot.org/story/99/09/29/1025211/running-linux-3rd-edition",
"title": "Running Linux, 3rd Edition"
},
{
"url": "https://slashdot.org/story/99/10/05/0834228/amds-new-sledgehammer-64-bit-chip",
"title": "AMD's New SledgeHammer: 64 bit chip"
},
{
"url": "https://linux.slashdot.org/story/99/10/05/0825255/macmillan-sells-most-linux-gets-no-respect",
"title": "MacMillan Sells Most Linux, gets No Respect"
},
{
"url": "https://slashdot.org/story/99/10/05/0740259/microsoft-and-mit-team-together",
"title": "Microsoft and MIT Team Together"
},
{
"url": "https://slashdot.org/story/99/10/05/054250/canadian-post-office-moves-online-in-a-big-way",
"title": "Canadian Post Office Moves Online in a Big Way"
},
{
"url": "https://slashdot.org/story/99/10/04/2346209/ibm-sets-another-disk-drive-world-record",
"title": "IBM sets another disk-drive world record"
},
{
"url": "https://yro.slashdot.org/story/99/10/02/2341249/ifea-letter-to-congress",
"title": "IFEA Letter to Congress"
},
{
"url": "https://news.slashdot.org/story/99/10/04/239207/october-5-national-techies-day",
"title": "October 5: National Techies Day"
},
{
"url": "https://linux.slashdot.org/story/99/10/04/236250/zdnet-admits-mistakes-in-recent-securitytest",
"title": "ZDNet Admits Mistakes in Recent SecurityTest"
},
{
"url": "https://yro.slashdot.org/story/99/10/04/1727258/congress-vatican-moving-toward-censorware",
"title": "Congress, Vatican Moving Toward Censorware"
},
{
"url": "https://it.slashdot.org/story/99/10/04/2330200/us-congress-gets-spammed-by-self",
"title": "US Congress gets Spammed by Self"
},
{
"url": "https://slashdot.org/story/99/10/04/2255247/mciworldcom-buys-sprint",
"title": "MCI/Worldcom buys Sprint"
},
{
"url": "https://linux.slashdot.org/story/99/10/04/1718223/red-hats-donnie-barnes-in-live-chat-on-cnn",
"title": "Red Hat's Donnie Barnes in Live Chat on CNN"
},
{
"url": "https://news.slashdot.org/story/99/10/04/0854249/lotus-says-the-industry-supports-censorship",
"title": "Lotus Says: The Industry Supports Censorship"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1550254/writing-apps-for-gnome-and-kde",
"title": "Writing Apps for GNOME *and* KDE?"
},
{
"url": "https://slashdot.org/story/99/10/04/1356207/blaxxun-vrml-browser-source-released",
"title": "Blaxxun VRML Browser Source Released"
},
{
"url": "https://news.slashdot.org/story/99/10/04/1247257/dd-movie-on-the-way",
"title": "D&D Movie on The Way"
},
{
"url": "https://slashdot.org/story/99/10/04/1131249/itani-what-merced-is-renamed",
"title": "Itani-what?: Merced is Renamed"
},
{
"url": "https://news.slashdot.org/story/99/10/04/1022237/ask-bruce-sterling",
"title": "Ask Bruce Sterling"
},
{
"url": "https://tech.slashdot.org/story/99/10/04/1124236/prototype-150gbyte-read-only-disk-demonstrated",
"title": "Prototype 150GByte Read-Only Disk Demonstrated"
},
{
"url": "https://linux.slashdot.org/story/99/09/30/1025228/road-to-linux----made-it",
"title": "Road To Linux -- Made It!"
},
{
"url": "https://news.slashdot.org/story/99/10/04/0836212/janes-intelligence-review-needs-your-help-with-cyberterrorism",
"title": "Jane's Intelligence Review Needs Your Help With Cyberterrorism"
},
{
"url": "https://linux.slashdot.org/story/99/10/04/0826242/red-hat-61-officially-announced",
"title": "Red Hat 6.1 Officially Announced"
},
{
"url": "https://science.slashdot.org/story/99/10/04/0822217/its-raining-diamonds-on-neptune-uranus",
"title": "It's raining diamonds on Neptune & Uranus"
},
{
"url": "https://yro.slashdot.org/story/99/10/02/1939243/monitoring-employee-email-possible-legislation",
"title": "Monitoring Employee Email: Possible Legislation"
},
{
"url": "https://it.slashdot.org/story/99/10/03/1414205/fear-and-flooding-in-las-vegas",
"title": "\"Fear and Flooding in Las Vegas\""
},
{
"url": "https://news.slashdot.org/story/99/10/03/2136215/australian-stock-exchange-crack-attempt-came-from-us-military-installation",
"title": "Australian Stock Exchange Crack Attempt Came From US Military Installation"
},
{
"url": "https://slashdot.org/story/99/10/03/1358257/why-most-software-sucks",
"title": "Why Most Software Sucks"
},
{
"url": "https://news.slashdot.org/story/99/10/03/1413224/sony-founder-akio-morita-dead-at-age-78",
"title": "Sony founder Akio Morita dead at age 78"
},
{
"url": "https://games.slashdot.org/story/99/10/03/1449250/doom-source-now-under-gpl",
"title": "Doom Source Now Under GPL"
},
{
"url": "https://tech.slashdot.org/story/99/10/03/140237/exoatmospheric-kill-vechicle-test-successful",
"title": "Exoatmospheric Kill Vechicle Test Successful"
},
{
"url": "https://it.slashdot.org/story/99/10/03/1344228/israelis-crack-rsa-512-bit-in-microseconds",
"title": "Israelis Crack RSA 512 Bit in Microseconds"
},
{
"url": "https://yro.slashdot.org/story/99/10/02/1143258/doj-fights-hackers-with-brainwashing",
"title": "DOJ Fights Hackers with Brainwashing"
},
{
"url": "https://news.slashdot.org/story/99/10/02/216207/l0pht-heavy-industries-in-ny-times-magazine",
"title": "L0pht Heavy Industries in NY Times Magazine"
},
{
"url": "https://slashdot.org/story/99/10/02/2236238/barbie-and-hotwheels-pcs-for-kids",
"title": "Barbie and Hotwheels PCs for Kids"
},
{
"url": "https://slashdot.org/story/99/10/02/2247246/700-mhz-athlon",
"title": "700 MHz Athlon"
},
{
"url": "https://yro.slashdot.org/story/99/10/02/1912251/sensation-on-david-bowies-website",
"title": "\"Sensation\" on David Bowie's Website"
},
{
"url": "https://tech.slashdot.org/story/99/10/02/2140232/genetic-algorithm-generated-lego-bridge",
"title": "Genetic Algorithm Generated Lego Bridge"
},
{
"url": "https://science.slashdot.org/story/99/10/02/2044206/scientists-hope-to-clone-woolly-mammoth",
"title": "Scientists Hope to Clone Woolly Mammoth"
},
{
"url": "https://linux.slashdot.org/story/99/10/02/1410221/red-hat-releases-version-61",
"title": "Red Hat Releases Version 6.1"
},
{
"url": "https://yro.slashdot.org/story/99/10/02/120253/dsl-privacy",
"title": "DSL & Privacy"
},
{
"url": "https://yro.slashdot.org/story/99/10/02/115225/bernstein-back-in-court",
"title": "Bernstein Back in Court"
},
{
"url": "https://tech.slashdot.org/story/99/10/01/1632200/cups-10-enters-the-world",
"title": "CUPS 1.0 Enters The World"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1644249/open-web-based-olap-clients",
"title": "Open, Web-Based OLAP Clients?"
},
{
"url": "https://news.slashdot.org/story/99/10/01/1546255/pizza-hut-pays-25e6-for-rocket-advertising",
"title": "Pizza Hut Pays $2.5e6 for Rocket Advertising"
},
{
"url": "https://science.slashdot.org/story/99/10/01/113233/neural-net-outperfoms-human-in-speech-recognition",
"title": "Neural Net Outperfoms Human in Speech Recognition"
},
{
"url": "https://news.slashdot.org/story/99/09/30/1418244/eric-s-raymond-answers",
"title": "Eric S. Raymond Answers"
},
{
"url": "https://slashdot.org/story/99/10/01/0922247/ibms-colorful-notebooks",
"title": "IBM's Colorful Notebooks"
},
{
"url": "https://it.slashdot.org/story/99/10/01/0956208/quantum-encryption-explained",
"title": "Quantum Encryption Explained"
},
{
"url": "https://slashdot.org/story/99/10/01/0837240/internet-metadata---open-collaborative-rating",
"title": "Internet Metadata - Open Collaborative Rating"
},
{
"url": "https://slashdot.org/story/99/10/01/0915228/1999-ig-nobel-winners",
"title": "1999 Ig Nobel Winners!"
},
{
"url": "https://tech.slashdot.org/story/99/10/01/0840219/qwerty-dvorak-and-more",
"title": "QWERTY, Dvorak and More"
},
{
"url": "https://features.slashdot.org/story/99/09/27/1049258/toward-a-better-open-source-license",
"title": "Toward a Better Open Source License"
},
{
"url": "https://slashdot.org/story/99/10/01/0827250/k8-details",
"title": "K8 Details"
},
{
"url": "https://slashdot.org/story/99/10/01/0819259/sun-to-release-solaris-source-code",
"title": "Sun to release Solaris source code"
},
{
"url": "https://news.slashdot.org/story/99/10/01/089231/the-matrix-dvd-troubles",
"title": "The Matrix DVD Troubles"
},
{
"url": "https://tech.slashdot.org/story/99/10/01/0822255/on-the-transmeta-patents",
"title": "On The Transmeta Patents"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0451243/can-you-rip-dat-audio",
"title": "Can you Rip DAT audio?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0526216/linux-and-cell-phones",
"title": "Linux and Cell Phones?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0458233/the-slashdot-broadcasting-network",
"title": "The Slashdot Broadcasting Network?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/051255/one-handed-linux",
"title": "One-Handed Linux?"
},
{
"url": "https://slashdot.org/story/99/09/30/1525237/home---aol-deal-brewing",
"title": "@HOME - AOL Deal Brewing?"
},
{
"url": "https://linux.slashdot.org/story/99/09/30/1426250/downloadcom-features-linux-distro",
"title": "Download.com Features Linux Distro"
},
{
"url": "https://science.slashdot.org/story/99/09/30/1437217/mars-orbiter-lost-over-metric-conversion-error",
"title": "Mars Orbiter Lost Over Metric Conversion Error"
},
{
"url": "https://news.slashdot.org/story/99/09/30/1426206/japan-suffers-its-worst-nuke-plant-accident-ever",
"title": "Japan Suffers its Worst Nuke Plant Accident Ever"
},
{
"url": "https://slashdot.org/story/99/09/30/1220202/atlas-of-cyberspaces",
"title": "Atlas of Cyberspaces"
},
{
"url": "https://yro.slashdot.org/story/99/09/26/2213201/internet-rating-system-plans-to-globalize",
"title": "Internet Rating System Plans to Globalize"
},
{
"url": "https://ask.slashdot.org/story/99/09/19/1326246/women-in-the-open-sourcefree-software-communities",
"title": "Women in the Open Source/Free Software Communities?"
},
{
"url": "https://linux.slashdot.org/story/99/09/30/1144255/jesux-hoax-confirmed",
"title": "Jesux, Hoax Confirmed"
},
{
"url": "https://bsd.slashdot.org/story/99/09/30/0921208/article-on-openbsd-and-theo-de-raadt",
"title": "Article on OpenBSD and Theo de Raadt"
},
{
"url": "https://linux.slashdot.org/story/99/09/30/1042236/details-of-the-pcweek-securelinux-crack",
"title": "Details of the PCWeek Securelinux Crack"
},
{
"url": "https://features.slashdot.org/story/99/09/27/0946235/according-to-compaq",
"title": "According to Compaq"
},
{
"url": "https://science.slashdot.org/story/99/09/22/1052238/the-stars-my-destination",
"title": "The Stars My Destination"
},
{
"url": "https://slashdot.org/story/99/09/30/093251/bug-in-pentium-iii-xeon-processors",
"title": "Bug in Pentium III Xeon Processors"
},
{
"url": "https://developers.slashdot.org/story/99/09/30/096250/perl6-being-rewritten-in-c",
"title": "Perl6 Being Rewritten in C++"
},
{
"url": "https://news.slashdot.org/story/99/09/30/0823245/kasparov-vs-the-world-its-all-different",
"title": "Kasparov vs. The World: It's all different"
},
{
"url": "https://tech.slashdot.org/story/99/09/30/0820223/improving-wireless-networks",
"title": "Improving Wireless Networks"
},
{
"url": "https://slashdot.org/story/99/09/29/2347206/would-linux-survive-if-solaris-was-free",
"title": "Would Linux Survive if Solaris Was Free?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0449226/setting-up-a-cvs-server-on-linux",
"title": "Setting up a CVS Server on Linux?"
},
{
"url": "https://slashdot.org/story/99/09/29/0439250/silent-computing",
"title": "Silent Computing?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0435241/win32-to-x11-migration",
"title": "Win32 to X11 Migration?"
},
{
"url": "https://slashdot.org/story/99/09/29/238242/acm-crossroads-e-zine-does-special-linux-issue",
"title": "ACM \"Crossroads\" E-Zine Does Special Linux Issue"
},
{
"url": "https://news.slashdot.org/story/99/09/29/2334234/new-g2-realplayer-alpha",
"title": "New G2 RealPlayer Alpha"
},
{
"url": "https://games.slashdot.org/story/99/09/29/2319237/zorb---inflatable-human-hamster-ball",
"title": "Zorb - Inflatable Human Hamster ball"
},
{
"url": "https://news.slashdot.org/story/99/09/29/2048229/open-source-e-commerce-engine-announced",
"title": "Open Source E-commerce Engine Announced"
},
{
"url": "https://yro.slashdot.org/story/99/09/29/157251/banned-books-week",
"title": "Banned Books Week"
},
{
"url": "https://slashdot.org/story/99/09/29/163220/massive-fiber-cut-slows-net",
"title": "Massive Fiber Cut Slows Net"
},
{
"url": "https://hardware.slashdot.org/story/99/09/29/1342216/turn-your-15-monitor-into-30-cheap",
"title": "Turn Your 15\" Monitor Into 30 Cheap"
},
{
"url": "https://yro.slashdot.org/story/99/09/26/1511233/fidnet-cyberwarfare-and-reality",
"title": "FIDNET, Cyberwarfare, and Reality"
},
{
"url": "https://slashdot.org/story/99/09/29/119245/petreley-on-win2k-installs-and-softway-systems",
"title": "Petreley on Win2k Installs and Softway Systems"
},
{
"url": "https://news.slashdot.org/story/99/09/29/0914253/the-programmers-stone",
"title": "The Programmer's Stone"
},
{
"url": "https://slashdot.org/story/99/09/29/101225/forbes-takes-on-antionline",
"title": "Forbes Takes on AntiOnline"
},
{
"url": "https://science.slashdot.org/story/99/09/27/1243213/things-that-make-us-smart-defending-human-attributes-in-the-age-of-the-machine",
"title": "Things That Make Us Smart: Defending Human Attributes in the Age of the Machine"
},
{
"url": "https://slashdot.org/story/99/09/29/094233/ibm-launching-wearable-pc",
"title": "IBM launching wearable PC"
},
{
"url": "https://slashdot.org/story/99/09/29/0816201/matt-welsh-on-npr",
"title": "Matt Welsh on NPR"
},
{
"url": "https://news.slashdot.org/story/99/09/29/0033224/cia-starts-hi-tech-venture-capital-firm",
"title": "CIA Starts Hi-Tech Venture Capital Firm"
},
{
"url": "https://science.slashdot.org/story/99/09/28/2037206/space-probes-too-slow---scientists-ask-why",
"title": "Space Probes Too Slow - Scientists Ask \"Why?\""
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0442228/secure-real-time-communication",
"title": "Secure Real-time Communication?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0418208/reverse-engineering",
"title": "Reverse Engineering?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0334256/all-of-the-win32-operating-systems-on-a-single-box",
"title": "All of the Win32 Operating Systems on a Single Box?"
},
{
"url": "https://ask.slashdot.org/story/99/09/29/0328241/awe64-spdif-out-to-optical-input",
"title": "AWE64 SPDIF Out To Optical Input?"
},
{
"url": "https://slashdot.org/story/99/09/28/0727252/isp-war-in-the-uk",
"title": "ISP War in the UK"
},
{
"url": "https://slashdot.org/story/99/09/28/1735231/what-happened-to-oracles-1-million-server-challenge",
"title": "What Happened to Oracle's $1 Million Server Challenge?"
},
{
"url": "https://linux.slashdot.org/story/99/09/28/1912242/cnn-installs-linux",
"title": "CNN Installs Linux"
},
{
"url": "https://tech.slashdot.org/story/99/09/28/1825256/netscape-47-arrives-on-the-scene",
"title": "Netscape 4.7 Arrives on the Scene"
},
{
"url": "https://yro.slashdot.org/story/99/09/22/1651207/university-spam",
"title": "University Spam"
},
{
"url": "https://tech.slashdot.org/story/99/09/28/1531230/transmeta-awarded-another-patent",
"title": "Transmeta Awarded Another Patent"
},
{
"url": "https://slashdot.org/story/99/09/28/1517210/more-open-source-and-linux-support-from-ibm",
"title": "More Open Source and Linux Support from IBM"
},
{
"url": "https://slashdot.org/story/99/09/28/152226/ebay-vs-search-engines",
"title": "ebay vs Search Engines"
},
{
"url": "https://tech.slashdot.org/story/99/09/28/1433233/wireless-video-phone",
"title": "Wireless Video Phone"
},
{
"url": "https://yro.slashdot.org/story/99/09/28/106249/privacy-quickies",
"title": "Privacy Quickies"
},
{
"url": "https://yro.slashdot.org/story/99/09/26/1342206/dear-mr-straw",
"title": "Dear Mr. Straw"
},
{
"url": "https://slashdot.org/story/99/09/28/1119245/new-dns-agreement-announcement",
"title": "New DNS Agreement Announcement"
},
{
"url": "https://slashdot.org/story/99/09/28/105228/norwegian-company-claims-to-have-patented-e-commerce",
"title": "Norwegian Company Claims to have Patented e-Commerce"
},
{
"url": "https://ask.slashdot.org/story/99/09/25/2036254/carpal-tunnel-surgery",
"title": "Carpal Tunnel Surgery?"
},
{
"url": "https://news.slashdot.org/story/99/09/16/1412216/network-intrusion-detection-an-analysis-handbook",
"title": "Network Intrusion Detection: An Analysis Handbook"
},
{
"url": "https://tech.slashdot.org/story/99/09/27/1315252/clothoorg-and-the-coming-cyberclysm",
"title": "Clotho.Org and the Coming Cyberclysm"
},
{
"url": "https://yro.slashdot.org/story/99/09/28/005227/a-million-pounds-of-surveillance",
"title": "A million pounds of surveillance"
},
{
"url": "https://yro.slashdot.org/story/99/09/28/096224/publishers-lose-database-copyright-appeal",
"title": "Publishers Lose Database Copyright Appeal"
},
{
"url": "https://slashdot.org/story/99/09/28/0826256/the-cell-phone-pda-revolution",
"title": "The Cell Phone-PDA Revolution"
},
{
"url": "https://hardware.slashdot.org/story/99/09/28/0755216/preview-of-the-geforce-256",
"title": "Preview of The GeForce 256"
},
{
"url": "https://apple.slashdot.org/story/99/09/28/0727217/compare-and-contrast-linux-and-apple",
"title": "Compare and Contrast: Linux and Apple"
},
{
"url": "https://yro.slashdot.org/story/99/09/27/2330215/yahoo-requires-ssn",
"title": "Yahoo! Requires SSN?"
},
{
"url": "https://yro.slashdot.org/story/99/09/27/2112208/abc-showed-ips-of-chatroom-participants",
"title": "ABC Showed IPs of Chatroom Participants"
},
{
"url": "https://news.slashdot.org/story/99/09/27/2158242/trends-in-an-open-source-project",
"title": "Trends in an Open Source Project"
},
{
"url": "https://science.slashdot.org/story/99/09/27/2153200/grow-your-own-plastic",
"title": "Grow Your Own Plastic"
},
{
"url": "https://linux.slashdot.org/story/99/09/27/2155259/jesux-is-a-bad-pun",
"title": "Jesux is a Bad Pun"
},
{
"url": "https://news.slashdot.org/story/99/09/27/1236246/marion-zimmer-bradley-passed-on",
"title": "Marion Zimmer Bradley Passed on"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1836229/home-computer-furniture-solutions",
"title": "Home Computer Furniture Solutions"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1810232/where-can-i-get-an-amiga",
"title": "Where can I get an Amiga?"
},
{
"url": "https://news.slashdot.org/story/99/09/27/1347213/la-times-columnist-says-geek-autism-is-a-good-thing",
"title": "L.A. Times Columnist Says Geek-Autism is a Good Thing"
},
{
"url": "https://news.slashdot.org/story/99/09/27/1412208/borland-delphi-and-cbuilder-for-linux",
"title": "Borland Delphi and CBuilder for Linux."
},
{
"url": "https://tech.slashdot.org/story/99/09/27/1429200/fastest-pc-in-the-world-runs-athlon-at-800mhz",
"title": "\"Fastest PC in the World\" Runs Athlon at 800MHz"
},
{
"url": "https://slashdot.org/story/99/09/27/1257234/ibm-unveiling-new-transcoder-technology",
"title": "IBM Unveiling New Transcoder Technology"
},
{
"url": "https://science.slashdot.org/story/99/09/27/1255221/haptic-feedback-nanomanipulator",
"title": "Haptic Feedback Nanomanipulator"
},
{
"url": "https://ask.slashdot.org/story/99/09/22/1236208/the-rise-of-technology--the-fall-of-trees",
"title": "The Rise of Technology / The Fall of Trees?"
},
{
"url": "https://news.slashdot.org/story/99/09/27/1242213/hilton-hotels-not-planning-space-hotel",
"title": "Hilton Hotels Not Planning Space Hotel"
},
{
"url": "https://yro.slashdot.org/story/99/09/27/0246220/ibm-stamping-ids-into-new-pcs",
"title": "IBM stamping ID's into new PC's"
},
{
"url": "https://linux.slashdot.org/story/99/09/25/0926250/ask-eric-s-raymond-anything",
"title": "Ask Eric S. Raymond Anything"
},
{
"url": "https://slashdot.org/story/99/09/27/1152245/the-gift-culture-in-cyberspace",
"title": "The Gift Culture in Cyberspace"
},
{
"url": "https://linux.slashdot.org/story/99/09/27/1027252/cygnus-announces-embedded-linux-solution",
"title": "Cygnus Announces \"Embedded Linux Solution\""
},
{
"url": "https://tech.slashdot.org/story/99/09/26/1914228/the-coming-cyberclysm---part-one",
"title": "The Coming Cyberclysm - Part One"
},
{
"url": "https://news.slashdot.org/story/99/09/26/2020253/galileos-daughter",
"title": "Galileo's Daughter"
},
{
"url": "https://slashdot.org/story/99/09/27/095203/betting-on-y2k-disasters",
"title": "Betting on Y2K Disasters"
},
{
"url": "https://science.slashdot.org/story/99/09/27/0818251/wwii-allies-tested-tidal-wave-bomb",
"title": "WWII Allies Tested Tidal Wave Bomb"
},
{
"url": "https://linux.slashdot.org/story/99/09/27/0656207/sun-and-star-offices-licence-agreement",
"title": "SUN and Star Office's Licence agreement."
},
{
"url": "https://tech.slashdot.org/story/99/09/27/0652251/face-recognition-cool-or-privacy-threat",
"title": "Face Recognition (Cool or Privacy Threat?)"
},
{
"url": "https://science.slashdot.org/story/99/09/27/0247246/atomic-orbitals-imaged",
"title": "Atomic Orbitals Imaged"
},
{
"url": "https://apple.slashdot.org/story/99/09/27/0211233/pictures-of-new-imac",
"title": "Pictures of New iMac"
},
{
"url": "https://slashdot.org/story/99/09/26/2050230/school-expels-pcs-installs-ncs",
"title": "School Expels PCs, Installs NCs"
},
{
"url": "https://ask.slashdot.org/story/99/09/25/208222/processor-upgrade-for-an-old-notebook",
"title": "Processor Upgrade for an Old Notebook?"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1639235/accepting-cookies-from-only-one-site-on-the-web",
"title": "Accepting Cookies from Only One Site on the Web?"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1634259/which-cable-modem-service",
"title": "Which Cable Modem Service?"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1559203/open-source-translation-dictionaries",
"title": "Open Source Translation Dictionaries?"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1556234/low-powered-cheap-small-webservers",
"title": "Low Powered, Cheap, *Small* Webservers?"
},
{
"url": "https://ask.slashdot.org/story/99/09/26/1545220/is-qwests-isp-deal-really-worth-the-hassle",
"title": "Is Qwest's ISP Deal Really Worth the Hassle?"
},
{
"url": "https://linux.slashdot.org/story/99/09/26/1152205/now-its-doctor-linus-torvalds",
"title": "Now It's Doctor Linus Torvalds"
},
{
"url": "https://news.slashdot.org/story/99/09/26/1030213/mp3-albums-and-players-supported-by-stars",
"title": "Mp3 Albums and Players Supported by Stars"
},
{
"url": "https://tech.slashdot.org/story/99/09/26/0731236/the-exoatmospheric-kill-vehicle",
"title": "The Exoatmospheric Kill Vehicle"
},
{
"url": "https://games.slashdot.org/story/99/09/26/0727204/pokemon-lawyers-sue-themselves",
"title": "Pokemon Lawyers Sue Themselves"
},
{
"url": "https://tech.slashdot.org/story/99/09/25/2218219/the-continuing-rise-of-linux-and-unix",
"title": "The Continuing Rise of Linux and UNIX"
},
{
"url": "https://ask.slashdot.org/story/99/09/25/2039235/relocatable-code-how-do-you-do-it",
"title": "Relocatable Code: How do you do it?"
},
{
"url": "https://ask.slashdot.org/story/99/09/25/207239/music-players-for-djs",
"title": "Music Players for DJs?"
},
{
"url": "https://ask.slashdot.org/story/99/09/25/201245/ask-slashdot-whats-the-real-nsa-like",
"title": "Ask Slashdot: What's the Real NSA Like?"
},
{
"url": "https://ask.slashdot.org/story/99/09/25/2010246/nt-blaming-an-ntfs-flaw-on-posix",
"title": "NT blaming an NTFS Flaw on POSIX?"
},
{
"url": "https://games.slashdot.org/story/99/09/25/1751219/nintendo-sued-over-pokemon-gambling-addiction",
"title": "Nintendo Sued Over Pokemon Gambling Addiction"
},
{
"url": "https://news.slashdot.org/story/99/09/25/1136218/cnn-on-sendmail-for-nt",
"title": "CNN on Sendmail for NT"
},
{
"url": "https://science.slashdot.org/story/99/09/25/1124233/nasa-administrator-calls-for-space-privatization",
"title": "NASA Administrator Calls for Space Privatization"
},
{
"url": "https://tech.slashdot.org/story/99/09/25/090207/sf-cab-riders-can-now-surf-the-internet",
"title": "SF Cab Riders Can Now Surf the Internet"
},
{
"url": "https://linux.slashdot.org/story/99/09/25/0849246/dod-computer-forensics-lab-to-use-beowulf",
"title": "DoD Computer Forensics Lab to use Beowulf"
},
{
"url": "https://apple.slashdot.org/story/99/09/24/2010248/no-airport-for-the-french",
"title": "No AirPort for the French?"
},
{
"url": "https://linux.slashdot.org/story/99/09/24/2138259/linux-clustering-cabal-project",
"title": "Linux Clustering Cabal project"
},
{
"url": "https://slashdot.org/story/99/09/24/201232/compaq-helps-you-test-drive-linux-and-unix",
"title": "Compaq Helps You \"Test Drive\" Linux and Unix"
},
{
"url": "https://slashdot.org/story/99/09/24/1536200/i-am-not-a-student-i-am-a-number",
"title": "I Am Not a Student, I Am a Number"
},
{
"url": "https://slashdot.org/story/99/09/24/1458200/virgniainternet-capital",
"title": "Virgnia:Internet Capital"
},
{
"url": "https://slashdot.org/story/99/09/24/1440217/sen-mccain-introduces-bill-to-ban-internet-taxes-forever",
"title": "Sen. McCain Introduces Bill to Ban Internet Taxes Forever"
},
{
"url": "https://linux.slashdot.org/story/99/09/24/1224221/pcweek-hack-this-page-cracked",
"title": "PCWeek \"Hack This Page\" Cracked"
},
{
"url": "https://slashdot.org/story/99/09/24/0824259/new-microsoft-strategy",
"title": "New Microsoft Strategy"
},
{
"url": "https://linux.slashdot.org/story/99/09/22/1249248/expanding-the-use-of-xml-in-linux",
"title": "Expanding the use of XML in Linux?"
},
{
"url": "https://tech.slashdot.org/story/99/09/24/1056215/havoc-pennington-answers",
"title": "Havoc Pennington Answers"
},
{
"url": "https://science.slashdot.org/story/99/09/24/0722216/interview-with-kevin-warwick",
"title": "Interview with Kevin Warwick"
},
{
"url": "https://slashdot.org/story/99/09/24/0738257/major-problems-with-rambus",
"title": "Major Problems with Rambus"
},
{
"url": "https://news.slashdot.org/story/99/09/24/0650238/more-channels-for-the-digital-musician",
"title": "More Channels for The Digital Musician"
},
{
"url": "https://slashdot.org/story/99/09/23/1955242/sun-gives-up-on-java-tools",
"title": "Sun Gives Up on Java Tools"
},
{
"url": "https://slashdot.org/story/99/09/23/1452234/microsoft-plays-linux-games-at-work",
"title": "Microsoft Plays Linux Games at Work"
},
{
"url": "https://slashdot.org/story/99/09/23/1745255/karma-karma-karma-karmaleon",
"title": "karma-karma-karma-karmaleon"
},
{
"url": "https://slashdot.org/story/99/09/23/1637244/amd-to-build-g4-cpus",
"title": "AMD to Build G4 CPUs?"
},
{
"url": "https://slashdot.org/story/99/09/23/1635220/mcafee-files-for-575-million-ipo",
"title": "McAfee files for 57.5 Million IPO"
},
{
"url": "https://linux.slashdot.org/story/99/09/23/167250/linus-looks-at-his-crystal-ball",
"title": "Linus Looks at His Crystal Ball"
},
{
"url": "https://slashdot.org/story/99/09/23/1249225/corel-clears-the-air",
"title": "Corel Clears the Air"
},
{
"url": "https://linux.slashdot.org/story/99/09/23/1238240/tutorial-on-linux-device-drivers",
"title": "Tutorial on Linux Device Drivers"
},
{
"url": "https://news.slashdot.org/story/99/09/23/1155222/george-c-scott-dead-at-71",
"title": "George C. Scott Dead at 71"
},
{
"url": "https://slashdot.org/story/99/09/23/103221/cable-vs-dsl-explained",
"title": "Cable vs. DSL, Explained"
},
{
"url": "https://slashdot.org/story/99/09/23/1024211/earthlink-and-mindspring-merge",
"title": "Earthlink and Mindspring Merge"
},
{
"url": "https://radio.slashdot.org/story/99/09/23/114240/geeks-in-space-inside-the-iron-lung",
"title": "Geeks In Space: Inside The Iron Lung"
},
{
"url": "https://tech.slashdot.org/story/99/09/23/0917204/sony-to-release-digital-walkman",
"title": "Sony to Release Digital Walkman"
},
{
"url": "https://news.slashdot.org/story/99/09/16/1333202/refactoring-improving-the-design-of-existing-code",
"title": "Refactoring: Improving the Design of Existing Code"
},
{
"url": "https://slashdot.org/story/99/09/23/0836256/aol-sues-over-youve-got-male",
"title": "AOL Sues Over \"You've Got Male\""
},
{
"url": "https://news.slashdot.org/story/99/09/23/0747210/finns-outlaw-virus-writing",
"title": "Finns Outlaw Virus Writing"
},
{
"url": "https://tech.slashdot.org/story/99/09/23/0810219/transmeta-unveiled-in-november",
"title": "Transmeta Unveiled in November?"
},
{
"url": "https://news.slashdot.org/story/99/09/23/0741215/oracles-policy-statement-on-software-patents",
"title": "Oracle's policy statement on software patents"
},
{
"url": "https://science.slashdot.org/story/99/09/23/0738200/mars-climate-orbiter-awol",
"title": "Mars Climate Orbiter AWOL"
},
{
"url": "https://slashdot.org/story/99/09/23/0036227/everything-weve-heard-about-columbine-is-wrong",
"title": "Everything We've Heard About Columbine is Wrong?"
},
{
"url": "https://science.slashdot.org/story/99/09/23/0010215/hilton-studies-feasibility-of-space-hotel",
"title": "Hilton Studies Feasibility of Space Hotel"
},
{
"url": "https://slashdot.org/story/99/09/23/002238/us-helps-finance-new-cray-development",
"title": "U.S. Helps Finance New Cray Development"
},
{
"url": "https://slashdot.org/story/99/09/22/2225207/amd-releases-mobile-cpus",
"title": "AMD Releases Mobile CPUs"
},
{
"url": "https://yro.slashdot.org/story/99/09/22/2031204/porn-jacking-crackdown",
"title": "Porn-Jacking Crackdown"
},
{
"url": "https://slashdot.org/story/99/09/22/1919211/user-friendly-book-coming",
"title": "User Friendly Book Coming"
},
{
"url": "https://news.slashdot.org/story/99/09/22/169247/finns-build-a-virtual-helsinki",
"title": "Finns Build a Virtual Helsinki"
},
{
"url": "https://linux.slashdot.org/story/99/09/22/1723203/linuxone-files-for-an-ipo",
"title": "\"LinuxOne\" files for an IPO"
},
{
"url": "https://yro.slashdot.org/story/99/09/22/0026247/whos-behind-icann",
"title": "\"Who's Behind ICANN?\""
},
{
"url": "https://linux.slashdot.org/story/99/09/22/1334212/red-hat-releases-2nd-quarter-financials",
"title": "Red Hat Releases 2nd Quarter Financials"
},
{
"url": "https://tech.slashdot.org/story/99/09/22/1328212/the-hitchhikers-guide-in-your-pocket",
"title": "The HitchHiker's Guide in Your Pocket"
},
{
"url": "https://news.slashdot.org/story/99/09/22/135202/n-wordcom-owned-by-naacp",
"title": "\"N-word\".com Owned by NAACP"
},
{
"url": "https://ask.slashdot.org/story/99/09/22/129244/archiving-home-movies",
"title": "Archiving Home Movies?"
},
{
"url": "https://ask.slashdot.org/story/99/09/22/120227/open-source-project-management-guides",
"title": "Open Source Project Management Guides?"
},
{
"url": "https://slashdot.org/story/99/09/22/1041229/technological-pratfalls-of-an-online-education",
"title": "Technological Pratfalls of an Online Education"
},
{
"url": "https://ask.slashdot.org/story/99/09/22/1157210/php34-as-web-development-platform",
"title": "PHP3/4 as Web Development Platform?"
},
{
"url": "https://news.slashdot.org/story/99/09/22/1039201/pakistan-india-cyberwar",
"title": "Pakistan-India Cyberwar"
},
{
"url": "https://linux.slashdot.org/story/99/09/22/1028249/winlinux-2000",
"title": "WinLinux 2000"
},
{
"url": "https://slashdot.org/story/99/09/22/1032206/microsoft-antitrust-case-arguments-finished",
"title": "Microsoft Antitrust Case Arguments Finished"
},
{
"url": "https://yro.slashdot.org/story/99/09/21/1949246/sprintpcs-privacy",
"title": "SprintPCS privacy"
},
{
"url": "https://news.slashdot.org/story/99/09/20/1642241/weaving-the-web",
"title": "Weaving The Web"
},
{
"url": "https://apple.slashdot.org/story/99/09/22/0940215/overview-of-linux-on-macintosh-hardware",
"title": "Overview of Linux on Macintosh Hardware"
},
{
"url": "https://slashdot.org/story/99/09/22/0755214/corel-to-fix-beta-test-license",
"title": "Corel \"to fix\" Beta Test License"
},
{
"url": "https://tech.slashdot.org/story/99/09/22/086251/packet-storm-security-is-back",
"title": "Packet Storm Security Is Back"
},
{
"url": "https://news.slashdot.org/story/99/09/21/220206/satellite-images-as-courtroom-evidence",
"title": "Satellite Images as Courtroom Evidence"
},
{
"url": "https://yro.slashdot.org/story/99/09/21/1946223/state-net-restrictions-roundup",
"title": "State Net Restrictions Roundup"
},
{
"url": "https://slashdot.org/story/99/09/21/2151238/intel-cuts-back-on-820-chipset-manufacturing",
"title": "Intel Cuts Back on 820 Chipset Manufacturing"
},
{
"url": "https://news.slashdot.org/story/99/09/21/2145203/uk-banks-blackmailed-by-crackers",
"title": "UK Banks Blackmailed by Crackers"
},
{
"url": "https://yro.slashdot.org/story/99/09/20/2038207/internet-privacy-a-joke",
"title": "Internet Privacy a \"Joke\""
},
{
"url": "https://yro.slashdot.org/story/99/09/21/202204/conference-governing-the-commons",
"title": "Conference: Governing the Commons"
},
{
"url": "https://slashdot.org/story/99/09/21/1825220/corel-sticking-to-closed-source-beta-test",
"title": "Corel Sticking to Closed Source Beta Test?"
},
{
"url": "https://slashdot.org/story/99/09/21/1820254/sgi-releases-ide",
"title": "SGI Releases IDE"
},
{
"url": "https://yro.slashdot.org/story/99/09/21/1226214/big-brother-is-your-friend",
"title": "Big Brother is your Friend"
},
{
"url": "https://linux.slashdot.org/story/99/09/21/1511200/dvorak-on-linux-and-the-big-time",
"title": "Dvorak On Linux And \"The Big Time\""
},
{
"url": "https://slashdot.org/story/99/09/21/1334212/cnn-on-ipv6",
"title": "CNN On IPv6"
},
{
"url": "https://news.slashdot.org/story/99/09/21/1258213/veritas-announces-samba-support-on-solaris",
"title": "Veritas Announces Samba Support On Solaris"
},
{
"url": "https://slashdot.org/story/99/09/21/1230210/is-sun-truly-a-friend-of-linux",
"title": "Is Sun Truly A Friend of Linux?"
},
{
"url": "https://tech.slashdot.org/story/99/09/21/1011216/ncr-sues-netscape-for-patent-infringement",
"title": "NCR Sues Netscape For Patent Infringement"
},
{
"url": "https://news.slashdot.org/story/99/09/21/0940255/who-owns-the-database",
"title": "Who Owns The Database?"
},
{
"url": "https://news.slashdot.org/story/99/09/15/0958239/writing-apache-modules-with-perl-and-c",
"title": "Writing Apache Modules with Perl and C"
},
{
"url": "https://games.slashdot.org/story/99/09/21/084250/bandai-to-develop-online-games-for-cell-phones",
"title": "Bandai to develop online games for cell phones"
},
{
"url": "https://slashdot.org/story/99/09/21/0838249/google-is-launched",
"title": "Google is launched!"
},
{
"url": "https://yro.slashdot.org/story/99/09/20/2235225/chilean-congress-does-the-cda-thing",
"title": "Chilean Congress does the CDA thing"
},
{
"url": "https://news.slashdot.org/story/99/09/21/0825259/project-grizzly",
"title": "Project Grizzly"
},
{
"url": "https://science.slashdot.org/story/99/09/21/079204/us-and-uk-may-ban-human-gene-patents",
"title": "US and UK May Ban Human Gene Patents"
},
{
"url": "https://science.slashdot.org/story/99/09/21/0020226/first-pictures-from-chandra-x-ray-telescope",
"title": "First Pictures from Chandra X-Ray Telescope"
},
{
"url": "https://games.slashdot.org/story/99/09/21/0011211/re-release-of-illuminati-card-game",
"title": "Re-Release of Illuminati Card Game"
},
{
"url": "https://slashdot.org/story/99/09/20/226238/swiss-bank-goes-online",
"title": "Swiss Bank Goes Online"
},
{
"url": "https://yro.slashdot.org/story/99/09/20/227220/orwellian-clock",
"title": "Orwellian Clock"
},
{
"url": "https://news.slashdot.org/story/99/09/20/2139225/emachines-in-big-trouble",
"title": "emachines in Big Trouble?"
},
{
"url": "https://news.slashdot.org/story/99/09/20/219208/taiwan-earthquake",
"title": "Taiwan Earthquake"
},
{
"url": "https://slashdot.org/story/99/09/20/1845250/microsoft-confirmed-purchase-of-interix",
"title": "Microsoft: Confirmed purchase of Interix"
},
{
"url": "https://tech.slashdot.org/story/99/09/20/1626218/zilog-re-introduces-the-z80",
"title": "Zilog (re-)introduces the Z80"
},
{
"url": "https://slashdot.org/story/99/09/20/1526242/beta-for-iris-performer",
"title": "Beta for IRIS Performer"
},
{
"url": "https://linux.slashdot.org/story/99/09/20/1411244/yet-another-crack-this-box-challenge",
"title": "Yet Another Crack-This-Box Challenge"
},
{
"url": "https://linux.slashdot.org/story/99/09/20/1057255/linux-and-closed-source-databases",
"title": "Linux and Closed Source Databases"
},
{
"url": "https://yro.slashdot.org/story/99/09/19/1228244/three-on-munich",
"title": "Three on Munich"
},
{
"url": "https://slashdot.org/story/99/09/20/1051226/corel-linux-beta-license-violates-gpl",
"title": "Corel Linux Beta License Violates GPL"
},
{
"url": "https://tech.slashdot.org/story/99/09/19/1044203/ask-havoc-pennington",
"title": "Ask Havoc Pennington"
},
{
"url": "https://slashdot.org/story/99/09/20/0744243/patrick-naughton-arrested",
"title": "Patrick Naughton Arrested"
},
{
"url": "https://tech.slashdot.org/story/99/09/19/225212/can-androids-feel-pain",
"title": "Can Androids Feel Pain?"
},
{
"url": "https://slashdot.org/story/99/09/20/0957226/microsoft-admits-to-secretly-paying-for-independent-ads",
"title": "Microsoft Admits to Secretly Paying for \"Independent\" Ads"
},
{
"url": "https://slashdot.org/story/99/09/20/0915244/nsi-e-mail-vunerability",
"title": "NSI E-mail Vunerability"
},
{
"url": "https://hardware.slashdot.org/story/99/09/20/0853222/indepth-on-3com-and-spinning-off-the-palmpilot",
"title": "Indepth On 3Com and Spinning Off The PalmPilot"
},
{
"url": "https://apple.slashdot.org/story/99/09/20/0748224/motorola-g5---2ghz-64bit",
"title": "Motorola G5 - 2Ghz 64bit"
},
{
"url": "https://tech.slashdot.org/story/99/09/20/0814249/ultraviolet-digital-cameras",
"title": "Ultraviolet Digital Cameras"
},
{
"url": "https://yro.slashdot.org/story/99/09/19/1216203/encryption-in-court",
"title": "Encryption in Court"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/2255218/ask-slashdot-is-professional-engineering-certification-necessary",
"title": "Ask Slashdot: Is Professional Engineering Certification Necessary?"
},
{
"url": "https://ask.slashdot.org/story/99/09/19/2150236/longest-open-tcp-connection",
"title": "Longest Open TCP Connection?"
},
{
"url": "https://ask.slashdot.org/story/99/09/19/2212200/open-source-ocr-packages",
"title": "Open Source OCR Packages?"
},
{
"url": "https://yro.slashdot.org/story/99/09/19/1157205/license-to-speak",
"title": "License to Speak?"
},
{
"url": "https://ask.slashdot.org/story/99/09/19/2143252/firewall-help-with-openbsd",
"title": "Firewall Help with OpenBSD"
},
{
"url": "https://slashdot.org/story/99/09/19/209237/pictures-from-linux-demo-day-demonstration",
"title": "Pictures from Linux Demo Day Demonstration"
},
{
"url": "https://linux.slashdot.org/story/99/09/18/2237232/ask-slashdot-distributed-filesystems-for-linux",
"title": "Ask Slashdot: Distributed Filesystems for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/230249/telecommunication-scripting-languages",
"title": "Telecommunication Scripting Languages?"
},
{
"url": "https://slashdot.org/story/99/09/19/1350202/killing-off-linux-its-all-academic",
"title": "Killing Off Linux: It's All Academic"
},
{
"url": "https://ask.slashdot.org/story/99/09/19/1335252/publishing-internet-comics",
"title": "Publishing Internet Comics?"
},
{
"url": "https://slashdot.org/story/99/09/19/1322246/ti-graphlink-linux-software",
"title": "TI Graphlink Linux Software?"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/237207/bar-code-scanners-for-linux",
"title": "Bar-code Scanners for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/2328226/enterprise-network-management-systems",
"title": "Enterprise Network Management Systems?"
},
{
"url": "https://yro.slashdot.org/story/99/09/19/0933242/stealth-software-used-to-spy-on-employees",
"title": "Stealth Software Used To Spy On Employees"
},
{
"url": "https://slashdot.org/story/99/09/19/0733217/fsf-seeks-nominations-for-2nd-free-software-award",
"title": "FSF Seeks Nominations for 2nd Free Software Award"
},
{
"url": "https://linux.slashdot.org/story/99/09/19/0717204/brazilian-linux-users-want-better-documentation",
"title": "Brazilian Linux Users Want Better Documentation"
},
{
"url": "https://science.slashdot.org/story/99/09/19/0724221/plan-for-privately-funded-moon-base",
"title": "Plan for Privately-Funded Moon Base"
},
{
"url": "https://linux.slashdot.org/story/99/09/19/0730203/queen-of-england-gets-red-hat",
"title": "Queen of England Gets Red Hat"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/2251212/support-for-turle-beach-montego-ii-under-linux",
"title": "Support for Turle Beach Montego II Under Linux"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/2230220/avermedia98-and-linux",
"title": "Avermedia98 and Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/2215259/alternatives-to-wuftpd",
"title": "Alternatives to Wu.FTPD?"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/2146201/credit-card-processing",
"title": "Credit Card Processing?"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/229223/studies-useful-for-the-gaming-industry",
"title": "Studies Useful for the Gaming Industry?"
},
{
"url": "https://ask.slashdot.org/story/99/09/18/2141257/ask-slashdot-does-your-employer-have-an-oss-policy",
"title": "Ask Slashdot: Does your Employer have an OSS Policy?"
},
{
"url": "https://tech.slashdot.org/story/99/09/18/1954242/the-home-as-a-node-on-the-internet",
"title": "The Home as a Node on the Internet"
},
{
"url": "https://tech.slashdot.org/story/99/09/18/1326230/man-vs-machine-story-writing-contest",
"title": "Man vs Machine Story Writing Contest"
},
{
"url": "https://slashdot.org/story/99/09/18/1321258/random-domain-name-surfing",
"title": "Random Domain Name Surfing"
},
{
"url": "https://slashdot.org/story/99/09/18/0925225/philippines-puts-curfew-on-internet-cafes-for-minors",
"title": "Philippines Puts Curfew on Internet Cafes for Minors"
},
{
"url": "https://slashdot.org/story/99/09/18/0851208/compaq-may-nix-tru64-for-merced",
"title": "Compaq May Nix Tru64 for Merced"
},
{
"url": "https://news.slashdot.org/story/99/09/18/0852238/building-virtual-universities",
"title": "Building Virtual Universities"
},
{
"url": "https://science.slashdot.org/story/99/09/18/097234/i-am-not-doctor-strangelove",
"title": "I Am Not Doctor Strangelove"
},
{
"url": "https://games.slashdot.org/story/99/09/17/1745235/loki-announces-loki-hack-1999-contest",
"title": "Loki Announces Loki Hack 1999 Contest"
},
{
"url": "https://hardware.slashdot.org/story/99/09/17/1553238/linux-supercomputer-wins-weather-bid",
"title": "Linux Supercomputer Wins Weather Bid"
},
{
"url": "https://science.slashdot.org/story/99/09/17/146258/liquid-ocean-on-europa",
"title": "Liquid Ocean on Europa?"
},
{
"url": "https://slashdot.org/story/99/09/17/1425235/death-knell-for-os2-client",
"title": "Death Knell for OS/2 Client"
},
{
"url": "https://hardware.slashdot.org/story/99/09/16/2354216/palm-vx-coming-soon",
"title": "Palm Vx Coming Soon"
},
{
"url": "https://it.slashdot.org/story/99/09/17/1224216/encryption-exports-small-step-forward-big-step-back",
"title": "Encryption Exports: Small Step Forward, Big Step Back"
},
{
"url": "https://entertainment.slashdot.org/story/99/09/17/1051209/nitrozac-answers",
"title": "Nitrozac Answers"
},
{
"url": "https://linux.slashdot.org/story/99/09/17/1110221/mandrake-61-is-out-for-real-this-time",
"title": "Mandrake 6.1 Is Out (For Real This Time)"
},
{
"url": "https://linux.slashdot.org/story/99/09/17/0844226/linux-turns-8",
"title": "Linux Turns 8"
},
{
"url": "https://science.slashdot.org/story/99/09/11/1333249/the-diamond-age",
"title": "The Diamond Age"
},
{
"url": "https://slashdot.org/story/99/09/17/0815246/tech-industry-and-money",
"title": "Tech Industry And Money"
},
{
"url": "https://slashdot.org/story/99/09/17/0818243/barcode-tatoo-as-permanent-id---arrgh",
"title": "Barcode Tatoo as Permanent ID - Arrgh!"
},
{
"url": "https://games.slashdot.org/story/99/09/17/0810210/play-mp3s-on-playstation",
"title": "Play MP3s on Playstation"
},
{
"url": "https://news.slashdot.org/story/99/09/17/0836245/andovernet-files-for-ipo",
"title": "Andover.Net Files for IPO"
},
{
"url": "https://slashdot.org/story/99/09/17/0743241/france-to-investigate-microsofts-business-practices",
"title": "France To Investigate Microsoft's Business Practices"
},
{
"url": "https://yro.slashdot.org/story/99/09/17/084209/us-relaxes-crypto-regulations",
"title": "US Relaxes Crypto Regulations"
},
{
"url": "https://slashdot.org/story/99/09/16/2245231/microsoft-demands-freedom-to-innovate",
"title": "Microsoft Demands Freedom to Innovate"
},
{
"url": "https://news.slashdot.org/story/99/09/16/2320223/antionline-accuses-attritionorg-responds",
"title": "AntiOnline Accuses, Attrition.org Responds"
},
{
"url": "https://linux.slashdot.org/story/99/09/16/211225/linux-journal-1999-readers-choice",
"title": "Linux Journal 1999 Readers' Choice"
},
{
"url": "https://bsd.slashdot.org/story/99/09/16/2324219/freebsd-33-released",
"title": "FreeBSD 3.3 Released"
},
{
"url": "https://tech.slashdot.org/story/99/09/16/2056238/monterey-boots-on-merced",
"title": "Monterey Boots on Merced"
},
{
"url": "https://hardware.slashdot.org/story/99/09/16/159221/one-person-air-scooters",
"title": "One-person Air Scooters"
},
{
"url": "https://linux.slashdot.org/story/99/09/16/0924234/france-telecom-goes-debian",
"title": "France Telecom goes Debian"
},
{
"url": "https://bsd.slashdot.org/story/99/09/16/1339256/yet-another-bsd-vs-linux-article",
"title": "Yet Another BSD vs Linux article"
},
{
"url": "https://linux.slashdot.org/story/99/09/16/1342211/interview-with-berlin-core-developers",
"title": "Interview with Berlin core developers"
},
{
"url": "https://linux.slashdot.org/story/99/09/16/1222236/follow-up-of-the-linux-trademark-in-germany",
"title": "Follow-Up of the Linux Trademark in Germany"
},
{
"url": "https://hardware.slashdot.org/story/99/09/16/0848217/lab-on-a-chip-for-dna-related-work",
"title": "Lab-On-A-Chip for DNA-Related Work"
},
{
"url": "https://news.slashdot.org/story/99/09/16/0813242/the-art-of-don-e-knuth",
"title": "The Art of Don E. Knuth"
},
{
"url": "https://tech.slashdot.org/story/99/09/16/0850205/cam-brain-artificial-self-teaching-brain",
"title": "CAM-Brain: Artificial Self-Teaching Brain"
},
{
"url": "https://radio.slashdot.org/story/99/09/16/0857258/geeks-in-space-the-octagonal-mystery",
"title": "Geeks in Space: The Octagonal Mystery"
},
{
"url": "https://it.slashdot.org/story/99/09/16/0751219/rumors-of-liberalized-us-crypto-policy",
"title": "Rumors of Liberalized US Crypto Policy"
},
{
"url": "https://linux.slashdot.org/story/99/09/16/0748211/girls-like-linux-too",
"title": "Girls Like Linux Too"
},
{
"url": "https://news.slashdot.org/story/99/09/16/0745238/hdtv-feeds-of-internet-2",
"title": "HDTV Feeds of Internet 2"
},
{
"url": "https://slashdot.org/story/99/09/16/0054246/network-solutions-e-mail-security-alert",
"title": "Network Solutions E-Mail Security Alert"
},
{
"url": "https://slashdot.org/story/99/09/16/0028237/broadband-net-access-in-the-news---and-in-canada",
"title": "Broadband Net Access in the News - and in Canada"
},
{
"url": "https://it.slashdot.org/story/99/09/16/0055245/spooks-in-the-wire",
"title": "Spooks in the Wire"
},
{
"url": "https://news.slashdot.org/story/99/09/15/1939203/bbc-documentary-about-slashdot",
"title": "BBC Documentary About Slashdot"
},
{
"url": "https://tech.slashdot.org/story/99/09/15/1949210/kdevelop-review",
"title": "KDevelop review"
},
{
"url": "https://slashdot.org/story/99/09/15/1855215/sony-claims-of-artists-name-url-for-life",
"title": "Sony claims of Artist's Name URL For Life"
},
{
"url": "https://tech.slashdot.org/story/99/09/15/1630217/implementing-artificial-neural-networks",
"title": "Implementing Artificial Neural Networks"
},
{
"url": "https://slashdot.org/story/99/09/15/1539239/corel-linux-beta-program",
"title": "Corel Linux Beta Program"
},
{
"url": "https://tech.slashdot.org/story/99/09/15/1333252/the-transmeta-conspiracy-part-v",
"title": "The Transmeta Conspiracy Part V"
},
{
"url": "https://it.slashdot.org/story/99/09/15/1325204/physical-layer-ethernet-encryption",
"title": "Physical-layer Ethernet Encryption"
},
{
"url": "https://linux.slashdot.org/story/99/09/15/1241200/hurricane-floyd-shuts-red-hat-down-temporarily",
"title": "Hurricane Floyd Shuts Red Hat Down Temporarily"
},
{
"url": "https://tech.slashdot.org/story/99/09/15/1141230/powerpc-processor-roadmap",
"title": "PowerPC Processor Roadmap"
},
{
"url": "https://yro.slashdot.org/story/99/09/15/0817247/calea-update",
"title": "CALEA update"
},
{
"url": "https://features.slashdot.org/story/99/09/14/1655205/is-the-net-about-to-transform-politics",
"title": "Is The Net About to Transform Politics?"
},
{
"url": "https://news.slashdot.org/story/99/09/08/1337212/enders-shadow",
"title": "Ender's Shadow"
},
{
"url": "https://slashdot.org/story/99/09/15/0943246/visio-to-be-bought-by-microsoft",
"title": "Visio to be bought by Microsoft"
},
{
"url": "https://news.slashdot.org/story/99/09/15/0912244/teen-freed-for-linking-to-mp3s",
"title": "Teen Freed for Linking to MP3s"
},
{
"url": "https://news.slashdot.org/story/99/09/15/0851220/us-uk-issue-y2k-travel-warnings",
"title": "US & UK Issue Y2k Travel Warnings"
},
{
"url": "https://slashdot.org/story/99/09/15/0825244/trade-politicians-like-stocks",
"title": "Trade Politicians Like Stocks"
},
{
"url": "https://slashdot.org/story/99/09/15/034219/3com-releases-gpld-drivers",
"title": "3Com Releases GPL'd Drivers"
},
{
"url": "https://science.slashdot.org/story/99/09/14/1524258/withered-brain-cells-restored-in-monkeys-anyway",
"title": "Withered brain cells restored (in monkeys, anyway)"
},
{
"url": "https://linux.slashdot.org/story/99/09/14/169226/german-law-firm-claims-linux-trademark",
"title": "German Law Firm claims Linux Trademark"
},
{
"url": "https://slashdot.org/story/99/09/14/1551211/brew-your-own-sparc-sparc-ip-core-scsled",
"title": "Brew your own SPARC: SPARC IP Core SCSLed"
},
{
"url": "https://slashdot.org/story/99/09/14/1542235/sgi-to-layoff--3000-employees-sees-2q-profit-updated",
"title": "SGI to layoff ~ 3000 employees, sees 2Q profit (UPDATED)"
},
{
"url": "https://slashdot.org/story/99/09/14/1442223/amiga-executive-update",
"title": "Amiga Executive Update"
},
{
"url": "https://science.slashdot.org/story/99/09/14/1026249/underwater-telescope-to-study-neutrinos",
"title": "Underwater telescope to study neutrinos"
},
{
"url": "https://slashdot.org/story/99/09/14/1112201/moderation-ideas",
"title": "Moderation Ideas"
},
{
"url": "https://hardware.slashdot.org/story/99/09/14/1044255/lego-robots-in-volleyball-tournament",
"title": "Lego robots in volleyball tournament"
},
{
"url": "https://yro.slashdot.org/story/99/09/14/1134201/economist-lester-thurow-calls-for-internet-regulat",
"title": "Economist Lester Thurow Calls for Internet Regulat"
},
{
"url": "https://news.slashdot.org/story/99/09/14/1040235/ibm-thinkpad-600e-to-be-certified-compatible",
"title": "IBM Thinkpad 600E to be certified \"compatible\""
},
{
"url": "https://news.slashdot.org/story/99/09/14/0938234/whaddya-want-from-a-conference",
"title": "Whaddya want from a conference?"
},
{
"url": "https://news.slashdot.org/story/99/09/08/1459221/mastering-algorithms-with-c",
"title": "Mastering Algorithms with C"
},
{
"url": "https://news.slashdot.org/story/99/09/14/0819225/geek-cam-watching-hurricane-floyd-in-south-florida",
"title": "Geek CAM watching Hurricane Floyd in South Florida"
},
{
"url": "https://yro.slashdot.org/story/99/09/13/2238221/proposal-pics-defeater-w-encryption",
"title": "Proposal: PICS Defeater w/ Encryption"
},
{
"url": "https://linux.slashdot.org/story/99/09/14/0814225/mandrake-61-not-out-update",
"title": "Mandrake 6.1 NOT Out (Update)"
},
{
"url": "https://yro.slashdot.org/story/99/09/13/2315256/domaintrademark-infringement-getting-out-of-hand",
"title": "Domain/trademark infringement getting out of hand?"
},
{
"url": "https://tech.slashdot.org/story/99/09/14/0844243/new-x-servers-ati-rage-sis",
"title": "New X servers (ATI Rage & SiS)"
},
{
"url": "https://yro.slashdot.org/story/99/09/14/1115209/conference-scrambling-for-safety",
"title": "Conference: Scrambling for Safety"
},
{
"url": "https://science.slashdot.org/story/99/09/14/086218/first-small-planet-found-outside-our-solar-system",
"title": "First small planet found outside our solar system"
},
{
"url": "https://hardware.slashdot.org/story/99/09/14/0757201/more-details-on-the-visorhandspring-update",
"title": "More details on the Visor/Handspring (Update)"
},
{
"url": "https://slashdot.org/story/99/09/13/1950207/doubleclicks-banner-ad-patent",
"title": "Doubleclick's Banner Ad Patent"
},
{
"url": "https://tech.slashdot.org/story/99/09/13/1928243/kde-112-is-out",
"title": "KDE 1.1.2 is out"
},
{
"url": "https://linux.slashdot.org/story/99/09/13/1559245/talking-with-matt-welsh",
"title": "Talking with Matt Welsh"
},
{
"url": "https://hardware.slashdot.org/story/99/09/13/170257/lego-mindstorms-controlled-by-pilot-via-jini",
"title": "Lego Mindstorms Controlled by Pilot Via JINI"
},
{
"url": "https://linux.slashdot.org/story/99/09/13/1240212/linuxppc-unleashes-linuxppc-1999-q3",
"title": "LinuxPPC unleashes LinuxPPC 1999 Q3"
},
{
"url": "https://slashdot.org/story/99/09/13/1526243/on-ebay-addiction",
"title": "On eBay Addiction"
},
{
"url": "https://linux.slashdot.org/story/99/09/13/1019228/linux-lite",
"title": "Linux Lite?"
},
{
"url": "https://slashdot.org/story/99/09/13/1223215/why-geek-geniuses-may-lack-social-graces",
"title": "Why geek geniuses may lack social graces"
},
{
"url": "https://news.slashdot.org/story/99/09/13/1210220/kermit-the-frog-to-promote-v-chip",
"title": "Kermit the Frog to promote V-Chip"
},
{
"url": "https://hardware.slashdot.org/story/99/09/13/1118246/nokia-bring-out-linux-cellphonetvbrowser",
"title": "Nokia bring out Linux Cellphone/TV/Browser"
},
{
"url": "https://entertainment.slashdot.org/story/99/09/10/1730222/interview-ask-nitrozac",
"title": "Interview: Ask Nitrozac"
},
{
"url": "https://linux.slashdot.org/story/99/09/13/0948220/first-official-sap-r3-benchmarks-on-linux",
"title": "First official SAP R/3 benchmarks on Linux"
},
{
"url": "https://science.slashdot.org/story/99/09/13/0920217/cloning-another-extinct-species",
"title": "Cloning Another Extinct Species"
},
{
"url": "https://slashdot.org/story/99/09/13/0824233/ibm-takes-aim-at-sun",
"title": "IBM takes aim at Sun"
},
{
"url": "https://hardware.slashdot.org/story/99/09/13/0845234/3com-plans-to-spin-off-palmpilot-division",
"title": "3Com Plans to Spin Off PalmPilot Division"
},
{
"url": "https://games.slashdot.org/story/99/09/13/0812255/playstation-2-pix-and-rollout",
"title": "Playstation 2 Pix and Rollout"
},
{
"url": "https://yro.slashdot.org/story/99/09/11/1346226/munich-the-censors-convention",
"title": "Munich, The Censors' Convention"
},
{
"url": "https://ask.slashdot.org/story/99/09/12/2014217/the-truth-about-flourescent-lights",
"title": "The Truth About Flourescent Lights?"
},
{
"url": "https://ask.slashdot.org/story/99/09/12/209204/legally-distributing-openssl-internationally",
"title": "Legally Distributing OpenSSL Internationally?"
},
{
"url": "https://ask.slashdot.org/story/99/09/12/1951231/can-you-transfer-internet-domains-between-registrars",
"title": "Can you Transfer Internet Domains Between Registrars?"
},
{
"url": "https://hardware.slashdot.org/story/99/09/12/1934256/ask-slashdot-art-linux-and-the-slashdot-effect",
"title": "Ask Slashdot: Art, Linux and the Slashdot Effect?"
},
{
"url": "https://ask.slashdot.org/story/99/09/12/1851215/prettier-fonts-in-x",
"title": "Prettier Fonts in X?"
},
{
"url": "https://news.slashdot.org/story/99/09/12/1627204/crypto-show-on-the-history-channel-tonight-912",
"title": "Crypto Show on the History Channel Tonight (9/12)"
},
{
"url": "https://games.slashdot.org/story/99/09/12/1416203/hugo-engine-and-guilty-bastards-for-linux",
"title": "Hugo Engine and Guilty Bastards for Linux"
},
{
"url": "https://science.slashdot.org/story/99/09/12/0752254/can-humans-create-life",
"title": "Can humans create life?"
},
{
"url": "https://ask.slashdot.org/story/99/09/11/2324234/isps-and-spam-enforcement",
"title": "ISPs and Spam Enforcement..."
},
{
"url": "https://ask.slashdot.org/story/99/09/11/2318228/mp3-cd-players",
"title": "MP3 CD Players?"
},
{
"url": "https://ask.slashdot.org/story/99/09/11/2313246/distributed-password-files",
"title": "Distributed Password Files?"
},
{
"url": "https://ask.slashdot.org/story/99/09/11/239238/ask-slashdot-e-commerce-taxes-private-transactions",
"title": "Ask Slashdot: e-Commerce, Taxes & Private Transactions."
},
{
"url": "https://ask.slashdot.org/story/99/09/11/231258/practical-internet-telephony-available",
"title": "Practical Internet Telephony Available?"
},
{
"url": "https://slashdot.org/story/99/09/11/1734243/tmbg",
"title": "TMBG"
},
{
"url": "https://games.slashdot.org/story/99/09/11/1437229/telnet-into-dreamcast",
"title": "Telnet into Dreamcast?"
},
{
"url": "https://bsd.slashdot.org/story/99/09/11/1418247/the-bsds-in-the-wsj-help-build-the-web",
"title": "The BSDs in the WSJ: \"Help Build the Web\""
},
{
"url": "https://yro.slashdot.org/story/99/09/11/1447250/teen-sued-for-linking-to-mp3s",
"title": "Teen Sued for /Linking/ to MP3s"
},
{
"url": "https://yro.slashdot.org/story/99/09/11/1342234/close-out-to-microsoft-anti-trust-case",
"title": "Close out to Microsoft Anti-Trust Case"
},
{
"url": "https://slashdot.org/story/99/09/11/1013245/how-free-is-bind-82",
"title": "How Free is BIND 8.2?"
},
{
"url": "https://linux.slashdot.org/story/99/09/11/107226/linux-24-feature-freeze",
"title": "Linux 2.4 Feature Freeze"
},
{
"url": "https://slashdot.org/story/99/09/11/1034241/us-russia-joint-force-to-monitor-missiles-y2k-problems",
"title": "US-Russia Joint Force to Monitor Missiles' Y2K Problems"
},
{
"url": "https://slashdot.org/story/99/09/11/0951225/white-house-checks-out-open-source",
"title": "White House Checks Out Open Source"
},
{
"url": "https://slashdot.org/story/99/09/10/1621242/steaming-heap-of-quickies",
"title": "Steaming Heap of Quickies"
},
{
"url": "https://slashdot.org/story/99/09/10/1546230/compaq-announces-thin-client-running-linux",
"title": "Compaq Announces Thin Client Running Linux"
},
{
"url": "https://news.slashdot.org/story/99/09/10/157243/cybercommunism-and-the-gift-culture",
"title": "Cybercommunism and the Gift Culture"
},
{
"url": "https://slashdot.org/story/99/09/10/1350223/andreesen-no-longer-aol-cto",
"title": "Andreesen No Longer AOL CTO"
},
{
"url": "https://slashdot.org/story/99/09/10/133207/amiga-dropping-plans-for-new-machine",
"title": "Amiga dropping plans for new machine"
},
{
"url": "https://slashdot.org/story/99/09/10/1116224/phrack-55-released",
"title": "Phrack 55 released"
},
{
"url": "https://news.slashdot.org/story/99/09/10/1234207/interview-tim-oreilly-answers",
"title": "Interview: Tim O'Reilly Answers"
},
{
"url": "https://yro.slashdot.org/story/99/09/08/1353218/pics-and-the-global-rating-system",
"title": "PICS and the Global Rating System"
},
{
"url": "https://yro.slashdot.org/story/99/09/09/1046218/slashdot-introduces-yro",
"title": "Slashdot Introduces YRO"
},
{
"url": "https://linux.slashdot.org/story/99/09/10/1133205/gm-ponders-linux-for-7500-dealers",
"title": "GM ponders Linux for 7,500 Dealers"
},
{
"url": "https://news.slashdot.org/story/99/09/10/1111236/space-station-funding-safe---for-now",
"title": "Space Station Funding Safe - For Now."
},
{
"url": "https://news.slashdot.org/story/99/09/10/1034202/army-dumps-nt-as-web-server-moves-to-mac",
"title": "Army Dumps NT as Web Server, Moves to Mac"
},
{
"url": "https://news.slashdot.org/story/99/09/10/0833237/an-interview-with-donald-knuth",
"title": "An interview with Donald Knuth"
},
{
"url": "https://tech.slashdot.org/story/99/09/10/0945205/digital-power-line-gets-buried",
"title": "Digital Power Line Gets Buried"
},
{
"url": "https://slashdot.org/story/99/09/10/0857220/amex-to-deploy-internet-card-with-embedded-chip",
"title": "Amex to deploy Internet card with embedded chip"
},
{
"url": "https://tech.slashdot.org/story/99/09/10/0826258/herf-gun-make-it-in-your-basement",
"title": "HERF Gun: Make it in your basement"
},
{
"url": "https://slashdot.org/story/99/09/09/1712221/victory-for-small-business-in-domain-disputes",
"title": "Victory for small business in domain disputes"
},
{
"url": "https://slashdot.org/story/99/09/09/1717216/compaq-announces-beta-test-for-linux-alpha-c-compiler",
"title": "Compaq announces Beta test for Linux Alpha C compiler"
},
{
"url": "https://slashdot.org/story/99/09/09/1554211/cnn-on-story-on-gnupg-10",
"title": "CNN On Story on GnuPG 1.0"
},
{
"url": "https://tech.slashdot.org/story/99/09/09/159255/nasa-show-off-new-star-wars-type-pda",
"title": "NASA show off new 'Star Wars' type PDA"
},
{
"url": "https://linux.slashdot.org/story/99/09/09/1054237/code-fusion-for-linux-reviewed",
"title": "Code Fusion for Linux: Reviewed"
},
{
"url": "https://slashdot.org/story/99/09/09/138209/microsoft-nsa-key-follow-up",
"title": "Microsoft NSA key Follow-Up"
},
{
"url": "https://tech.slashdot.org/story/99/09/09/0943234/very-tiny-motor-nano-level",
"title": "Very Tiny Motor: Nano-level"
},
{
"url": "https://news.slashdot.org/story/99/09/09/0943204/pine-introduces-new-portable-mp3-device",
"title": "Pine Introduces New Portable MP3 device"
},
{
"url": "https://it.slashdot.org/story/99/09/09/098201/9999-news-nein",
"title": "9/9/99: News? Nein!"
},
{
"url": "https://games.slashdot.org/story/99/09/09/0852201/playstation-2-delayed-again",
"title": "Playstation 2 delayed again"
},
{
"url": "https://slashdot.org/story/99/09/09/0843232/cobalt-networks-files-for-ipo",
"title": "Cobalt Networks files for IPO"
},
{
"url": "https://games.slashdot.org/story/99/09/08/1753245/loki-software-to-open-source-sdl-motion-jpeg-library",
"title": "Loki Software to Open Source SDL Motion JPEG Library"
},
{
"url": "https://features.slashdot.org/story/99/09/06/1715251/yankeescom-hits-a-home-run",
"title": "Yankees.Com Hits A Home Run"
},
{
"url": "https://tech.slashdot.org/story/99/09/08/167247/gnustep-060",
"title": "GNUstep 0.6.0"
},
{
"url": "https://ask.slashdot.org/story/99/09/09/0142231/whats-causing-the-memory-price-hike",
"title": "What's Causing the Memory Price Hike?"
},
{
"url": "https://ask.slashdot.org/story/99/09/09/012241/whos-scanning-my-box",
"title": "Who's Scanning My Box?"
},
{
"url": "https://tech.slashdot.org/story/99/09/09/010226/slirp-project-needs-maintainer",
"title": "SLiRP Project Needs Maintainer"
},
{
"url": "https://ask.slashdot.org/story/99/09/09/0052203/customized-linux-installations",
"title": "Customized Linux Installations"
},
{
"url": "https://ask.slashdot.org/story/99/09/09/0043240/internet-downtime-reports",
"title": "Internet Downtime Reports?"
},
{
"url": "https://ask.slashdot.org/story/99/09/09/0022211/ask-slashdot-employees-or-contractors",
"title": "Ask Slashdot: Employees or Contractors?"
},
{
"url": "https://developers.slashdot.org/story/99/09/08/1512211/interview-with-james-gosling",
"title": "Interview with James Gosling"
},
{
"url": "https://slashdot.org/story/99/09/08/1512229/computers-make-good-ad-execs",
"title": "Computers Make Good Ad Execs"
},
{
"url": "https://slashdot.org/story/99/09/08/1558230/web-19-clicks-wide",
"title": "Web: 19 Clicks Wide"
},
{
"url": "https://news.slashdot.org/story/99/09/08/1153244/assorted-slashdot-updates",
"title": "Assorted Slashdot Updates"
},
{
"url": "https://radio.slashdot.org/story/99/09/08/1749204/geeks-in-space-7-cardboard-box",
"title": "Geeks in Space 7: Cardboard Box"
},
{
"url": "https://slashdot.org/story/99/09/08/164219/interview-with-gimp-maintainer",
"title": "Interview with Gimp Maintainer"
},
{
"url": "https://science.slashdot.org/story/99/09/08/145215/human-brain-seems-to-procceses-image-data-serially",
"title": "Human Brain seems to procceses image data serially"
},
{
"url": "https://slashdot.org/story/99/09/08/1522218/sony-investing-in-tivo",
"title": "Sony Investing in TiVo"
},
{
"url": "https://linux.slashdot.org/story/99/09/08/1143242/slashdot-talks-with-red-hat",
"title": "Slashdot talks with Red Hat"
},
{
"url": "https://slashdot.org/story/99/09/08/1110214/sgi-and-mesa-on-linuxopengl-base",
"title": "SGI and Mesa on Linux/OpenGL Base"
},
{
"url": "https://hardware.slashdot.org/story/99/09/08/1129225/visor-from-the-creators-of-the-palm",
"title": "\"Visor\" from the Creators of the Palm"
},
{
"url": "https://news.slashdot.org/story/99/09/08/092250/obi-wan-speaks-out-against-franchise",
"title": "Obi-Wan speaks out against franchise"
},
{
"url": "https://tech.slashdot.org/story/99/09/08/104241/mozilla-picks-up-third-party-irc-and-rt-messaging",
"title": "Mozilla Picks Up Third Party IRC and RT Messaging"
},
{
"url": "https://news.slashdot.org/story/99/09/04/2349204/eniac-the-forgotten-story",
"title": "ENIAC, the forgotten story"
},
{
"url": "https://science.slashdot.org/story/99/09/08/0812228/smart-dust",
"title": "Smart Dust"
},
{
"url": "https://slashdot.org/story/99/09/08/080227/sun-introduces-the-sun-ray",
"title": "Sun introduces the \"Sun Ray\""
},
{
"url": "https://slashdot.org/story/99/09/08/0754207/smile-for-the-us-secret-service",
"title": "Smile for the US Secret Service"
},
{
"url": "https://it.slashdot.org/story/99/09/07/1932258/gnu-privacy-guard-gpg-pgp-alternative",
"title": "GNU Privacy Guard (GPG) PGP Alternative"
},
{
"url": "https://linux.slashdot.org/story/99/09/07/1928216/suse-and-siemens-release-linux-memory-extension",
"title": "SuSE and Siemens Release Linux Memory Extension"
},
{
"url": "https://apple.slashdot.org/story/99/09/07/1540242/apple-disabling-3rd-party-cpu-upgrades-updated",
"title": "Apple Disabling 3rd Party CPU Upgrades? (Updated)"
},
{
"url": "https://linux.slashdot.org/story/99/09/07/1649213/marc-ewing-speaks",
"title": "Marc Ewing Speaks"
},
{
"url": "https://science.slashdot.org/story/99/09/07/166208/dolly-the-sheep-not-totally-identical-clone",
"title": "Dolly the Sheep not totally identical clone"
},
{
"url": "https://slashdot.org/story/99/09/07/155233/slashdots-meta-moderation",
"title": "Slashdot's Meta Moderation"
},
{
"url": "https://games.slashdot.org/story/99/09/07/1312247/nintendo-releases-32-bit-handheld-device",
"title": "Nintendo Releases 32-bit Handheld Device"
},
{
"url": "https://linux.slashdot.org/story/99/09/07/1353232/on-linux-laptops",
"title": "On Linux Laptops"
},
{
"url": "https://hardware.slashdot.org/story/99/09/07/1145210/new-psion-palmtop",
"title": "New Psion Palmtop"
},
{
"url": "https://apple.slashdot.org/story/99/09/07/1015212/imac-ii-to-have-lcdfirewiredvdairportnew-color",
"title": "iMac II to have LCD/Firewire/DVD/AirPort/new color"
},
{
"url": "https://slashdot.org/story/99/09/07/1057253/caldera-openlinux-23-released",
"title": "Caldera OpenLinux 2.3 released"
},
{
"url": "https://linux.slashdot.org/story/99/09/07/0951244/cool-linux-based-web-device",
"title": "Cool Linux-based web device"
},
{
"url": "https://news.slashdot.org/story/99/09/06/2113219/review-gtkgnome-application-development",
"title": "Review: GTK+/Gnome Application Development"
},
{
"url": "https://apple.slashdot.org/story/99/09/03/152236/the-g4-and-apples-second-coming",
"title": "The G4 and Apple's Second Coming"
},
{
"url": "https://developers.slashdot.org/story/99/09/07/0829235/will-linux-have-the-same-fate-as-java",
"title": "Will Linux have the same fate as Java?"
},
{
"url": "https://news.slashdot.org/story/99/09/07/0825226/spielberg-to-direct-kubricks-ai",
"title": "Spielberg to direct Kubrick's AI"
},
{
"url": "https://slashdot.org/story/99/09/07/0817219/socket-athlons-by-early-next-year",
"title": "Socket Athlons by early next year?"
},
{
"url": "https://linux.slashdot.org/story/99/09/06/2018257/new-red-hat-beta-available",
"title": "New Red Hat Beta Available"
},
{
"url": "https://slashdot.org/story/99/09/06/1946256/more-moderation-madness",
"title": "More Moderation Madness"
},
{
"url": "https://news.slashdot.org/story/99/09/06/1811229/suns-staroffice-release-not-open-source",
"title": "Sun's StarOffice Release: Not Open Source"
},
{
"url": "https://slashdot.org/story/99/09/06/1640227/i-hate-when-that-happens",
"title": "I Hate When That Happens"
},
{
"url": "https://hardware.slashdot.org/story/99/09/06/161236/cool-cases-the-rust-box",
"title": "Cool Cases: the Rust-Box"
},
{
"url": "https://news.slashdot.org/story/99/09/06/151215/isi-mitsubishi-to-develop-new-operating-system",
"title": "ISI, Mitsubishi to Develop New Operating System"
},
{
"url": "https://hardware.slashdot.org/story/99/09/06/1458222/16-ghz-alpha-with-transputer-features-coming",
"title": "1.6 GHz Alpha With Transputer Features Coming?"
},
{
"url": "https://tech.slashdot.org/story/99/09/06/1453205/new-patented-system-brings-the-dead-back-to-life",
"title": "New Patented System Brings the Dead Back to \"Life\""
},
{
"url": "https://news.slashdot.org/story/99/09/05/1324246/interview-ask-tim-oreilly",
"title": "Interview: Ask Tim O'Reilly"
},
{
"url": "https://slashdot.org/story/99/09/04/1618204/computer-programming-for-everyone",
"title": "Computer Programming for Everyone"
},
{
"url": "https://slashdot.org/story/99/09/06/1118210/microsoftsiemens-in-joint-linux-venture",
"title": "Microsoft/Siemens in Joint Linux Venture?"
},
{
"url": "https://news.slashdot.org/story/99/09/06/0936246/audiophiles-test-mp3-epac-and-mwma",
"title": "Audiophiles Test MP3, EPAC and MWMA"
},
{
"url": "https://news.slashdot.org/story/99/09/06/0929227/details-about-new-trek-series",
"title": "Details About New Trek Series?"
},
{
"url": "https://games.slashdot.org/story/99/09/06/038236/microsoft-game-console",
"title": "Microsoft Game Console"
},
{
"url": "https://ask.slashdot.org/story/99/09/05/1826204/automagical-kernel-update-utils",
"title": "Automagical Kernel Update Utils?"
},
{
"url": "https://ask.slashdot.org/story/99/09/05/180235/direct-serial-connections-between-linux-and-nt",
"title": "Direct Serial Connections between Linux and NT?"
},
{
"url": "https://ask.slashdot.org/story/99/09/05/1755210/linux-on-a-sparcserver-470",
"title": "Linux on a SPARCserver 470?"
},
{
"url": "https://ask.slashdot.org/story/99/09/05/1751255/is-there-an-encryption-distribution-faqhowto",
"title": "Is there an Encryption Distribution FAQ/HOWTO?"
},
{
"url": "https://ask.slashdot.org/story/99/09/05/1732249/ask-slashdot-internet-voting",
"title": "Ask Slashdot: Internet Voting?"
},
{
"url": "https://games.slashdot.org/story/99/09/05/145238/warcraft-3-announced",
"title": "Warcraft 3 Announced"
},
{
"url": "https://tech.slashdot.org/story/99/09/05/1425217/implications-of-commercial-1m-res-satellite",
"title": "Implications of Commercial 1m Res Satellite"
},
{
"url": "https://slashdot.org/story/99/09/05/1419247/one-of-those-days",
"title": "One of those days"
},
{
"url": "https://slashdot.org/story/99/09/05/1047206/be-on-the-g4",
"title": "Be on the G4"
},
{
"url": "https://slashdot.org/story/99/09/05/1325210/is-firewire-dying",
"title": "Is firewire dying?"
},
{
"url": "https://news.slashdot.org/story/99/09/05/1251212/on-the-subject-of-trolls",
"title": "On the Subject of Trolls"
},
{
"url": "https://slashdot.org/story/99/09/05/1026255/citizenship-not-censorship",
"title": "'Citizenship' not Censorship"
},
{
"url": "https://slashdot.org/story/99/09/05/1030228/ms-response-to-nsa-key-backdoor-in-windows",
"title": "MS response to NSA key backdoor in Windows"
},
{
"url": "https://linux.slashdot.org/story/99/09/05/1021259/alan-cox-answers-even-more-questions",
"title": "Alan Cox answers even more questions"
},
{
"url": "https://tech.slashdot.org/story/99/09/04/1456200/w-richard-stevens-passes-on",
"title": "W. Richard Stevens Passes On"
},
{
"url": "https://ask.slashdot.org/story/99/09/04/1652205/alternatives-to-tik",
"title": "Alternatives to TiK?"
},
{
"url": "https://ask.slashdot.org/story/99/09/04/1649202/importing-audio-from-midi-under-linux",
"title": "Importing Audio from MIDI Under Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/09/04/1646227/windows-host-linux-client",
"title": "Windows Host, Linux Client?"
},
{
"url": "https://ask.slashdot.org/story/99/09/04/1611210/brain-teaser-who-owns-the-fish",
"title": "Brain Teaser: Who Owns the Fish?"
},
{
"url": "https://ask.slashdot.org/story/99/09/04/1519202/ask-slashdot-a-gpl-like-copyright-tagline-for-text",
"title": "Ask Slashdot: A GPL-like Copyright Tagline for Text?"
},
{
"url": "https://features.slashdot.org/story/99/09/04/1445207/notes-from-the-30th-internet-anniversary-at-ucla",
"title": "Notes From the 30th Internet Anniversary at UCLA"
},
{
"url": "https://tech.slashdot.org/story/99/09/04/1329240/sco-talks-about-linux",
"title": "SCO Talks About Linux"
},
{
"url": "https://science.slashdot.org/story/99/09/04/1210207/solar-eclipse-as-seen-from-mir",
"title": "Solar Eclipse, As Seen From Mir"
},
{
"url": "https://slashdot.org/story/99/09/04/1157209/lizard-installer-released-under-qpl",
"title": "Lizard Installer Released Under QPL"
},
{
"url": "https://news.slashdot.org/story/99/09/04/1148224/woman-tries-to-sue-south-park",
"title": "Woman Tries to Sue South Park"
},
{
"url": "https://slashdot.org/story/99/09/04/129214/prodigy-classic-were-going-to-miss-you",
"title": "Prodigy \"Classic,\" We're Going to Miss You"
},
{
"url": "https://hardware.slashdot.org/story/99/09/04/1144208/here-come-the-powerpc-linux-systems",
"title": "Here come the PowerPC Linux systems"
},
{
"url": "https://slashdot.org/story/99/09/04/1141201/gnu-project-hiring",
"title": "GNU Project Hiring"
},
{
"url": "https://slashdot.org/story/99/09/04/1121203/barca-lounger-for-geeks",
"title": "Barca Lounger for Geeks"
},
{
"url": "https://apple.slashdot.org/story/99/09/04/0130235/apple-prevents-g3-owners-from-upgrading-to-g4",
"title": "Apple Prevents G3 Owners From Upgrading to G4"
},
{
"url": "https://ask.slashdot.org/story/99/09/03/1442231/ask-slashdot-business-software-for-linux",
"title": "Ask Slashdot: Business Software for Linux?"
},
{
"url": "https://news.slashdot.org/story/99/09/03/148223/pure-science-becoming-less-popular-than-cs",
"title": "Pure Science Becoming Less Popular Than CS"
},
{
"url": "https://tech.slashdot.org/story/99/09/03/145258/the-fridge-of-the-future",
"title": "The Fridge of the Future"
},
{
"url": "https://games.slashdot.org/story/99/09/03/1036242/railroad-tycoon-ii-gold-edition-for-linux",
"title": "Railroad Tycoon II: Gold Edition for Linux"
},
{
"url": "https://news.slashdot.org/story/99/09/03/1247210/welcome-to-the-new-server",
"title": "Welcome to the New Server"
},
{
"url": "https://linux.slashdot.org/story/99/09/03/1015250/interview-alan-cox-answers",
"title": "Interview: Alan Cox Answers"
},
{
"url": "https://science.slashdot.org/story/99/09/03/0845221/hp-breaks-the-2-nanometer-barrier",
"title": "HP breaks the 2 nanometer barrier"
},
{
"url": "https://tech.slashdot.org/story/99/09/03/1051234/enlightenment-now-kde-compliant",
"title": "Enlightenment now KDE compliant"
},
{
"url": "https://slashdot.org/story/99/09/03/1042247/new-uspto-site-for-independent-inventors",
"title": "New USPTO Site for Independent Inventors"
},
{
"url": "https://tech.slashdot.org/story/99/09/02/2038236/review-code-of-ethics-for-programmers",
"title": "Review: Code of Ethics for Programmers?"
},
{
"url": "https://slashdot.org/story/99/09/03/0940241/nsa-backdoor-creates-security-hole-in-windows",
"title": "NSA backdoor creates security hole in Windows"
},
{
"url": "https://news.slashdot.org/story/99/09/03/0916212/cringely-on-staroffice-w2k-alpha-more",
"title": "Cringely on StarOffice, W2k, Alpha & more"
},
{
"url": "https://apple.slashdot.org/story/99/09/03/0826252/new-flat-screens-from-apple",
"title": "New Flat Screens From Apple"
},
{
"url": "https://slashdot.org/story/99/09/02/2212209/the-significance-of-the-hotmail-crack",
"title": "The Significance of the Hotmail Crack"
},
{
"url": "https://ask.slashdot.org/story/99/09/02/2159208/ask-slashdot-using-ssh-on-non-us-sites-for-crypto-development",
"title": "Ask Slashdot: Using SSH on non-US Sites for Crypto Development?"
},
{
"url": "https://science.slashdot.org/story/99/09/02/1442236/gaussian-distribution-being-questioned",
"title": "Gaussian Distribution being questioned"
},
{
"url": "https://bsd.slashdot.org/story/99/09/02/189210/berkeley-removes-advertising-clause",
"title": "Berkeley removes Advertising Clause"
},
{
"url": "https://linux.slashdot.org/story/99/09/02/179236/red-hat-trademark-issue-explained",
"title": "Red Hat Trademark Issue Explained"
},
{
"url": "https://slashdot.org/story/99/09/02/1619251/new-house-of-reps-site-on-science-math-tech-education",
"title": "New House of Reps Site on Science, Math, & Tech Education"
},
{
"url": "https://science.slashdot.org/story/99/09/02/1233216/genetic-engineering-boosts-mouse-intelligence",
"title": "Genetic engineering boosts mouse intelligence"
},
{
"url": "https://science.slashdot.org/story/99/08/31/1538243/review-an-introduction-to-genetic-algorithms",
"title": "Review: An Introduction to Genetic Algorithms"
},
{
"url": "https://linux.slashdot.org/story/99/09/02/1426205/dvd-for-linux",
"title": "DVD for Linux"
},
{
"url": "https://features.slashdot.org/story/99/09/02/1416237/feature-myth-of-the-fall-of-sgi-part-ii---the-mystery-of-irix",
"title": "Feature: Myth of the Fall of SGI, Part II - the Mystery of Irix"
},
{
"url": "https://slashdot.org/story/99/09/02/1120214/mapping-the-internet",
"title": "Mapping the Internet"
},
{
"url": "https://slashdot.org/story/99/09/02/1115220/30th-birthday-of-the-internet",
"title": "30th Birthday of the Internet"
},
{
"url": "https://linux.slashdot.org/story/99/09/02/0723258/open-letter-to-turkish-lug",
"title": "Open Letter to Turkish LUG"
},
{
"url": "https://slashdot.org/story/99/09/01/1020213/australian-censorship-client-side-filters",
"title": "Australian Censorship-client side filters"
},
{
"url": "https://tech.slashdot.org/story/99/09/02/0129256/the-ottoman-pc",
"title": "The Ottoman PC"
},
{
"url": "https://linux.slashdot.org/story/99/09/01/0943219/red-hat-tightening-trademarks",
"title": "Red Hat Tightening Trademarks?"
},
{
"url": "https://ask.slashdot.org/story/99/09/01/2142256/simple-terminals-w-small-footprints",
"title": "Simple Terminals w/ Small Footprints?"
},
{
"url": "https://science.slashdot.org/story/99/09/01/1429226/scientists-map-schematic-of-brains-fibers",
"title": "Scientists map schematic of brain's fibers"
},
{
"url": "https://linux.slashdot.org/story/99/09/01/1827215/more-mission-critical-linux",
"title": "More Mission-Critical Linux"
},
{
"url": "https://slashdot.org/story/99/09/01/1856251/amigas-president-unexpectedly-resigns",
"title": "Amiga's president unexpectedly resigns"
},
{
"url": "https://tech.slashdot.org/story/99/09/01/0716233/xfree86-335-released",
"title": "XFree86 3.3.5 released"
},
{
"url": "https://games.slashdot.org/story/99/09/01/1347204/gt-interactive-sued-for-piracy",
"title": "GT Interactive Sued for piracy"
},
{
"url": "https://ask.slashdot.org/story/99/09/01/1548259/reliability-of-cd-rw-discs",
"title": "Reliability of CD-RW Discs"
},
{
"url": "https://hardware.slashdot.org/story/99/09/01/1430242/projectudi-spec-goes-10",
"title": "ProjectUDI spec goes 1.0"
},
{
"url": "https://yro.slashdot.org/story/99/09/01/1547226/chad-davis-may-be-the-next-kevin-mitnick",
"title": "Chad Davis May Be the Next Kevin Mitnick"
},
{
"url": "https://bsd.slashdot.org/story/99/09/01/141247/clearing-up-freebsd-confusion",
"title": "Clearing up FreeBSD confusion"
},
{
"url": "https://slashdot.org/story/99/09/01/1333220/linuxcare-and-sun-partner-on-staroffice-for-linux",
"title": "Linuxcare and Sun partner on StarOffice for Linux"
},
{
"url": "https://bsd.slashdot.org/story/99/09/01/1221206/openbsd-security-and-theo-de-raadt",
"title": "OpenBSD, Security, and Theo de Raadt"
},
{
"url": "https://slashdot.org/story/99/09/01/1225221/amiga-inc-files-multiprocessing-patent",
"title": "Amiga Inc. Files Multiprocessing Patent"
},
{
"url": "https://slashdot.org/story/99/09/01/0710257/intel-shipping-merced-engineering-samples",
"title": "Intel Shipping Merced Engineering Samples"
},
{
"url": "https://hardware.slashdot.org/story/99/09/01/0039217/worlds-smallest-pii-motherboard",
"title": "World's smallest PII motherboard?"
},
{
"url": "https://ask.slashdot.org/story/99/09/01/007203/ask-slashdot-privacy-in-the-workplace",
"title": "Ask Slashdot: Privacy in the Workplace"
},
{
"url": "https://news.slashdot.org/story/99/08/31/228216/duchovny-to-quit-x-files",
"title": "Duchovny to Quit X-Files"
},
{
"url": "https://tech.slashdot.org/story/99/08/31/222238/new-x-free86-snapshot-available",
"title": "New X-Free86 Snapshot Available"
},
{
"url": "https://news.slashdot.org/story/99/08/31/1736212/fatbrains-ematter-self-publishing",
"title": "Fatbrain's eMatter Self Publishing"
},
{
"url": "https://apple.slashdot.org/story/99/08/31/1719253/apple-announces-the-g4",
"title": "Apple announces the G4"
},
{
"url": "https://news.slashdot.org/story/99/08/31/1549256/bowie-distributes-new-album-using-sdmi-format",
"title": "Bowie Distributes New Album Using SDMI Format"
},
{
"url": "https://it.slashdot.org/story/99/08/31/0223240/feature-wh-panel-calls-for-crypto-export-reform",
"title": "Feature: WH Panel Calls for Crypto Export Reform"
},
{
"url": "https://hardware.slashdot.org/story/99/08/31/1441218/nvidias-geforce-256-breaks-out-changes-3d-world",
"title": "nVidia's GeForce 256 Breaks Out; changes 3D world"
},
{
"url": "https://developers.slashdot.org/story/99/08/30/1231221/review-programming-web-graphics-with-perl-gnu-software",
"title": "Review: Programming Web Graphics with Perl & GNU Software"
},
{
"url": "https://slashdot.org/story/99/08/31/149245/update-ms-says-hotmail-security-issue-resolved",
"title": "Update: MS Says Hotmail \"Security Issue\" Resolved"
},
{
"url": "https://slashdot.org/story/99/08/31/142235/alpha-can-live-without-microsoft",
"title": "Alpha Can Live Without Microsoft"
},
{
"url": "https://slashdot.org/story/99/08/31/0143246/unisys-not-suing-most-webmasters-for-using-gifs",
"title": "Unisys Not Suing (most) Webmasters for Using GIFs"
},
{
"url": "https://slashdot.org/story/99/08/31/1251218/cisco-ibm-to-ally",
"title": "Cisco, IBM to ally"
},
{
"url": "https://news.slashdot.org/story/99/08/31/1315235/load-testing-the-new-server-take-2",
"title": "Load Testing the New Server (Take 2)"
},
{
"url": "https://slashdot.org/story/99/08/31/1238213/star-office-to-be-community-sourced-confirmed",
"title": "Star Office to be Community Sourced, confirmed"
},
{
"url": "https://science.slashdot.org/story/99/08/30/2146203/extreme-medicine-head-transplants",
"title": "Extreme medicine: Head Transplants"
},
{
"url": "https://games.slashdot.org/story/99/08/30/2139204/brian-paul-to-join-precision-insight",
"title": "Brian Paul to join Precision Insight"
},
{
"url": "https://news.slashdot.org/story/99/08/30/215225/load-test-the-new-slashdot-setup",
"title": "Load Test the New Slashdot Setup"
},
{
"url": "https://tech.slashdot.org/story/99/08/30/1743202/microwave-t1-service",
"title": "Microwave T1 Service"
},
{
"url": "https://news.slashdot.org/story/99/08/30/165240/internet-tax-moratorium-over",
"title": "Internet Tax Moratorium Over?"
},
{
"url": "https://news.slashdot.org/story/99/08/27/0452242/feature-is-open-source-for-windows-less-important",
"title": "Feature: Is Open Source for Windows Less Important?"
},
{
"url": "https://linux.slashdot.org/story/99/08/30/0116221/interview-ask-alan-cox",
"title": "Interview: Ask Alan Cox"
},
{
"url": "https://developers.slashdot.org/story/99/08/30/1426226/3rd-state-of-the-perl-onion",
"title": "3rd State of the Perl Onion"
},
{
"url": "https://slashdot.org/story/99/08/30/1323207/linuxppc-challenge-rides-again",
"title": "LinuxPPC challenge rides again"
},
{
"url": "https://news.slashdot.org/story/99/08/26/1841224/review-the-first-20-million-is-always-the-hardest",
"title": "Review: The First 20 Million is Always the Hardest"
},
{
"url": "https://slashdot.org/story/99/08/30/1417210/star-office-to-become-open-source",
"title": "Star Office to become Open Source?"
},
{
"url": "https://hardware.slashdot.org/story/99/08/30/1336213/palm-gameboy-emulator-update-screens",
"title": "Palm Gameboy Emulator update & screens"
},
{
"url": "https://slashdot.org/story/99/08/30/1324206/hotmail-cracked-badly",
"title": "Hotmail Cracked Badly"
},
{
"url": "https://linux.slashdot.org/story/99/08/30/138259/the-life-of-linus",
"title": "The Life of Linus"
},
{
"url": "https://linux.slashdot.org/story/99/08/30/1217207/open-letter-to-red-hat",
"title": "Open Letter to Red Hat"
},
{
"url": "https://news.slashdot.org/story/99/08/29/2046224/mysql-32032a-released-under-gpl",
"title": "MySQL 3.20.32a Released Under GPL"
},
{
"url": "https://bsd.slashdot.org/story/99/08/29/1718230/is-freebsd-really-the-other-linux",
"title": "Is FreeBSD really 'The Other Linux'"
},
{
"url": "https://linux.slashdot.org/story/99/08/29/1710235/linux-trademark-under-attack-again",
"title": "Linux Trademark Under Attack Again"
},
{
"url": "https://tech.slashdot.org/story/99/08/29/1656232/opera-browser-for-linuxx11-nears-beta",
"title": "Opera Browser for Linux/X11 Nears Beta"
},
{
"url": "https://ask.slashdot.org/story/99/08/29/0018216/perplexing-ppp-problem",
"title": "Perplexing PPP Problem"
},
{
"url": "https://ask.slashdot.org/story/99/08/29/009221/pentiums-socklets-and-coppermine-oh-my",
"title": "Pentiums, socklets, and Coppermine, Oh My!"
},
{
"url": "https://ask.slashdot.org/story/99/08/28/2352221/using-old-laptops-as-pass-thru-displays",
"title": "Using Old Laptops as Pass-Thru Displays?"
},
{
"url": "https://linux.slashdot.org/story/99/08/28/2348205/ask-slashdot-optimizing-apachemysql-for-a-production-environment",
"title": "Ask Slashdot: Optimizing Apache/MySQL for a Production Environment"
},
{
"url": "https://news.slashdot.org/story/99/08/29/0722236/unisys-enforcing-gif-patents",
"title": "Unisys Enforcing GIF Patents"
},
{
"url": "https://it.slashdot.org/story/99/08/29/0213230/512-bit-rsa-key-cracked",
"title": "512-bit RSA Key Cracked."
},
{
"url": "https://ask.slashdot.org/story/99/08/28/2333214/printer-management-console",
"title": "Printer Management Console?"
},
{
"url": "https://ask.slashdot.org/story/99/08/28/2327257/searching-for-the-correct-license",
"title": "Searching for the Correct License"
},
{
"url": "https://ask.slashdot.org/story/99/08/28/2325221/linux-based-e-mail-w-windows-clients",
"title": "Linux based E-Mail w/ Windows Clients"
},
{
"url": "https://ask.slashdot.org/story/99/08/28/2214201/serving-graphics-to-website-from-a-database",
"title": "Serving Graphics to Website from a Database?"
},
{
"url": "https://ask.slashdot.org/story/99/08/28/2159215/mac-and-linux-sharing-serial-ports",
"title": "Mac and Linux Sharing Serial Ports?"
},
{
"url": "https://ask.slashdot.org/story/99/08/28/2113224/ask-slashdot-comp-sci-graduate-schools",
"title": "Ask Slashdot: Comp-Sci Graduate Schools"
},
{
"url": "https://slashdot.org/story/99/08/28/1933236/amiga-growing-silent-again",
"title": "Amiga Growing Silent Again?"
},
{
"url": "https://hardware.slashdot.org/story/99/08/28/1828213/creative-labs-pc",
"title": "Creative Labs PC"
},
{
"url": "https://news.slashdot.org/story/99/08/28/1823211/canada-builds-worlds-fastest-network",
"title": "Canada Builds World's Fastest Network"
},
{
"url": "https://linux.slashdot.org/story/99/08/28/1610205/the-rise-and-rise-of-software-patents",
"title": "The Rise and Rise of Software Patents"
},
{
"url": "https://yro.slashdot.org/story/99/08/28/1512231/fcc-makes-wiretapping-easier-for-cops",
"title": "FCC Makes Wiretapping Easier for Cops"
},
{
"url": "https://slashdot.org/story/99/08/28/1336258/windows-2000-to-provoke-domain-game",
"title": "Windows 2000 to provoke domain game"
},
{
"url": "https://linux.slashdot.org/story/99/08/27/2358241/kernel-2212",
"title": "Kernel 2.2.12"
},
{
"url": "https://slashdot.org/story/99/08/27/2355216/babelfish-mutations",
"title": "Babelfish Mutations"
},
{
"url": "https://linux.slashdot.org/story/99/08/27/2130215/key-linux-site-may-be-sold",
"title": "\"Key\" Linux Site May Be Sold?"
},
{
"url": "https://linux.slashdot.org/story/99/08/27/1931245/hp-to-release-3-thin-clients-pcs",
"title": "HP to release 3 thin clients PCs"
},
{
"url": "https://news.slashdot.org/story/99/08/27/1843200/interview-the-punk-hacker-kid-responds",
"title": "Interview: the \"Punk Hacker Kid\" Responds"
},
{
"url": "https://news.slashdot.org/story/99/08/27/1625240/hope-for-the-valleys-single-men",
"title": "Hope for the Valley's Single Men"
},
{
"url": "https://news.slashdot.org/story/99/08/27/1641223/911-calls-linux",
"title": "911 Calls Linux"
},
{
"url": "https://science.slashdot.org/story/99/08/27/1612227/extraterrestrial-water",
"title": "Extraterrestrial Water"
},
{
"url": "https://science.slashdot.org/story/99/08/27/127206/mir-to-be-abandoned-today",
"title": "Mir to be Abandoned Today"
},
{
"url": "https://slashdot.org/story/99/08/27/1131212/fbi-keeps-seized-computers-up-to-five-years",
"title": "FBI Keeps Seized Computers up to Five Years"
},
{
"url": "https://slashdot.org/story/99/08/27/1258222/the-linux-platinum-card-taken-at-better-stores-everywhere",
"title": "The Linux Platinum Card: taken at better stores everywhere"
},
{
"url": "https://science.slashdot.org/story/99/08/27/1238213/silicon-chip-survival-of-the-fittest",
"title": "Silicon Chip Survival of the Fittest"
},
{
"url": "https://slashdot.org/story/99/08/27/0514217/amazon-rethinks-purchase-circles",
"title": "Amazon Rethinks Purchase Circles"
},
{
"url": "https://slashdot.org/story/99/08/27/110255/segfault-south-park-geek-extravaganza",
"title": "Segfault South Park Geek Extravaganza"
},
{
"url": "https://slashdot.org/story/99/08/27/0846234/sgi-releases-jessie-to-the-open-source",
"title": "SGI releases \"Jessie\" to the Open Source"
},
{
"url": "https://ask.slashdot.org/story/99/08/27/0524253/battlenet-games-through-linux-firewalls",
"title": "Battle.Net Games Through Linux Firewalls?"
},
{
"url": "https://ask.slashdot.org/story/99/08/27/057236/ask-slashdot-could-e-mail-ever-replace-snail-mail",
"title": "Ask Slashdot: Could E-Mail ever Replace Snail Mail?"
},
{
"url": "https://linux.slashdot.org/story/99/08/27/0333251/slackware-50-coming",
"title": "Slackware 5.0 Coming"
},
{
"url": "https://tech.slashdot.org/story/99/08/26/2258258/mozilla-m9-released",
"title": "Mozilla M9 Released"
},
{
"url": "https://linux.slashdot.org/story/99/08/26/2047224/linus-puts-shields-up",
"title": "Linus Puts Shields Up"
},
{
"url": "https://news.slashdot.org/story/99/08/26/205242/wired-on-slashdot",
"title": "Wired on Slashdot"
},
{
"url": "https://slashdot.org/story/99/08/26/1918217/canada-taxing-blank-cds",
"title": "Canada Taxing Blank CDs?"
},
{
"url": "https://tech.slashdot.org/story/99/08/26/148222/cisco-agrees-to-buy-cerent-and-monterey-networks",
"title": "Cisco agrees to buy Cerent and Monterey Networks"
},
{
"url": "https://science.slashdot.org/story/99/08/26/1754217/nasa-releases-first-chandra-photos",
"title": "NASA releases first Chandra photos"
},
{
"url": "https://games.slashdot.org/story/99/08/26/1411232/carmack-on-next-q3-test-parts-open-sourced",
"title": "Carmack on next Q3 test; parts open-sourced"
},
{
"url": "https://linux.slashdot.org/story/99/08/26/1329256/what-if-red-hat-bought-sco",
"title": "What if Red Hat bought SCO?"
},
{
"url": "https://slashdot.org/story/99/08/26/1243233/monty-python-returns",
"title": "Monty Python Returns"
},
{
"url": "https://slashdot.org/story/99/08/26/1359212/bofhcam",
"title": "BOFHcam"
},
{
"url": "https://slashdot.org/story/99/08/26/1343231/amiga-510-1010-released",
"title": "Amiga 510 & 1010 released?"
},
{
"url": "https://slashdot.org/story/99/08/26/128252/microsoft-bites-it-on-64-bit-microprocessors",
"title": "Microsoft Bites It On 64-bit Microprocessors"
},
{
"url": "https://slashdot.org/story/99/08/26/112245/distributednet-captures-laptop-thieves",
"title": "Distributed.net Captures Laptop Thieves."
},
{
"url": "https://ask.slashdot.org/story/99/08/26/0118253/illegal-file-formats",
"title": "Illegal File Formats?"
},
{
"url": "https://ask.slashdot.org/story/99/08/26/0037242/digitals-fx32-and-open-source",
"title": "Digital's FX!32 and Open Source?"
},
{
"url": "https://ask.slashdot.org/story/99/08/26/0030209/ask-slashdot-what-is-the-best-gui-framework",
"title": "Ask Slashdot: What is the Best GUI Framework?"
},
{
"url": "https://linux.slashdot.org/story/99/08/25/2314203/kernels-galore",
"title": "Kernels Galore"
},
{
"url": "https://tech.slashdot.org/story/99/08/25/209211/ietf-draft-on-different-ipv4-addressing-scheme",
"title": "IETF draft on different IPv4 addressing scheme"
},
{
"url": "https://tech.slashdot.org/story/99/08/25/1735246/23tb-drives-for-50",
"title": "2.3TB drives for $50"
},
{
"url": "https://linux.slashdot.org/story/99/08/25/1637207/linux-boots-on-mips-palm-sized-computers",
"title": "Linux boots on MIPS palm-sized computers"
},
{
"url": "https://yro.slashdot.org/story/99/08/25/1536230/melissa-virus-suspect-confesses",
"title": "Melissa Virus Suspect Confesses"
},
{
"url": "https://slashdot.org/story/99/08/25/1623251/amazon-posts-user-purchasing-data",
"title": "Amazon Posts User Purchasing Data"
},
{
"url": "https://slashdot.org/story/99/08/25/141254/interplanetary-internet-protocol-in-devel",
"title": "Interplanetary Internet protocol in devel"
},
{
"url": "https://linux.slashdot.org/story/99/08/25/1351232/featurethoughts-on-the-linux-documentation-project",
"title": "Feature:Thoughts on the Linux Documentation Project"
},
{
"url": "https://tech.slashdot.org/story/99/08/24/1516257/black-futurists-in-the-information-age",
"title": "Black Futurists In The Information Age"
},
{
"url": "https://yro.slashdot.org/story/99/08/25/1218240/new-ruling-makes-domain-name-theft-harder-to-prove",
"title": "New Ruling Makes Domain Name Theft Harder to Prove"
},
{
"url": "https://slashdot.org/story/99/08/25/124209/interview-with-original-nt-os2-developers",
"title": "Interview With Original NT OS/2 Developers"
},
{
"url": "https://slashdot.org/story/99/08/25/132220/paper-paper-everywhere",
"title": "Paper Paper Everywhere"
},
{
"url": "https://radio.slashdot.org/story/99/08/25/1236217/geeks-in-space-6-the-krull-invasion",
"title": "Geeks in Space 6: The Krull Invasion"
},
{
"url": "https://tech.slashdot.org/story/99/08/25/1225209/new-flash-memory-chip-for-mp3-players",
"title": "New Flash Memory Chip for MP3 players"
},
{
"url": "https://slashdot.org/story/99/08/25/0829248/ted-nelson-releases-xanadu",
"title": "Ted Nelson Releases Xanadu"
},
{
"url": "https://it.slashdot.org/story/99/08/25/046231/if-bugs-then-marketing-director-eats-insects",
"title": "IF bugs, THEN marketing director eats insects"
},
{
"url": "https://slashdot.org/story/99/08/24/2250258/new-dual-celeron-pcs-encourage-overclocking",
"title": "New Dual-Celeron PC's Encourage Overclocking"
},
{
"url": "https://linux.slashdot.org/story/99/08/24/2247212/linux-mandrake-gets-major-investor",
"title": "Linux Mandrake Gets Major Investor"
},
{
"url": "https://hardware.slashdot.org/story/99/08/24/1922212/3rd-party-ppc-machines-from-ibm-specs",
"title": "3rd Party PPC Machines from IBM specs"
},
{
"url": "https://slashdot.org/story/99/08/24/1744248/computer-stupidities",
"title": "Computer Stupidities"
},
{
"url": "https://slashdot.org/story/99/08/24/1740249/e-paying-speeding-tickets",
"title": "E-Paying Speeding Tickets"
},
{
"url": "https://linux.slashdot.org/story/99/08/24/1231248/help-the-linux-openbook-project",
"title": "Help the Linux OpenBook Project"
},
{
"url": "https://slashdot.org/story/99/08/24/179220/macromedia-flash-for-unix-out-soon",
"title": "Macromedia Flash for Unix out soon"
},
{
"url": "https://developers.slashdot.org/story/99/08/24/1637236/perl-activists-win-white-camel-awards",
"title": "Perl Activists win White Camel Awards"
},
{
"url": "https://tech.slashdot.org/story/99/08/24/1452204/wearable-pcs",
"title": "Wearable PCs"
},
{
"url": "https://bsd.slashdot.org/story/99/08/24/1425214/wacky-port-of-bsd-to-dreamcast-set-top-box",
"title": "Wacky port of BSD to Dreamcast set top box"
},
{
"url": "https://slashdot.org/story/99/08/24/1420218/belluzo-post-sgi-joining-microsoft",
"title": "Belluzo post-SGI joining Microsoft"
},
{
"url": "https://news.slashdot.org/story/99/08/24/1327256/featureopen-source-as-an-ant-farm",
"title": "Feature:Open Source as an Ant Farm"
},
{
"url": "https://news.slashdot.org/story/99/08/23/1324219/review-mysql-and-msql",
"title": "Review: MySQL and mSQL"
},
{
"url": "https://slashdot.org/story/99/08/24/1233253/internet-addiction-quiz",
"title": "Internet Addiction Quiz"
},
{
"url": "https://news.slashdot.org/story/99/08/24/1229229/anakin-actor-to-star-in-enders-game",
"title": "Anakin Actor to Star in Ender's Game"
},
{
"url": "https://slashdot.org/story/99/08/24/0628233/lineo-releases-embrowser",
"title": "Lineo Releases Embrowser"
},
{
"url": "https://linux.slashdot.org/story/99/08/23/2237205/graphical-linux-installation-panoramix",
"title": "Graphical Linux Installation: Panoramix"
},
{
"url": "https://slashdot.org/story/99/08/24/0149251/network-solutions-to-sell-whois-ads",
"title": "Network Solutions to Sell WHOIS Ads"
},
{
"url": "https://developers.slashdot.org/story/99/08/24/0137210/microsoft-wins-annulment-of-suns-java-injunction",
"title": "Microsoft wins Annulment of Sun's Java injunction"
},
{
"url": "https://slashdot.org/story/99/08/23/210253/att-vs-mci-on-network-outages",
"title": "AT&T vs MCI on Network Outages"
},
{
"url": "https://slashdot.org/story/99/08/23/2227219/sgi-ceo-belluzzo-resigns",
"title": "SGI CEO Belluzzo Resigns"
},
{
"url": "https://slashdot.org/story/99/08/23/2035238/savediereloadrepeat",
"title": "Save/Die/Reload/Repeat"
},
{
"url": "https://slashdot.org/story/99/08/23/2010227/world-wide-web-shrinking",
"title": "World Wide Web \"Shrinking\""
},
{
"url": "https://slashdot.org/story/99/08/23/1927204/new-intel-8-way-chipset",
"title": "New Intel 8-way Chipset"
},
{
"url": "https://linux.slashdot.org/story/99/08/23/1650216/linux-on-a-simm",
"title": "Linux on a SIMM"
},
{
"url": "https://news.slashdot.org/story/99/08/23/0312210/interview-the-punk-hacker-kid-who-starred-on-mtv",
"title": "Interview: The Punk Hacker Kid Who Starred on MTV"
},
{
"url": "https://slashdot.org/story/99/08/23/1528212/petition-intel-not-to-disable-smp-celerons",
"title": "Petition Intel Not to Disable SMP Celerons"
},
{
"url": "https://science.slashdot.org/story/99/08/23/1522215/integrated-circuits-the-size-of-molecules",
"title": "Integrated Circuits the Size of Molecules"
},
{
"url": "https://slashdot.org/story/99/08/23/1451202/aol-plans-tv-channel",
"title": "AOL Plans TV Channel"
},
{
"url": "https://features.slashdot.org/story/99/08/23/1338213/feature-us-govt-invasion-of-privacy",
"title": "Feature: US Govt & Invasion of Privacy"
},
{
"url": "https://news.slashdot.org/story/99/08/19/1647203/review-the-celebration-chronicles-life-in-disneyville",
"title": "Review: The Celebration Chronicles: Life in Disneyville"
},
{
"url": "https://linux.slashdot.org/story/99/08/23/1226213/delphi-for-linux",
"title": "Delphi for Linux"
},
{
"url": "https://tech.slashdot.org/story/99/08/23/1221244/quantum-computing-for-dummies",
"title": "Quantum Computing for Dummies"
},
{
"url": "https://slashdot.org/story/99/08/22/2337256/are-you-online-more-than-4-hours-a-day",
"title": "Are You Online More than 4 Hours a Day?"
},
{
"url": "https://slashdot.org/story/99/08/22/2129256/asus-release-of-athlonk7-mb",
"title": "Asus release of Athlon(K7) M/B"
},
{
"url": "https://slashdot.org/story/99/08/22/2058211/aols-aim-exploits-buffer-overflow-on-purpose",
"title": "AOL's AIM Exploits Buffer Overflow On Purpose"
},
{
"url": "https://slashdot.org/story/99/08/22/1728232/intel-cuts-prices-reveals-details-of-new-celeron",
"title": "Intel Cuts Prices, Reveals Details of New Celeron"
},
{
"url": "https://tech.slashdot.org/story/99/08/22/1856219/the-re-unification-of-linux",
"title": "The Re-Unification of Linux"
},
{
"url": "https://slashdot.org/story/99/08/22/174242/encouraging-female-programmers",
"title": "Encouraging Female Programmers"
},
{
"url": "https://science.slashdot.org/story/99/08/22/1645229/carl-sagan-was-a-secret-pot-smoker",
"title": "Carl Sagan Was a Secret Pot Smoker"
},
{
"url": "https://hardware.slashdot.org/story/99/08/21/2350223/mainstream-books-for-palm-pilots",
"title": "Mainstream Books for Palm Pilots"
},
{
"url": "https://ask.slashdot.org/story/99/08/21/2234201/windows-nt-and-dvd-decoders",
"title": "Windows NT and DVD Decoders?"
},
{
"url": "https://ask.slashdot.org/story/99/08/21/2227237/thoughts-on-the-palm-size-pc-compaq-aero-2130la",
"title": "Thoughts on the Palm-Size PC Compaq Aero 2130LA?"
},
{
"url": "https://ask.slashdot.org/story/99/08/21/2219257/worldwide-performanceusage-monitoring-software",
"title": "Worldwide Performance/Usage Monitoring Software?"
},
{
"url": "https://ask.slashdot.org/story/99/08/21/2217208/using-cakewalk-w-vmware-for-linux",
"title": "Using Cakewalk w/ VMWare for Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/08/21/228240/microwavehigh-frequency-private-broadcasting",
"title": "Microwave/High Frequency Private Broadcasting?"
},
{
"url": "https://ask.slashdot.org/story/99/08/21/221228/ask-slashdot-whats-the-best-mp3-encoder",
"title": "Ask Slashdot: What's the Best MP3 Encoder?"
},
{
"url": "https://slashdot.org/story/99/08/14/0041246/old-boxen-and-charitiable-organizations",
"title": "Old Boxen and Charitiable Organizations"
},
{
"url": "https://hardware.slashdot.org/story/99/08/21/1736251/making-music-with-cpu-activity",
"title": "Making Music with CPU Activity"
},
{
"url": "https://it.slashdot.org/story/99/08/21/141213/when-pretty-good-privacy-isnt-good-enough",
"title": "When Pretty Good Privacy Isn't Good Enough"
},
{
"url": "https://slashdot.org/story/99/08/21/1349240/us-army-testing-jini",
"title": "U.S. Army Testing Jini"
},
{
"url": "https://hardware.slashdot.org/story/99/08/21/135245/hercules-closes-its-doors",
"title": "Hercules Closes Its Doors"
},
{
"url": "https://slashdot.org/story/99/08/21/1216213/quick-death-for-javaos",
"title": "Quick Death for JavaOS"
},
{
"url": "https://slashdot.org/story/99/08/21/0316212/sun-buys-maker-of-staroffice",
"title": "Sun buys maker of StarOffice"
},
{
"url": "https://yro.slashdot.org/story/99/08/21/0314204/first-person-convicted-of-us-internet-piracy",
"title": "First person convicted of U.S. Internet piracy"
},
{
"url": "https://ask.slashdot.org/story/99/08/21/007229/ask-slashdot-video-production-on-linux",
"title": "Ask Slashdot: Video Production on Linux?"
},
{
"url": "https://hardware.slashdot.org/story/99/08/20/1853240/dell-finds-oldest-pc",
"title": "Dell finds \"Oldest PC\""
},
{
"url": "https://hardware.slashdot.org/story/99/08/20/1413246/gps-rollover-tonight",
"title": "GPS Rollover Tonight"
},
{
"url": "https://slashdot.org/story/99/08/20/204212/ixnay-winnt-on-alpha",
"title": "Ixnay WinNT on Alpha"
},
{
"url": "https://linux.slashdot.org/story/99/08/20/184251/suck-on-linux-evolution",
"title": "Suck on Linux Evolution"
},
{
"url": "https://tech.slashdot.org/story/99/08/20/1422259/nasa-test-fires-hybrid-rocket-motor",
"title": "NASA test fires hybrid rocket motor"
},
{
"url": "https://tech.slashdot.org/story/99/08/18/1236227/interview-mandrake-answers",
"title": "Interview: Mandrake Answers"
},
{
"url": "https://hardware.slashdot.org/story/99/08/20/1341250/eniac-story-on-npr",
"title": "ENIAC Story on NPR"
},
{
"url": "https://slashdot.org/story/99/08/20/1328251/gtk-for-beos-update",
"title": "GTK+ for BeOS Update"
},
{
"url": "https://slashdot.org/story/99/08/20/143215/feature-why-being-a-computer-game-developer-sucks",
"title": "Feature: Why Being a Computer Game Developer Sucks"
},
{
"url": "https://apple.slashdot.org/story/99/08/20/1345216/apple-sues-emachines",
"title": "Apple sues eMachines"
},
{
"url": "https://slashdot.org/story/99/08/20/1324246/feds-want-access-to-your-machine",
"title": "Feds Want Access to Your Machine"
},
{
"url": "https://news.slashdot.org/story/99/08/20/1323256/borlandinprise-linux-survey-results",
"title": "Borland/Inprise Linux Survey Results"
},
{
"url": "https://bsd.slashdot.org/story/99/08/20/1322222/freebsdcon-99",
"title": "FreeBSDCon 99"
},
{
"url": "https://slashdot.org/story/99/08/19/1625238/what-it-takes-to-be-a-profitable-internet-company",
"title": "What it takes to be a profitable Internet company"
},
{
"url": "https://slashdot.org/story/99/08/19/2046212/suns-new-majc-architecture",
"title": "Sun's New MAJC Architecture"
},
{
"url": "https://slashdot.org/story/99/08/19/2018214/apache-139-now-available",
"title": "Apache 1.3.9 Now Available"
},
{
"url": "https://tech.slashdot.org/story/99/08/19/1744234/the-future-of-kde",
"title": "The Future of KDE"
},
{
"url": "https://slashdot.org/story/99/08/19/1416252/intel-exiting-graphics-chips-market",
"title": "Intel exiting graphics chips market"
},
{
"url": "https://slashdot.org/story/99/08/19/1549208/motorola-to-purchase-metrowerks",
"title": "Motorola to purchase Metrowerks"
},
{
"url": "https://news.slashdot.org/story/99/08/19/1339246/play-mp3s-on-your-stereo-without-wires",
"title": "Play MP3s on Your Stereo Without Wires"
},
{
"url": "https://tech.slashdot.org/story/99/08/19/1322221/the-future-of-gnome",
"title": "The Future of GNOME"
},
{
"url": "https://slashdot.org/story/99/08/19/1424205/fred-moody-on-the-solow-paradox-ms",
"title": "Fred Moody on the Solow Paradox, MS"
},
{
"url": "https://linux.slashdot.org/story/99/08/17/1336231/featurelinux-and-x-ray-astronomy",
"title": "Feature:Linux and X-Ray Astronomy"
},
{
"url": "https://tech.slashdot.org/story/99/08/19/1310209/merced-vs-mckinley",
"title": "Merced vs McKinley"
},
{
"url": "https://hardware.slashdot.org/story/99/08/19/1248248/tom-on-the-athlon-and-an-intel-conspiracy",
"title": "Tom on the Athlon (And an Intel Conspiracy?)"
},
{
"url": "https://news.slashdot.org/story/99/08/19/1245225/free-pcs-and-alternative-oss",
"title": "Free PCs and Alternative OSs"
},
{
"url": "https://tech.slashdot.org/story/99/08/19/1237208/is-x-the-future",
"title": "Is X The Future?"
},
{
"url": "https://news.slashdot.org/story/99/08/19/0212235/geeks-in-the-space-the-attack-of-5",
"title": "Geeks in the Space: The Attack of 5"
},
{
"url": "https://apple.slashdot.org/story/99/08/18/2124252/apple-announces-darwin-03",
"title": "Apple announces Darwin 0.3"
},
{
"url": "https://linux.slashdot.org/story/99/08/18/2119251/win2k-delay-claimed-to-be-helping-spread-of-linux",
"title": "Win2k delay claimed to be helping spread of Linux"
},
{
"url": "https://slashdot.org/story/99/08/18/2123256/microsofts-new-audio-format-cracked",
"title": "Microsoft's New Audio Format Cracked"
},
{
"url": "https://news.slashdot.org/story/99/08/18/2116247/find-your-star-wars-twin",
"title": "Find your Star Wars Twin"
},
{
"url": "https://it.slashdot.org/story/99/08/18/185209/alan-turings-enigma-treatise-online",
"title": "Alan Turing's Enigma Treatise online"
},
{
"url": "https://news.slashdot.org/story/99/08/18/127217/now-police-can-see-through-walls",
"title": "Now Police Can 'See' Through Walls"
},
{
"url": "https://tech.slashdot.org/story/99/08/18/1553240/freetype-posts-patent-warning",
"title": "FreeType posts patent warning"
},
{
"url": "https://linux.slashdot.org/story/99/08/18/1353211/suse-62-english-released",
"title": "S.u.S.E 6.2 English released"
},
{
"url": "https://news.slashdot.org/story/99/08/13/174250/beware-the-hype-not-the-witch",
"title": "Beware The Hype, Not the Witch"
},
{
"url": "https://slashdot.org/story/99/08/18/1349230/microsoft-to-publish-code-to-instant-messenger",
"title": "Microsoft to \"publish code\" to Instant Messenger"
},
{
"url": "https://science.slashdot.org/story/99/08/18/1239206/scientists-create-digital-bug-life",
"title": "Scientists create digital bug-life"
},
{
"url": "https://science.slashdot.org/story/99/08/18/1132222/new-space-propulsion-system-uses-suns-magnetic-field",
"title": "New Space Propulsion System Uses Sun's Magnetic Field"
},
{
"url": "https://slashdot.org/story/99/08/18/124250/is-the-internet-ready-for-y2k",
"title": "Is the Internet Ready for Y2k?"
},
{
"url": "https://slashdot.org/story/99/08/18/0151203/nsi-changes-the-whois-rules",
"title": "NSI Changes the WHOIS Rules"
},
{
"url": "https://science.slashdot.org/story/99/08/18/0518247/cassini-visits-earth",
"title": "Cassini visits Earth"
},
{
"url": "https://games.slashdot.org/story/99/08/18/0448231/descent-3-linux-client",
"title": "Descent 3 Linux Client"
},
{
"url": "https://games.slashdot.org/story/99/08/18/0146245/playstation-2-outperforms-everything",
"title": "Playstation 2 Outperforms Everything?"
},
{
"url": "https://news.slashdot.org/story/99/08/18/0144246/siggraph-99-opengllinux-bof-minutes",
"title": "SIGGRAPH '99 OpenGL/Linux BOF Minutes"
},
{
"url": "https://slashdot.org/story/99/08/17/2353212/dell-belgium-forced-to-install-windows-only",
"title": "Dell Belgium forced to install Windows only?"
},
{
"url": "https://ask.slashdot.org/story/99/08/14/0121226/ask-slashdot-health-insurance-for-the-self-employed",
"title": "Ask Slashdot: Health Insurance for the Self-Employed"
},
{
"url": "https://it.slashdot.org/story/99/08/17/2040223/relativity-used-to-devise-new-form-of-crypt",
"title": "Relativity Used to Devise New Form of Crypt"
},
{
"url": "https://tech.slashdot.org/story/99/08/17/1924259/robots-battle-to-the-death",
"title": "Robots Battle to the Death!"
},
{
"url": "https://tech.slashdot.org/story/99/08/17/1722240/alexandre-julliard-gets-job-hacking-wine",
"title": "Alexandre Julliard gets job Hacking Wine"
},
{
"url": "https://tech.slashdot.org/story/99/08/17/1610233/will-ppc-become-the-preferred-linux-platform",
"title": "Will PPC Become the Preferred Linux Platform?"
},
{
"url": "https://slashdot.org/story/99/08/17/168217/ibms-15-hour-laptop-batteries",
"title": "IBMs 15 hour Laptop Batteries"
},
{
"url": "https://features.slashdot.org/story/99/08/17/1439235/feature-after-the-red-hat-ipo-ball-is-over",
"title": "Feature: After the Red Hat IPO Ball is Over"
},
{
"url": "https://news.slashdot.org/story/99/08/17/1327246/featureobscurity-as-security",
"title": "Feature:Obscurity as Security"
},
{
"url": "https://tech.slashdot.org/story/99/08/17/1359221/l0pht-develops-sniffer-sniffer",
"title": "l0pht develops Sniffer Sniffer"
},
{
"url": "https://slashdot.org/story/99/08/17/1356222/holy-shit-im-not-y2k-compliant",
"title": "Holy Shit! I'm not Y2K Compliant!"
},
{
"url": "https://science.slashdot.org/story/99/08/17/1217212/nasa-collecting-anti-matter-with-giant-ballon",
"title": "NASA collecting anti-matter with giant ballon"
},
{
"url": "https://news.slashdot.org/story/99/08/17/127214/cia-releases-its-own-x-files",
"title": "CIA releases its own X-Files"
},
{
"url": "https://it.slashdot.org/story/99/08/17/123218/packet-storm-security-is-back",
"title": "Packet Storm Security is back"
},
{
"url": "https://slashdot.org/story/99/08/17/0042215/sun-claims-ms-steals-vision",
"title": "Sun Claims MS Steals Vision"
},
{
"url": "https://linux.slashdot.org/story/99/08/17/0030206/essay-on-open-source-as-an-art-form",
"title": "Essay on Open Source as an Art Form"
},
{
"url": "https://science.slashdot.org/story/99/08/16/2254204/scientists-find-evidence-of-black-holes-sucking",
"title": "Scientists Find Evidence of Black Holes Sucking"
},
{
"url": "https://slashdot.org/story/99/08/16/2050226/ms-dirty-pool-against-aol",
"title": "MS Dirty Pool Against AOL?"
},
{
"url": "https://news.slashdot.org/story/99/08/16/204234/high-tech-junk",
"title": "High Tech Junk"
},
{
"url": "https://slashdot.org/story/99/08/16/1847215/how-to-make-money-with-open-source-software",
"title": "How to make money with open source software"
},
{
"url": "https://tech.slashdot.org/story/99/08/16/1319218/interview-ask-mandrake-anything",
"title": "Interview: Ask Mandrake Anything"
},
{
"url": "https://slashdot.org/story/99/08/16/1545204/aol-trademarks-nixed",
"title": "AOL Trademarks nixed"
},
{
"url": "https://slashdot.org/story/99/08/15/0223225/ols-wrap-up",
"title": "OLS Wrap-up"
},
{
"url": "https://slashdot.org/story/99/08/16/1447229/y2k-policy-with-attitude",
"title": "Y2K Policy with Attitude"
},
{
"url": "https://slashdot.org/story/99/08/16/1333222/domain-name-price-war-begins",
"title": "Domain Name Price War Begins"
},
{
"url": "https://slashdot.org/story/99/08/16/1432210/state-of-the-taco",
"title": "State of the Taco"
},
{
"url": "https://tech.slashdot.org/story/99/08/10/1859216/quack",
"title": "Quack!"
},
{
"url": "https://linux.slashdot.org/story/99/08/16/1333228/linux-in-web-appliances",
"title": "Linux in Web Appliances"
},
{
"url": "https://linux.slashdot.org/story/99/08/16/1326240/wrap-up-of-linuxworld",
"title": "Wrap-up of LinuxWorld"
},
{
"url": "https://linux.slashdot.org/story/99/08/16/1238205/install-linux-in-4-minutes",
"title": "Install Linux in 4 Minutes"
},
{
"url": "https://ask.slashdot.org/story/99/08/14/0048234/ask-slashdot-should-the-us-government-tax-email",
"title": "Ask Slashdot: Should the US Government Tax Email?"
},
{
"url": "https://slashdot.org/story/99/08/16/029233/australia-bans-cybersquatting",
"title": "Australia Bans Cybersquatting"
},
{
"url": "https://slashdot.org/story/99/08/15/1132241/quickie-sunday",
"title": "Quickie Sunday"
},
{
"url": "https://news.slashdot.org/story/99/08/15/2244220/cameron-on-mars-miniseries",
"title": "Cameron on Mars miniseries"
},
{
"url": "https://science.slashdot.org/story/99/08/15/1750200/iron-ferrite-batteries",
"title": "Iron Ferrite Batteries"
},
{
"url": "https://tech.slashdot.org/story/99/08/15/1633214/how-to-build-a-clear-computer-case",
"title": "How to Build a Clear Computer Case"
},
{
"url": "https://slashdot.org/story/99/08/15/1619217/get-ready-for-rent-an-app",
"title": "Get Ready for Rent-An-App"
},
{
"url": "https://slashdot.org/story/99/08/15/1848242/dave-barry-on-internet-millions",
"title": "Dave Barry on Internet Millions"
},
{
"url": "https://it.slashdot.org/story/99/08/15/1054257/encrypt-phone-calls-for-under-100",
"title": "Encrypt Phone Calls For Under $100"
},
{
"url": "https://linux.slashdot.org/story/99/08/15/0929215/linuxbierwanderung-report",
"title": "Linuxbierwanderung Report"
},
{
"url": "https://news.slashdot.org/story/99/08/15/071208/worldcoms-frame-relay-down",
"title": "Worldcom's Frame Relay Down"
},
{
"url": "https://ask.slashdot.org/story/99/08/15/0512257/visual-perl-tool-for-gtkqt-development",
"title": "Visual Perl Tool for GTK/QT development?"
},
{
"url": "https://ask.slashdot.org/story/99/08/15/0448209/maximum-linux-magazine",
"title": "\"Maximum Linux\" Magazine?"
},
{
"url": "https://ask.slashdot.org/story/99/08/15/0443232/opensource-messaging-queues",
"title": "Opensource Messaging Queues?"
},
{
"url": "https://slashdot.org/story/99/08/14/214222/internet-auditing-project-results",
"title": "Internet Auditing Project Results"
},
{
"url": "https://tech.slashdot.org/story/99/08/14/1527243/sco-does-linux",
"title": "SCO does Linux"
},
{
"url": "https://news.slashdot.org/story/99/08/14/1526233/aol-jilts-open-source",
"title": "AOL Jilts Open Source"
},
{
"url": "https://it.slashdot.org/story/99/08/14/1521209/shamir-reveals-more-about-optical-512-bit-cracker",
"title": "Shamir reveals more about optical 512-bit cracker"
},
{
"url": "https://ask.slashdot.org/story/99/08/14/0142222/what-happened-to-the-linux-sna-project",
"title": "What happened to the Linux SNA Project?"
},
{
"url": "https://ask.slashdot.org/story/99/08/14/0056205/token-ringethernet-hybrid-network",
"title": "Token Ring/Ethernet Hybrid Network?"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/0248200/ask-slashdot-geeks-stereotypes-and-their-origins",
"title": "Ask Slashdot: Geeks Stereotypes and Their Origins"
},
{
"url": "https://news.slashdot.org/story/99/08/13/1947222/iridium-files-for-bankruptcy",
"title": "Iridium Files for Bankruptcy"
},
{
"url": "https://linux.slashdot.org/story/99/08/13/1839234/protest-over-linuxworld-penguins",
"title": "Protest over LinuxWorld Penguins"
},
{
"url": "https://hardware.slashdot.org/story/99/08/13/1254239/3com-sues-over-davinci",
"title": "3Com Sues over DaVinci"
},
{
"url": "https://slashdot.org/story/99/08/13/1658200/ibm-opens-powerpc-design-to-linuxppc",
"title": "IBM opens PowerPC design to LinuxPPC"
},
{
"url": "https://news.slashdot.org/story/99/08/13/0210244/we-are-experiencing-technical-difficulties",
"title": "We Are Experiencing Technical Difficulties"
},
{
"url": "https://science.slashdot.org/story/99/08/13/1247239/earthlife-27-billion-years-old",
"title": "Earthlife 2.7 Billion Years Old"
},
{
"url": "https://slashdot.org/story/99/08/13/1156210/interview-the-internet-political-experts-respond",
"title": "Interview: The Internet Political Experts Respond"
},
{
"url": "https://news.slashdot.org/story/99/08/13/1129253/australia-make-software-reverse-engineering-legal",
"title": "Australia Make Software Reverse Engineering Legal"
},
{
"url": "https://slashdot.org/story/99/08/13/1231214/wsp-petitions-ms-to-make-ie-meet-w3c-standards",
"title": "WSP Petitions MS to Make IE Meet W3C Standards"
},
{
"url": "https://slashdot.org/story/99/08/12/2358222/sgi-installing-beowulf",
"title": "SGI Installing Beowulf"
},
{
"url": "https://slashdot.org/story/99/08/13/0948233/microsoft-closing-firefly",
"title": "Microsoft Closing Firefly"
},
{
"url": "https://linux.slashdot.org/story/99/08/12/2153243/crack-linuxppc-contest-is-over",
"title": "Crack LinuxPPC Contest Is Over"
},
{
"url": "https://tech.slashdot.org/story/99/08/12/1918248/changing-the-keyboard",
"title": "Changing the Keyboard"
},
{
"url": "https://linux.slashdot.org/story/99/08/12/1825230/red-hat-affinity-offer-extended-until-friday",
"title": "Red Hat Affinity Offer Extended Until Friday"
},
{
"url": "https://slashdot.org/story/99/08/12/1756202/hummingbird-caldera-announce-alliance",
"title": "Hummingbird, Caldera announce alliance"
},
{
"url": "https://slashdot.org/story/99/08/12/1643223/us-government-encryption-irony",
"title": "U.S. Government Encryption Irony"
},
{
"url": "https://ask.slashdot.org/story/99/08/10/049200/open-source-and-javascript",
"title": "Open Source and Javascript"
},
{
"url": "https://linux.slashdot.org/story/99/08/12/1632239/linux-mandrake-best-product-of-the-year--lwce",
"title": "Linux-Mandrake best product of the year @ LWCE"
},
{
"url": "https://slashdot.org/story/99/08/12/1610216/amiga-has-a-future",
"title": "Amiga has a Future?"
},
{
"url": "https://hardware.slashdot.org/story/99/08/12/1558226/plastic-hard-drives",
"title": "Plastic Hard Drives"
},
{
"url": "https://linux.slashdot.org/story/99/08/12/168205/red-hat-ipo-all-over-the-news",
"title": "Red Hat IPO All Over the News"
},
{
"url": "https://slashdot.org/story/99/08/12/150245/xfs-to-be-released-under-the-gpl",
"title": "XFS to be released under the GPL"
},
{
"url": "https://science.slashdot.org/story/99/08/04/1231256/reviewnano-the-emerging-science-of-nanotechnology",
"title": "Review:Nano: The Emerging Science of Nanotechnology"
},
{
"url": "https://slashdot.org/story/99/08/11/220244/evolution-is-a-myth-in-kansas",
"title": "Evolution is a Myth in Kansas"
},
{
"url": "https://games.slashdot.org/story/99/08/11/2058222/news-flash-gamers-arent-deviants",
"title": "News Flash: Gamers Aren't Deviants"
},
{
"url": "https://tech.slashdot.org/story/99/08/11/1820258/worlds-smallest-web-server-we-have-a-winner",
"title": "World's Smallest Web Server (We Have a Winner)"
},
{
"url": "https://slashdot.org/story/99/08/11/1721231/sgi-to-dump-nt-workstation-business-move-to-linux",
"title": "SGI to Dump NT Workstation Business, Move to Linux"
},
{
"url": "https://slashdot.org/story/99/08/11/1541223/cnn-on-common-name-resolution-protocol",
"title": "CNN on Common Name Resolution Protocol"
},
{
"url": "https://linux.slashdot.org/story/99/08/11/1455214/the-word-from-etrade-about-the-rh-ipo",
"title": "\"The Word\" from E*Trade About the RH IPO"
},
{
"url": "https://news.slashdot.org/story/99/08/11/1310233/vote-for-open-source-representative-on-isc",
"title": "Vote for Open-Source Representative on ISC"
},
{
"url": "https://science.slashdot.org/story/99/08/11/124209/eclipse-today-meteor-shower-friday",
"title": "Eclipse Today, Meteor Shower Friday"
},
{
"url": "https://news.slashdot.org/story/99/08/11/1157222/berst-says-it-may-be-time-for-linux",
"title": "Berst Says it May be Time for Linux"
},
{
"url": "https://slashdot.org/story/99/08/11/0630239/corel-linux-preview",
"title": "Corel Linux Preview"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/0249233/ask-slashdot-what-can-we-do-about-ucita",
"title": "Ask Slashdot: What can we do about UCITA?"
},
{
"url": "https://linux.slashdot.org/story/99/08/10/2211234/lotus-releases-domino-r5-for-linux",
"title": "Lotus Releases Domino R5 For Linux"
},
{
"url": "https://news.slashdot.org/story/99/08/10/2030232/party-with-slashdot-tonight",
"title": "Party with Slashdot Tonight!"
},
{
"url": "https://slashdot.org/story/99/08/10/1938241/ibm-joins-trillian-project",
"title": "IBM joins Trillian project"
},
{
"url": "https://linux.slashdot.org/story/99/08/10/1846245/red-hat-ipo-price-range-increase",
"title": "Red Hat IPO Price Range Increase"
},
{
"url": "https://news.slashdot.org/story/99/08/10/1841244/andovernet-acquires-freshmeatnet",
"title": "Andover.Net Acquires Freshmeat.Net"
},
{
"url": "https://linux.slashdot.org/story/99/08/10/1715235/in-depth-upside-interview-with-linus-torvalds",
"title": "In-Depth Upside Interview With Linus Torvalds"
},
{
"url": "https://slashdot.org/story/99/08/10/186212/rip-linuxbox",
"title": "R.I.P. Linuxbox"
},
{
"url": "https://ask.slashdot.org/story/99/08/10/1753234/virtual-desktops-for-win32",
"title": "Virtual Desktops for Win32?"
},
{
"url": "https://slashdot.org/story/99/08/10/162211/sgi-announces-new-strategy-and-alliance",
"title": "SGI Announces New Strategy and Alliance"
},
{
"url": "https://news.slashdot.org/story/99/08/03/154229/reviewthe-artists-guide-to-the-gimp",
"title": "Review:The Artists' Guide to the GIMP"
},
{
"url": "https://slashdot.org/story/99/08/09/2142209/feature-good-vs-evil-on-the-world-wide-web",
"title": "Feature: Good vs. Evil on the World Wide Web"
},
{
"url": "https://slashdot.org/story/99/08/10/0253244/caldera-releasing-lizard-source",
"title": "Caldera Releasing Lizard Source"
},
{
"url": "https://news.slashdot.org/story/99/08/10/1235259/3-d-memory-may-revolutionize-pc-data-storage",
"title": "3-D Memory May Revolutionize PC Data Storage"
},
{
"url": "https://news.slashdot.org/story/99/08/10/0259245/new-power-of-two-prefixes",
"title": "New Power-of-Two Prefixes?"
},
{
"url": "https://tech.slashdot.org/story/99/08/10/0226211/1000-pentium-beowulf-cluster-for-genetic-programming",
"title": "1000-Pentium Beowulf Cluster for Genetic Programming"
},
{
"url": "https://it.slashdot.org/story/99/08/10/0636256/aes-finalists-round-2",
"title": "AES Finalists, Round 2"
},
{
"url": "https://linux.slashdot.org/story/99/08/10/0624221/linux-2211-released",
"title": "Linux 2.2.11 Released"
},
{
"url": "https://ask.slashdot.org/story/99/08/10/0416205/comparing-mysql-and-postgresql",
"title": "Comparing MySQL and Postgresql"
},
{
"url": "https://ask.slashdot.org/story/99/08/10/041207/can-you-shrink-glibc",
"title": "Can you Shrink glibc?"
},
{
"url": "https://ask.slashdot.org/story/99/08/10/0351226/the-pc-and-ahe-video-entertainment-center",
"title": "The PC and ahe Video Entertainment Center?"
},
{
"url": "https://ask.slashdot.org/story/99/08/10/0338238/ask-slashdot-on-good-software-design-processes",
"title": "Ask Slashdot: On Good Software Design Processes"
},
{
"url": "https://news.slashdot.org/story/99/08/10/0145205/mitnick-finally-receives-federal-sentence",
"title": "Mitnick Finally Receives Federal Sentence"
},
{
"url": "https://slashdot.org/story/99/08/09/2030243/clinton-creates-group-to-address-unlawful-conduct-on-net",
"title": "Clinton creates group to \"address unlawful conduct\" on Net"
},
{
"url": "https://linux.slashdot.org/story/99/08/09/1840232/dell-to-offer-linux-on-dimension-line",
"title": "Dell to offer Linux on Dimension Line"
},
{
"url": "https://linux.slashdot.org/story/99/08/09/186235/infoworld-on-linuxworld",
"title": "Infoworld on LinuxWorld"
},
{
"url": "https://news.slashdot.org/story/99/08/04/0035248/interview-ask-the-internet-political-activists",
"title": "Interview: Ask the Internet Political Activists"
},
{
"url": "https://news.slashdot.org/story/99/08/03/0319246/reviewtcltk-in-a-nutshell",
"title": "Review:Tcl/Tk in a Nutshell"
},
{
"url": "https://games.slashdot.org/story/99/08/09/1415259/3dfx-to-develop-dri-for-linux",
"title": "3dfx to develop DRI for linux"
},
{
"url": "https://news.slashdot.org/story/99/08/08/1742241/lo-tech-cinema",
"title": "Lo-Tech Cinema"
},
{
"url": "https://slashdot.org/story/99/08/09/1356258/aliaswavefront-to-support-linux",
"title": "Alias|Wavefront to Support Linux"
},
{
"url": "https://tech.slashdot.org/story/99/08/09/1214204/all-purpose-distributed-computing",
"title": "All-Purpose Distributed Computing"
},
{
"url": "https://linux.slashdot.org/story/99/08/09/122252/larry-augustin-interview",
"title": "Larry Augustin Interview"
},
{
"url": "https://tech.slashdot.org/story/99/08/09/0743240/athlon-reviews",
"title": "Athlon Reviews"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/0315246/moving-a-linux-install-to-a-different-drive",
"title": "Moving a Linux Install to a Different Drive"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/036213/fibre-channel-and-raid-arrays",
"title": "Fibre Channel and RAID Arrays"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/032220/unix-machines-that-dont-use-etcpasswd",
"title": "UNIX Machines that don't use /etc/passwd"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/0256230/athlon-motherboards",
"title": "Athlon Motherboards?"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/0242219/ask-slashdot-computer-charities-for-the-children",
"title": "Ask Slashdot: Computer Charities for the Children?"
},
{
"url": "https://ask.slashdot.org/story/99/08/09/0234220/file-system-errors-w-nt-and-linux",
"title": "File System Errors w/ NT and Linux"
},
{
"url": "https://news.slashdot.org/story/99/08/08/1959209/second-annual-icfp-programming-contest",
"title": "Second Annual ICFP Programming Contest"
},
{
"url": "https://games.slashdot.org/story/99/08/07/0313238/neverwinter-nights-coming-to-linux",
"title": "Neverwinter Nights Coming to Linux"
},
{
"url": "https://slashdot.org/story/99/08/08/1752211/judge-jackson-orders-final-ms-case-summaries",
"title": "Judge Jackson Orders Final MS Case Summaries"
},
{
"url": "https://news.slashdot.org/story/99/08/08/1544251/hellmouth-website",
"title": "Hellmouth Website"
},
{
"url": "https://news.slashdot.org/story/99/08/06/1856201/final-episode-of-mst3k-to-air-today",
"title": "Final Episode of MST3K to Air Today"
},
{
"url": "https://linux.slashdot.org/story/99/08/08/1542200/customized-red-hat-boot-disks",
"title": "Customized Red Hat Boot Disks"
},
{
"url": "https://slashdot.org/story/99/08/08/0328205/crackthisbox-updates",
"title": "CrackThisBox Updates"
},
{
"url": "https://linux.slashdot.org/story/99/08/07/212219/red-hat-ipo-story-at-yahoo",
"title": "Red Hat IPO Story at Yahoo"
},
{
"url": "https://news.slashdot.org/story/99/08/07/1149251/mitnick-charges-dropped",
"title": "Mitnick Charges Dropped"
},
{
"url": "https://slashdot.org/story/99/08/07/0547213/new-cyberlaws",
"title": "New Cyberlaws"
},
{
"url": "https://it.slashdot.org/story/99/08/07/0211227/ontario-promotes-private-crypto",
"title": "Ontario Promotes Private Crypto"
},
{
"url": "https://linux.slashdot.org/story/99/08/06/2129249/oracle-creates-linux-division",
"title": "Oracle Creates Linux Division"
},
{
"url": "https://news.slashdot.org/story/99/08/06/1814239/crack-linuxppc-day-3it-gets-better",
"title": "Crack LinuxPPC Day 3:It Gets Better"
},
{
"url": "https://news.slashdot.org/story/99/08/06/151251/get-sloshed-with-slashdot-at-linuxworld",
"title": "Get Sloshed with Slashdot at LinuxWorld"
},
{
"url": "https://news.slashdot.org/story/99/08/06/1654247/ap-story-on-linux-and-w2k-cracking-contests",
"title": "AP Story on Linux and W2k Cracking Contests"
},
{
"url": "https://hardware.slashdot.org/story/99/08/05/039235/ask-slashdot-affordable-functional-audio-mixers",
"title": "Ask Slashdot: Affordable, Functional Audio Mixers?"
},
{
"url": "https://slashdot.org/story/99/08/06/1451204/super-fast-storage-access-from-ibm",
"title": "Super fast storage access from IBM"
},
{
"url": "https://slashdot.org/story/99/08/06/1422214/no-harrier-jet-for-pepsi-points",
"title": "No Harrier Jet for Pepsi Points"
},
{
"url": "https://entertainment.slashdot.org/story/99/08/05/012251/interview-illiad-answers",
"title": "Interview: Illiad Answers"
},
{
"url": "https://ask.slashdot.org/story/99/08/05/0232231/truetype-fonts-in-linux-distributions",
"title": "TrueType Fonts in Linux Distributions?"
},
{
"url": "https://news.slashdot.org/story/99/08/06/1254206/programmers-aint-gettin-any",
"title": "Programmers Ain't Gettin' Any"
},
{
"url": "https://tech.slashdot.org/story/99/08/06/032246/beowulf-in-business",
"title": "Beowulf In Business"
},
{
"url": "https://slashdot.org/story/99/08/06/0251209/fragmentation-in-the-windows-world",
"title": "Fragmentation in the Windows World"
},
{
"url": "https://linux.slashdot.org/story/99/08/06/0332213/another-wierd-linux-box",
"title": "Another Wierd Linux Box"
},
{
"url": "https://tech.slashdot.org/story/99/08/05/2355247/via-also-to-acquire-centaur-idts-x86-division",
"title": "VIA also to acquire Centaur (IDT's x86 division)"
},
{
"url": "https://slashdot.org/story/99/08/05/2051234/ibm-unveils-new-power4-cpu",
"title": "IBM Unveils New Power4 CPU"
},
{
"url": "https://news.slashdot.org/story/99/08/05/1942202/diamond-and-riaa-finally-settle-lawsuits",
"title": "Diamond and RIAA finally settle lawsuits"
},
{
"url": "https://science.slashdot.org/story/99/08/05/1823208/virtual-immune-systems-headed-for-market",
"title": "Virtual Immune Systems Headed for Market"
},
{
"url": "https://slashdot.org/story/99/08/05/1921218/sgi-faces-another-reorganization",
"title": "SGI Faces Another Reorganization"
},
{
"url": "https://news.slashdot.org/story/99/08/05/191259/some-nuke-plants-still-have-y2k-bugs",
"title": "Some Nuke Plants Still Have Y2K Bugs"
},
{
"url": "https://tech.slashdot.org/story/99/08/05/1728249/saloncom-on-open-source-medical-software",
"title": "Salon.com on Open Source Medical Software"
},
{
"url": "https://science.slashdot.org/story/99/08/05/1656256/supercomputers-used-to-study-urban-traffic",
"title": "Supercomputers Used to Study Urban Traffic"
},
{
"url": "https://news.slashdot.org/story/99/08/05/1647204/password-overload",
"title": "Password Overload"
},
{
"url": "https://slashdot.org/story/99/08/05/135217/creation-of-a-cybernation",
"title": "Creation of a Cybernation"
},
{
"url": "https://linux.slashdot.org/story/99/08/05/147244/feature-the-end-of-the-tour",
"title": "Feature: The End of the Tour"
},
{
"url": "https://science.slashdot.org/story/99/08/05/1329220/recycled-satellite-yields-scientific-treasure",
"title": "Recycled Satellite Yields Scientific Treasure"
},
{
"url": "https://slashdot.org/story/99/08/05/143205/ms-takes-on-aol-in-web-access-round-iii",
"title": "MS Takes on AOL in Web Access: Round III"
},
{
"url": "https://slashdot.org/story/99/08/05/1248205/the-media-on-microsofts-crack-this-ploy",
"title": "The Media on Microsoft's \"Crack this...\" ploy"
},
{
"url": "https://slashdot.org/story/99/08/05/1243204/tim-oreilly-on-the-open-source-ipos",
"title": "Tim O'Reilly on the Open Source IPOs"
},
{
"url": "https://ask.slashdot.org/story/99/08/05/0212234/free-x-server-for-windows",
"title": "Free X Server for Windows?"
},
{
"url": "https://ask.slashdot.org/story/99/08/05/0149224/proengineer-under-linux",
"title": "Pro/ENGINEER under Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/08/05/0146214/distributed-compiling",
"title": "Distributed Compiling?"
},
{
"url": "https://ask.slashdot.org/story/99/08/05/0134217/storage-area-networks-for-linux",
"title": "Storage Area Networks for Linux?"
},
{
"url": "https://news.slashdot.org/story/99/08/04/2243225/assorted-changes-to-slashdot",
"title": "Assorted Changes to Slashdot"
},
{
"url": "https://ask.slashdot.org/story/99/08/04/2247236/an-odd-php3apache-annoyance",
"title": "An Odd PHP3/Apache Annoyance..."
},
{
"url": "https://ask.slashdot.org/story/99/08/04/2242224/ask-slashdot-comparing-the-guis",
"title": "Ask Slashdot: Comparing the GUIs"
},
{
"url": "https://linux.slashdot.org/story/99/08/04/2036211/etrade-opening-red-hat-ipo-to-members",
"title": "E*Trade Opening Red Hat IPO to Members"
},
{
"url": "https://news.slashdot.org/story/99/07/29/0022235/voices-from-the-movie-line",
"title": "Voices From The Movie Line"
},
{
"url": "https://apple.slashdot.org/story/99/08/04/205226/linuxppc-challenge-crack-the-box-and-keep-it",
"title": "LinuxPPC Challenge: Crack the Box and Keep it!"
},
{
"url": "https://news.slashdot.org/story/99/08/04/1735216/its-all-about-the-pentiums",
"title": "It's All About the Pentiums"
},
{
"url": "https://linux.slashdot.org/story/99/08/04/1643240/linux-in-the-military",
"title": "Linux in the Military"
},
{
"url": "https://tech.slashdot.org/story/99/08/04/1730230/sony-to-produce-more-aibo-more-bots",
"title": "Sony to produce more AIBO & more bots"
},
{
"url": "https://linux.slashdot.org/story/99/08/04/1426251/kernel-feature-freeze-in-2-weeks",
"title": "Kernel Feature freeze in 2 weeks?"
},
{
"url": "https://news.slashdot.org/story/99/08/04/145209/geeks-in-space-episode-4",
"title": "Geeks in Space, Episode 4"
},
{
"url": "https://linux.slashdot.org/story/99/08/04/1222227/linux-and-the-new-computing-order",
"title": "Linux and the New Computing Order"
},
{
"url": "https://slashdot.org/story/99/08/04/0114204/fbi-stops-satellite-phones",
"title": "FBI Stops Satellite Phones"
},
{
"url": "https://news.slashdot.org/story/99/08/04/0140218/us-eases-computer-export-controls",
"title": "U.S. Eases Computer Export Controls"
},
{
"url": "https://news.slashdot.org/story/99/08/04/0119231/free-software-foundation-wins-25000-award",
"title": "Free Software Foundation Wins $25,000 Award"
},
{
"url": "https://it.slashdot.org/story/99/08/03/1421225/broadcasting-spam-into-space",
"title": "Broadcasting Spam into Space"
},
{
"url": "https://slashdot.org/story/99/08/03/1753221/caldera-pulls-motorola-onto-linux-bandwagon",
"title": "Caldera pulls Motorola onto Linux Bandwagon"
},
{
"url": "https://slashdot.org/story/99/08/03/1512201/hps-openmail-to-support-linux",
"title": "HP's OpenMail to support Linux"
},
{
"url": "https://slashdot.org/story/99/08/03/1532217/microsoft-asks-crack-this-machine",
"title": "Microsoft /asks/ \"Crack this machine\""
},
{
"url": "https://hardware.slashdot.org/story/99/08/03/1531217/glaze3d-yet-another-3d-chipset",
"title": "Glaze3D: Yet Another 3D Chipset"
},
{
"url": "https://science.slashdot.org/story/99/08/03/1444255/scientists-create-flu-virus-entirely-from-genes",
"title": "Scientists create flu virus entirely from genes"
},
{
"url": "https://news.slashdot.org/story/99/08/03/1214227/va-linux-systems-opening-10-new-offices",
"title": "VA Linux Systems opening 10 new offices"
},
{
"url": "https://linux.slashdot.org/story/99/08/02/1334252/reviewbeginning-linux-programming",
"title": "Review:Beginning Linux Programming"
},
{
"url": "https://slashdot.org/story/99/08/03/1210228/indexing-the-entire-web",
"title": "Indexing the Entire Web?"
},
{
"url": "https://slashdot.org/story/99/08/03/1126238/h-1b-tech-workers-may-be-severely-underpaid",
"title": "H-1B Tech Workers May Be Severely Underpaid"
},
{
"url": "https://entertainment.slashdot.org/story/99/08/02/1847246/interview-ask-illiad-anything",
"title": "Interview: Ask Illiad Anything"
},
{
"url": "https://news.slashdot.org/story/99/08/03/0237253/times-man-of-the-century-linus-torvalds",
"title": "Time's Man of the Century: Linus Torvalds?"
},
{
"url": "https://linux.slashdot.org/story/99/08/03/0314226/the-post-fud-era-has-begun",
"title": "The Post-FUD Era has Begun"
},
{
"url": "https://slashdot.org/story/99/08/02/2043254/super-quick-quickies",
"title": "Super Quick Quickies"
},
{
"url": "https://slashdot.org/story/99/08/02/1817204/watch-webs-first-open-company",
"title": "Watch Web's first \"Open Company\"?"
},
{
"url": "https://slashdot.org/story/99/08/02/1545209/sgi-introduces-new-1400l-linux-server",
"title": "SGI Introduces New 1400L Linux Server"
},
{
"url": "https://tech.slashdot.org/story/99/08/02/1926232/linmodems",
"title": "LinModems?"
},
{
"url": "https://linux.slashdot.org/story/99/08/02/1821202/va-hints-more-about-going-public",
"title": "VA hints more about going public"
},
{
"url": "https://science.slashdot.org/story/99/08/02/1541218/nasa-proposes-keeping-commercial-income",
"title": "NASA proposes keeping commercial income"
},
{
"url": "https://news.slashdot.org/story/99/08/02/1723201/high-end-tech-company-perks",
"title": "High-End Tech Company Perks"
},
{
"url": "https://slashdot.org/story/99/08/02/1453232/sgi-to-drop-irix-for-linux",
"title": "SGI to drop Irix for Linux"
},
{
"url": "https://slashdot.org/story/99/08/02/144219/new-processor-design-from-sun-microsystems",
"title": "New Processor Design from Sun Microsystems"
},
{
"url": "https://news.slashdot.org/story/99/07/26/1423253/reviewthe-plot-to-get-bill-gates",
"title": "Review:The Plot to Get Bill Gates"
},
{
"url": "https://news.slashdot.org/story/99/08/02/1336249/forumblair-witch-project",
"title": "Forum:Blair Witch Project"
},
{
"url": "https://linux.slashdot.org/story/99/08/02/130205/the-atlantic-monthly-on-linux",
"title": "The Atlantic Monthly on Linux"
},
{
"url": "https://it.slashdot.org/story/99/08/02/129213/california-isp-sues-spammer-and-wins",
"title": "California ISP Sues Spammer and Wins"
},
{
"url": "https://news.slashdot.org/story/99/08/02/1136247/trying-to-stop-music-piracy-in-china",
"title": "Trying to Stop Music Piracy in China"
},
{
"url": "https://tech.slashdot.org/story/99/08/02/1137248/some-kde-news",
"title": "Some KDE news"
},
{
"url": "https://slashdot.org/story/99/08/02/057248/rise-of-the-slacker-millionaires",
"title": "Rise of the Slacker Millionaires"
},
{
"url": "https://linux.slashdot.org/story/99/07/31/0327212/ask-slashdot-linux-fax-servers-w-wintel-clients",
"title": "Ask Slashdot: Linux Fax Servers w/ WinTel Clients?"
},
{
"url": "https://tech.slashdot.org/story/99/08/02/0219235/free-multias-pay-shipping-only",
"title": "Free Multias (Pay Shipping Only)"
},
{
"url": "https://linux.slashdot.org/story/99/08/01/1848249/red-hat-ipo-fiasco-worries-etrade-stock-holders",
"title": "Red Hat IPO Fiasco Worries E*Trade Stock Holders"
},
{
"url": "https://linux.slashdot.org/story/99/08/01/1844236/cnet-article-on-24-kernel",
"title": "CNet Article On 2.4 Kernel"
},
{
"url": "https://games.slashdot.org/story/99/08/01/1649239/unreal-tournament-linux-client",
"title": "Unreal Tournament Linux Client"
},
{
"url": "https://ask.slashdot.org/story/99/07/31/0329228/is-there-an-internet-artists-license",
"title": "Is There An Internet Artists License?"
},
{
"url": "https://ask.slashdot.org/story/99/07/31/0323235/how-does-zope-rate-compared-to-iios-and-nas",
"title": "How does Zope Rate Compared to IIOS and NAS?"
},
{
"url": "https://science.slashdot.org/story/99/07/31/2352246/no-dust-plume-from-lunar-prospecter",
"title": "No dust plume from Lunar Prospecter"
},
{
"url": "https://games.slashdot.org/story/99/07/31/082220/myth-ii-linux-demo",
"title": "Myth II Linux Demo"
},
{
"url": "https://news.slashdot.org/story/99/07/31/1728250/chinese-government-implicated-in-dos-on-us-site",
"title": "Chinese Government Implicated in DoS on US Site"
},
{
"url": "https://hardware.slashdot.org/story/99/07/31/1654210/the-worlds-smallest-webservers",
"title": "The World's Smallest Webserver(s)"
},
{
"url": "https://slashdot.org/story/99/07/31/1646203/senator-proposes-5-tax-on-web-transactions",
"title": "Senator Proposes 5% Tax on Web Transactions"
},
{
"url": "https://it.slashdot.org/story/99/07/31/0758253/nsi-to-be-rbled",
"title": "NSI to be RBL'ed?"
},
{
"url": "https://news.slashdot.org/story/99/07/31/0738253/enders-shadow",
"title": "Ender's Shadow"
},
{
"url": "https://slashdot.org/story/99/07/31/0746216/gcc-295-released",
"title": "GCC 2.95 Released"
},
{
"url": "https://tech.slashdot.org/story/99/07/31/0622237/ritchie-releases-early-compilers",
"title": "Ritchie Releases Early Compilers"
},
{
"url": "https://linux.slashdot.org/story/99/07/29/2213213/ask-slashdot-palmtop-computing-and-linux",
"title": "Ask Slashdot: Palmtop Computing And Linux"
},
{
"url": "https://science.slashdot.org/story/99/07/30/0054244/lunar-prospector-ready-to-land-on-moon",
"title": "Lunar Prospector Ready To Land On Moon"
},
{
"url": "https://ask.slashdot.org/story/99/07/31/0320216/building-a-powerpc-linux-box",
"title": "Building a PowerPC Linux Box?"
},
{
"url": "https://ask.slashdot.org/story/99/07/31/0317203/centralized-and-secure-autentication",
"title": "Centralized and Secure Autentication?"
},
{
"url": "https://ask.slashdot.org/story/99/07/31/0314213/dynamic-text-graphics-w-apache",
"title": "Dynamic Text Graphics w/ Apache?"
},
{
"url": "https://ask.slashdot.org/story/99/07/31/0259236/flexible-file-synchronization",
"title": "Flexible File Synchronization?"
},
{
"url": "https://ask.slashdot.org/story/99/07/29/2239231/tracking-sourceless-spam",
"title": "Tracking Sourceless SPAM"
},
{
"url": "https://news.slashdot.org/story/99/07/30/2220240/interview-bruce-perens-answers-open-source-license-questions",
"title": "Interview: Bruce Perens Answers Open Source License Questions"
},
{
"url": "https://hardware.slashdot.org/story/99/07/30/1816225/palmpilot-as-fetish",
"title": "PalmPilot as fetish"
},
{
"url": "https://slashdot.org/story/99/07/30/1632203/origins-of-monty-python",
"title": "Origins of Monty Python"
},
{
"url": "https://it.slashdot.org/story/99/07/30/1733247/us-government-wants-public-encryption-software-removed",
"title": "U.S. Government Wants Public Encryption Software Removed"
},
{
"url": "https://hardware.slashdot.org/story/99/07/30/1612205/penny-size-180-gigabits-cdroms",
"title": "Penny-size 180 Gigabits CDROMs"
},
{
"url": "https://linux.slashdot.org/story/99/07/30/1451248/salon-on-the-red-hat-ipo-eligibility",
"title": "Salon on the Red Hat IPO Eligibility"
},
{
"url": "https://science.slashdot.org/story/99/07/30/1224238/sea-of-oil-seen-on-titands1-asteriod-fly-by",
"title": "Sea of oil seen on Titan/DS1 Asteriod fly-by"
},
{
"url": "https://science.slashdot.org/story/99/07/30/1212209/the-truth-about-setihome",
"title": "The Truth About SETI@Home"
},
{
"url": "https://hardware.slashdot.org/story/99/07/30/125214/cisco-talks-up-products-to-slow-access",
"title": "Cisco talks up products to /slow access/"
},
{
"url": "https://linux.slashdot.org/story/99/07/30/121200/taking-a-look-forward-linux-24",
"title": "Taking a look forward: Linux 2.4"
},
{
"url": "https://yro.slashdot.org/story/99/07/30/0057237/ucita-is-passed",
"title": "UCITA is passed"
},
{
"url": "https://slashdot.org/story/99/07/30/0037230/us-to-build-y2k-command-center-bunker",
"title": "US to build Y2k Command Center Bunker"
},
{
"url": "https://ask.slashdot.org/story/99/07/29/2234210/in-search-of-the-nextstep-look",
"title": "In Search of the NeXTSTEP Look"
},
{
"url": "https://ask.slashdot.org/story/99/07/29/225230/java-bytecode-level-debugging",
"title": "Java Bytecode Level Debugging?"
},
{
"url": "https://linux.slashdot.org/story/99/07/29/2152242/ask-slashdot-building-a-large-email-service",
"title": "Ask Slashdot: Building a Large Email Service"
},
{
"url": "https://ask.slashdot.org/story/99/07/29/2150220/gnu-tutorial-tool",
"title": "GNU Tutorial Tool?"
},
{
"url": "https://tech.slashdot.org/story/99/07/29/1842204/a-brief-history-of-squirt-gun-technology",
"title": "A Brief History of Squirt Gun Technology"
},
{
"url": "https://linux.slashdot.org/story/99/07/29/1839240/report-from-the-red-hat-road-show",
"title": "Report From the Red Hat Road Show"
},
{
"url": "https://news.slashdot.org/story/99/07/29/1648248/net-set-to-replace-jet-set-as-new-elite",
"title": "Net-Set to Replace Jet-Set as New Elite"
},
{
"url": "https://tech.slashdot.org/story/99/07/29/1546211/mozilla-news-from-the-front",
"title": "Mozilla: News from the front"
},
{
"url": "https://news.slashdot.org/story/99/07/29/1540200/borland-releases-old-turbo-c-turbo-pascal-for-free",
"title": "Borland Releases Old Turbo C, Turbo Pascal for Free"
},
{
"url": "https://linux.slashdot.org/story/99/07/29/1536251/windows-domination-may-end-next-year",
"title": "Windows Domination May End Next Year"
},
{
"url": "https://slashdot.org/story/99/07/29/1512245/government-backs-down-on-network-monitoring-plan",
"title": "Government Backs Down On Network Monitoring Plan?"
},
{
"url": "https://slashdot.org/story/99/07/29/1358238/lilly-industries-sues-five-anonymous-posters",
"title": "Lilly Industries Sues Five 'Anonymous' Posters"
},
{
"url": "https://news.slashdot.org/story/99/07/29/1346219/linux-based-stereo-components",
"title": "Linux Based Stereo Components"
},
{
"url": "https://linux.slashdot.org/story/99/07/29/1343259/e-trade-backs-down-lets-red-hat-ipo-folks-in",
"title": "E-Trade backs down, lets Red Hat IPO folks in"
},
{
"url": "https://news.slashdot.org/story/99/07/29/1336225/andrew-leonard-on-linuxworld-slashdot-and-more",
"title": "Andrew Leonard on LinuxWorld, Slashdot, and More"
},
{
"url": "https://slashdot.org/story/99/07/29/0755233/sgis-linux-server",
"title": "SGI's Linux Server"
},
{
"url": "https://news.slashdot.org/story/99/07/29/060209/neuromancer-the-movie",
"title": "Neuromancer: The Movie"
},
{
"url": "https://slashdot.org/story/99/07/28/2332249/here-come-the-quickies",
"title": "Here Come the Quickies"
},
{
"url": "https://hardware.slashdot.org/story/99/07/28/2112200/robotic-butler-available-for-800",
"title": "Robotic Butler available for $800"
},
{
"url": "https://slashdot.org/story/99/07/28/1821216/passing-porn-banning-the-bible",
"title": "Passing Porn, Banning the Bible"
},
{
"url": "https://science.slashdot.org/story/99/07/28/0219237/new-ideas-for-scientific-publishing-online",
"title": "New Ideas for Scientific Publishing Online"
},
{
"url": "https://linux.slashdot.org/story/99/07/28/1541252/barred-from-red-hat-ipo",
"title": "Barred from Red Hat IPO?"
},
{
"url": "https://news.slashdot.org/story/99/07/28/1438235/lucasfilms-suing-net-pirates",
"title": "LucasFilms suing 'net Pirates"
},
{
"url": "https://slashdot.org/story/99/07/28/1436208/deep-linking-troubles-continue",
"title": "Deep Linking Troubles Continue"
},
{
"url": "https://news.slashdot.org/story/99/07/27/205246/interview-ask-bruce-perens-about-open-source-licensing",
"title": "Interview: Ask Bruce Perens About Open Source Licensing"
},
{
"url": "https://slashdot.org/story/99/07/28/1349223/esr-says-microsoft-is-right-for-once",
"title": "ESR says Microsoft is right, for once"
},
{
"url": "https://news.slashdot.org/story/99/07/28/1330252/world-championships-in-robot-soccer",
"title": "World Championships in Robot Soccer"
},
{
"url": "https://slashdot.org/story/99/07/28/1317203/government-wants-to-do-massive-internet-monitoring",
"title": "Government Wants to do Massive Internet Monitoring"
},
{
"url": "https://slashdot.org/story/99/07/28/0533223/ibm-buying-mylex",
"title": "IBM Buying Mylex"
},
{
"url": "https://news.slashdot.org/story/99/07/28/0246235/townshend-to-complete-lifehouse",
"title": "Townshend to Complete \"Lifehouse\""
},
{
"url": "https://tech.slashdot.org/story/99/07/27/2228228/165-inch-lcd-for-notebook-pc",
"title": "16.5-inch LCD for Notebook PC"
},
{
"url": "https://news.slashdot.org/story/99/07/27/2035209/sourcexchange-goes-into-beta",
"title": "SourceXchange goes into beta"
},
{
"url": "https://slashdot.org/story/99/07/27/1754207/beaming-money",
"title": "Beaming Money"
},
{
"url": "https://linux.slashdot.org/story/99/07/27/1729211/red-hat-unveils-linux-e-commerce-server",
"title": "Red Hat Unveils Linux E-Commerce Server"
},
{
"url": "https://news.slashdot.org/story/99/07/27/1552237/lego-allowing-open-source-os",
"title": "Lego Allowing Open-Source OS"
},
{
"url": "https://slashdot.org/story/99/07/27/1616215/sun-dropping-netscape-application-server-linux-port",
"title": "Sun dropping Netscape Application Server Linux Port"
},
{
"url": "https://slashdot.org/story/99/07/27/1545205/pictures-of-the-new-amiga",
"title": "Pictures of the New Amiga"
},
{
"url": "https://news.slashdot.org/story/99/07/22/205225/feature-ticket-booth-tyranny-part-two",
"title": "Feature: Ticket Booth Tyranny (Part Two)"
},
{
"url": "https://hardware.slashdot.org/story/99/07/27/1257245/420-gigabyte-hard-drives",
"title": "420 Gigabyte Hard Drives"
},
{
"url": "https://news.slashdot.org/story/99/07/27/1218243/old-folks-can-code-too",
"title": "Old Folks Can Code, Too"
},
{
"url": "https://science.slashdot.org/story/99/07/27/1149224/nasa-faces-major-budget-cuts",
"title": "NASA Faces Major Budget Cuts"
},
{
"url": "https://slashdot.org/story/99/07/27/0724205/messaging-software-wars",
"title": "Messaging Software Wars"
},
{
"url": "https://slashdot.org/story/99/07/27/0637217/yellow-dog-for-rs6000",
"title": "Yellow Dog for RS/6000"
},
{
"url": "https://ask.slashdot.org/story/99/07/27/0350230/ask-slashdot-cyber-patrol-censorship",
"title": "Ask Slashdot: Cyber Patrol Censorship?"
},
{
"url": "https://slashdot.org/story/99/07/27/0140204/compaq-attempts-to-muscle-emachines-in-court",
"title": "Compaq Attempts to Muscle eMachines in Court"
},
{
"url": "https://slashdot.org/story/99/07/26/2314218/commerce-dept-orders-nsi-to-open-whois-database",
"title": "Commerce Dept. Orders NSI to Open \"Whois\" Database"
},
{
"url": "https://linux.slashdot.org/story/99/07/26/2131255/turbolinux-claims-to-be-number-one-os-in-japan",
"title": "TurboLinux Claims to be Number One OS in Japan"
},
{
"url": "https://slashdot.org/story/99/07/26/1745254/sun-may-buy-stardivision",
"title": "Sun May Buy StarDivision"
},
{
"url": "https://news.slashdot.org/story/99/07/26/1627249/inpriseborland-developers-conference-linux-nuggets",
"title": "Inprise/Borland Developers Conference Linux Nuggets"
},
{
"url": "https://linux.slashdot.org/story/99/07/26/162257/redhatcom-site-redesigned",
"title": "redhat.com Site Redesigned"
},
{
"url": "https://news.slashdot.org/story/99/07/26/1331258/interview-w-south-park-sysadmins",
"title": "Interview w/ South Park Sysadmins"
},
{
"url": "https://slashdot.org/story/99/07/22/173256/feature-ticket-booth-tyranny-part-one",
"title": "Feature: Ticket Booth Tyranny (Part One)"
},
{
"url": "https://news.slashdot.org/story/99/07/26/1336225/nyt-on-high-tech-unions",
"title": "NYT on High Tech Unions"
},
{
"url": "https://linux.slashdot.org/story/99/07/26/136226/interview-with-alan-cox",
"title": "Interview with Alan Cox"
},
{
"url": "https://tech.slashdot.org/story/99/07/26/1253245/adobe-ceo-on-open-source",
"title": "Adobe CEO on Open Source"
},
{
"url": "https://features.slashdot.org/story/99/07/26/072231/the-high-tech-sweatshop",
"title": "The High Tech Sweatshop"
},
{
"url": "https://news.slashdot.org/story/99/07/26/0310244/the-xmms-future-in-an-interview-with-dev",
"title": "The XMMS Future in an interview with Dev"
},
{
"url": "https://slashdot.org/story/99/07/26/0238235/field-programmable-gate-arrays-at-mit",
"title": "Field Programmable Gate Arrays at MIT"
},
{
"url": "https://ask.slashdot.org/story/99/07/26/0147209/ultra66dma-mode-4-in-linux",
"title": "ULTRA66/DMA mode 4 in Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/07/26/0144222/front-pull-bevel-chasis-w-extra-fan",
"title": "Front Pull Bevel Chasis w/ Extra Fan?"
},
{
"url": "https://ask.slashdot.org/story/99/07/26/0137202/dsl-line-security--what-do-i-need-to-know",
"title": "DSL Line Security--What Do I Need to know?"
},
{
"url": "https://linux.slashdot.org/story/99/07/26/0135241/ask-slashdot-ip-masquerading-drawbacks",
"title": "Ask Slashdot: IP Masquerading Drawbacks?"
},
{
"url": "https://apple.slashdot.org/story/99/07/25/1724230/steve-jobsnoah-wyle-at-mac-world",
"title": "Steve Jobs==Noah Wyle at Mac World"
},
{
"url": "https://slashdot.org/story/99/07/25/1741218/stallmantorvalds-story-definition-of-hacker",
"title": "Stallman/Torvalds Story, definition of 'Hacker'"
},
{
"url": "https://it.slashdot.org/story/99/07/25/0930229/distributednet-cracking-scheme-halted",
"title": "Distributed.net Cracking Scheme Halted"
},
{
"url": "https://tech.slashdot.org/story/99/07/25/1521226/new-transmeta-patent",
"title": "New Transmeta Patent"
},
{
"url": "https://slashdot.org/story/99/07/25/0915211/stan-lee-to-create-online-comic-strip",
"title": "Stan Lee To Create Online Comic Strip"
},
{
"url": "https://news.slashdot.org/story/99/07/25/099251/nyt-magazine-says-no-network-is-secure",
"title": "NYT Magazine Says No Network Is Secure"
},
{
"url": "https://ask.slashdot.org/story/99/07/25/0241228/multiple-soundcards-under-linux",
"title": "Multiple Soundcards Under Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/07/25/0222218/soundblaster-audiopci-64d-questions",
"title": "SoundBlaster AudioPCI 64D Questions"
},
{
"url": "https://ask.slashdot.org/story/99/07/25/0218252/native-signal-processing-for-linux",
"title": "Native Signal Processing for Linux"
},
{
"url": "https://ask.slashdot.org/story/99/07/25/0213212/how-can-you-block-spam",
"title": "How can you block SPAM?"
},
{
"url": "https://ask.slashdot.org/story/99/07/25/029235/ask-slashdot-significant-documents-of-the-internet",
"title": "Ask Slashdot: Significant Documents of the Internet"
},
{
"url": "https://slashdot.org/story/99/07/24/2358211/amiga-transmeta",
"title": "Amiga & Transmeta?"
},
{
"url": "https://linux.slashdot.org/story/99/07/24/1543237/suse-62-in-august",
"title": "SuSE 6.2 in August"
},
{
"url": "https://news.slashdot.org/story/99/07/24/1518238/pixar-tron-remake",
"title": "Pixar Tron Remake?"
},
{
"url": "https://slashdot.org/story/99/07/24/025200/fcc-considers-low-power-fm-licenses",
"title": "FCC considers low power FM licenses"
},
{
"url": "https://news.slashdot.org/story/99/07/24/0132204/the-puffin-group-sponsors-open-source-writers",
"title": "The Puffin Group Sponsors Open Source Writers"
},
{
"url": "https://news.slashdot.org/story/99/07/24/0213249/nsi-roughed-up-in-congressional-hearing",
"title": "NSI Roughed Up in Congressional Hearing"
},
{
"url": "https://slashdot.org/story/99/07/24/0124206/behlendorf-interview-in-developerworks",
"title": "Behlendorf Interview in developerWorks"
},
{
"url": "https://slashdot.org/story/99/07/24/0110215/microsoft-and-aol-fight-over-instant-messaging",
"title": "Microsoft and AOL Fight Over Instant Messaging"
},
{
"url": "https://ask.slashdot.org/story/99/07/23/2320214/burning-vcds-with-linux",
"title": "Burning VCDs With Linux?"
},
{
"url": "https://ask.slashdot.org/story/99/07/23/2311232/linux-and-glite",
"title": "Linux and G.lite"
},
{
"url": "https://hardware.slashdot.org/story/99/07/23/2247249/ask-slashdot-multiple-webcams-and-freebsd",
"title": "Ask Slashdot: Multiple Webcams and FreeBSD"
},
{
"url": "https://ask.slashdot.org/story/99/07/23/2223225/video-in-solutions-for-linux",
"title": "Video-In Solutions for Linux?"
},
{
"url": "https://news.slashdot.org/story/99/07/23/1722251/worlds-biggest-roller-coaster",
"title": "World's Biggest Roller Coaster"
},
{
"url": "https://slashdot.org/story/99/07/23/179221/sgis-linux-future",
"title": "SGIs Linux Future"
},
{
"url": "https://hardware.slashdot.org/story/99/07/23/1533203/lcd-monitor-for-your-eyes-only",
"title": "LCD Monitor For Your Eyes Only"
},
{
"url": "https://slashdot.org/story/99/07/23/1522213/cdc-charges-ms-w-distributing-cracker-software",
"title": "cDc Charges MS w/ Distributing Cracker Software"
},
{
"url": "https://games.slashdot.org/story/99/07/23/1413203/heretic-ii-for-linux",
"title": "Heretic II for Linux"
},
{
"url": "https://tech.slashdot.org/story/99/07/20/0011246/feature-technology-media-and-grief",
"title": "Feature: Technology, Media and Grief"
},
{
"url": "https://slashdot.org/story/99/07/23/1332252/the-anti-linux-ipo-howto",
"title": "The Anti-Linux-IPO Howto"
},
{
"url": "https://hardware.slashdot.org/story/99/07/23/134248/color-palm-to-be-released-this-year",
"title": "Color Palm to be released this year"
},
{
"url": "https://it.slashdot.org/story/99/07/23/1241240/uk-drafts-crypto-bill",
"title": "UK Drafts Crypto Bill"
},
{
"url": "https://slashdot.org/story/99/07/23/1212248/us-congress-debates-national-id-card",
"title": "US Congress Debates National ID Card"
},
{
"url": "https://slashdot.org/story/99/07/23/0118226/compaq-names-new-ceo",
"title": "Compaq Names New CEO"
},
{
"url": "https://slashdot.org/story/99/07/23/0121233/the-competition-for-developers",
"title": "The Competition for Developers"
},
{
"url": "https://hardware.slashdot.org/story/99/07/23/0117223/vintage-computers-on-the-new-york-times",
"title": "Vintage Computers on the New York Times"
},
{
"url": "https://slashdot.org/story/99/07/22/196251/amiga-announces-relationship-with-corel",
"title": "Amiga announces relationship with Corel"
},
{
"url": "https://linux.slashdot.org/story/99/07/22/1643216/linuxmandrakes-open-source-gui-partitioner",
"title": "Linux/Mandrake's Open Source GUI Partitioner"
},
{
"url": "https://slashdot.org/story/99/07/22/1643212/open-source-concerns-trojan-horses-in-the-code",
"title": "Open Source Concerns: Trojan Horses In the Code"
},
{
"url": "https://bsd.slashdot.org/story/99/07/22/1238239/bsd-the-nets-stealth-operating-system",
"title": "BSD: \"The Net's stealth operating system\""
},
{
"url": "https://news.slashdot.org/story/99/07/22/1448200/mp3com-goes-public-public-goes-crazy",
"title": "MP3.com goes public: Public goes Crazy"
},
{
"url": "https://it.slashdot.org/story/99/07/22/1426244/safe-rewritten-to-be-more-law-enforcement-friendly",
"title": "SAFE rewritten to be more law-enforcement friendly"
},
{
"url": "https://slashdot.org/story/99/07/22/136235/qnx-partnering-wphase-5-to-make-powerpc-computer",
"title": "QNX partnering w/Phase 5 to make PowerPC computer"
},
{
"url": "https://slashdot.org/story/99/07/22/1250252/nsi-to-require-immediate-payment-for-some",
"title": "NSI to require immediate payment for some"
},
{
"url": "https://tech.slashdot.org/story/99/07/22/1235243/netscape-out-iplanet-in",
"title": "Netscape Out, iPlanet In"
},
{
"url": "https://games.slashdot.org/story/99/07/22/0820213/game-consoles-expected-to-tromp-pcs",
"title": "Game Consoles Expected to Tromp PCs"
},
{
"url": "https://slashdot.org/story/99/07/22/0831249/aol-happily-releases-information-to-cops",
"title": "AOL Happily Releases Information to Cops"
},
{
"url": "https://news.slashdot.org/story/99/07/22/0558250/telstra-opening-network",
"title": "Telstra Opening Network"
},
{
"url": "https://games.slashdot.org/story/99/07/22/036207/westwood-linux-petition-for-cc-ii",
"title": "Westwood Linux Petition for C&C II"
},
{
"url": "https://ask.slashdot.org/story/99/07/22/0139252/ask-slashdot-is-the-united-states-postal-service-obsolete",
"title": "Ask Slashdot: Is the United States Postal Service Obsolete?"
},
{
"url": "https://developers.slashdot.org/story/99/07/21/231212/on-perl-56",
"title": "On Perl 5.6"
},
{
"url": "https://tech.slashdot.org/story/99/07/21/1754250/wal-mart-sells-home-spy-gear",
"title": "Wal-Mart Sells Home Spy Gear"
},
{
"url": "https://slashdot.org/story/99/07/21/1826201/sourcegear-acquires-cyclic",
"title": "SourceGear acquires Cyclic"
},
{
"url": "https://news.slashdot.org/story/99/07/21/1232253/ircams-jmax-released-under-gpl",
"title": "IRCAM's jMax released under GPL"
},
{
"url": "https://tech.slashdot.org/story/99/07/21/1615225/inexpensive-11megabit-wireless-lan",
"title": "Inexpensive 11megabit Wireless LAN"
},
{
"url": "https://apple.slashdot.org/story/99/07/21/1230238/new-powerbook-g3-the-ibook",
"title": "New PowerBook G3 & the iBook"
},
{
"url": "https://hardware.slashdot.org/story/99/07/21/1428208/mercury-capsule-recovered-after-38-years",
"title": "Mercury Capsule recovered after 38 years"
},
{
"url": "https://science.slashdot.org/story/99/07/21/1237220/cloning-of-extinct-huia-bird-approved",
"title": "Cloning of extinct Huia bird approved"
},
{
"url": "https://news.slashdot.org/story/99/07/21/1225236/geeks-in-space-take-two",
"title": "Geeks in Space, Take Two"
},
{
"url": "https://slashdot.org/story/99/07/21/0737248/nvidia-and-sgi-align",
"title": "NVIDIA and SGI Align"
},
{
"url": "https://games.slashdot.org/story/99/07/21/0328211/linux-q3test-107",
"title": "Linux Q3Test 1.07"
},
{
"url": "https://slashdot.org/story/99/07/21/028201/return-of-the-onion",
"title": "Return of The Onion"
},
{
"url": "https://linux.slashdot.org/story/99/07/20/2129218/red-hat-ipo-surprise",
"title": "Red Hat IPO Surprise"
},
{
"url": "https://news.slashdot.org/story/99/07/20/206259/the-ultimate-computer-chair",
"title": "The Ultimate Computer Chair"
},
{
"url": "https://linux.slashdot.org/story/99/07/20/0537250/calu-99-wrap-up",
"title": "CALU '99 Wrap Up"
},
{
"url": "https://slashdot.org/story/99/07/20/1933205/be-inc-ipo-launched",
"title": "Be Inc. IPO launched"
},
{
"url": "https://slashdot.org/story/99/07/20/199202/less-television-in-online-homes",
"title": "Less Television in Online Homes"
},
{
"url": "https://slashdot.org/story/99/07/20/1811235/mandrake-meeting-with-amiga",
"title": "Mandrake Meeting with Amiga"
},
{
"url": "https://news.slashdot.org/story/99/07/20/1643248/mtv-enters-digital-music-market",
"title": "MTV enters digital music market"
},
{
"url": "https://linux.slashdot.org/story/99/07/20/167256/oracle-8i-linux-port-on-the-scene",
"title": "Oracle 8i Linux port on the scene"
},
{
"url": "https://features.slashdot.org/story/99/07/16/2026237/feature-the-broadband-wars",
"title": "Feature: The Broadband Wars"
},
{
"url": "https://linux.slashdot.org/story/99/07/20/1340207/stormixyet-another-distribution",
"title": "Stormix:Yet Another Distribution"
},
{
"url": "https://slashdot.org/story/99/07/20/1254226/caldera-division-re-naming-targeting-set-top",
"title": "Caldera Division Re-naming & Targeting Set-Top"
},
{
"url": "https://linux.slashdot.org/story/99/07/20/1324239/red-hat-portal-picking-up-steam",
"title": "Red Hat Portal Picking up Steam"
},
{
"url": "https://slashdot.org/story/99/07/20/1258251/php40-beta-released",
"title": "PHP4.0 beta released"
},
{
"url": "https://slashdot.org/story/99/07/20/1244207/ibm-launches-linux-zone-on-developerworks",
"title": "IBM launches Linux Zone on DeveloperWorks"
},
{
"url": "https://tech.slashdot.org/story/99/07/20/0448249/xfree86-news",
"title": "XFree86 News"
},
{
"url": "https://ask.slashdot.org/story/99/07/20/0517229/sunos-to-linux-migration",
"title": "SunOS to Linux Migration?"
},
{
"url": "https://hardware.slashdot.org/story/99/07/19/2312220/palm-iiie-announced",
"title": "Palm IIIe Announced"
},
{
"url": "https://slashdot.org/story/99/07/19/2152257/quickie-fu",
"title": "Quickie Fu"
},
{
"url": "https://linux.slashdot.org/story/99/07/19/217203/red-hat-europe",
"title": "Red Hat Europe"
},
{
"url": "https://linux.slashdot.org/story/99/07/19/1855211/linux-one-quarter-of-the-server-market-by-2003",
"title": "Linux: One quarter of the server market by 2003"
},
{
"url": "https://linux.slashdot.org/story/99/07/19/1743255/red-hat-west-coast-division",
"title": "Red Hat West Coast Division?"
},
{
"url": "https://news.slashdot.org/story/99/07/19/155208/jupiter-report-tells-music-industry-to-use-mp3s",
"title": "Jupiter Report tells music industry to use MP3s"
},
{
"url": "https://hardware.slashdot.org/story/99/07/19/1625206/building-a-teraflop-donated-beowulf-cluster",
"title": "Building a Teraflop Donated Beowulf Cluster"
},
{
"url": "https://linux.slashdot.org/story/99/07/19/1459234/ca-releases-unicenter-for-linux",
"title": "CA Releases UniCenter for Linux"
},
{
"url": "https://features.slashdot.org/story/99/07/09/0335217/feature-the-net--boon-or-nightmare",
"title": "Feature: The Net- Boon or Nightmare?"
},
{
"url": "https://tech.slashdot.org/story/99/07/19/1324207/super-shielded-pc-cases",
"title": "Super Shielded PC Cases"
},
{
"url": "https://news.slashdot.org/story/99/07/19/1249213/forged-e-mails-from-linus",
"title": "Forged e-mails from Linus"
},
{
"url": "https://linux.slashdot.org/story/99/07/19/1318245/debian-laptops",
"title": "Debian Laptops"
},
{
"url": "https://it.slashdot.org/story/99/07/19/1242214/can-the-nsa-brute-force-rc6-probably",
"title": "Can the NSA brute force RC6? Probably."
},
{
"url": "https://science.slashdot.org/story/99/07/19/029202/jsetitracker-104b-is-now-available",
"title": "JSetiTracker 1.0.4b is now available"
},
{
"url": "https://linux.slashdot.org/story/99/07/19/0141241/linux-kernel-2210ac11-released",
"title": "Linux Kernel 2.2.10ac11 Released"
},
{
"url": "https://news.slashdot.org/story/99/07/18/1924254/stereo-component-for-digital-audio",
"title": "Stereo Component for Digital Audio"
},
{
"url": "https://ask.slashdot.org/story/99/07/18/1842252/motherboard-memory-limitations",
"title": "Motherboard Memory Limitations"
},
{
"url": "https://ask.slashdot.org/story/99/07/18/1751210/printfile-serving-to-macs-and-pcs",
"title": "Print/File Serving to Macs and PC's"
},
{
"url": "https://ask.slashdot.org/story/99/07/18/1723216/nt4-and-dial-up-connections",
"title": "NT4 and Dial-Up Connections"
},
{
"url": "https://ask.slashdot.org/story/99/07/18/1717237/hdtv-capable-video-cards",
"title": "HDTV capable Video Cards?"
},
{
"url": "https://science.slashdot.org/story/99/07/18/1415231/new-heavy-ion-collider-could-destroy-the-earth",
"title": "New Heavy Ion Collider could \"destroy the earth\""
},
{
"url": "https://ask.slashdot.org/story/99/07/18/1714250/ask-slashdot-open-source-calendaring",
"title": "Ask Slashdot: Open Source Calendaring"
},
{
"url": "https://news.slashdot.org/story/99/07/18/1552247/ny-times-article-on-mp3",
"title": "NY Times Article On MP3"
},
{
"url": "https://apple.slashdot.org/story/99/07/18/1421241/cringley-apple-using-open-source-to-get-microsoft",
"title": "Cringley: Apple using Open Source to get Microsoft"
},
{
"url": "https://it.slashdot.org/story/99/07/18/149206/russian-e2k-cracking-rc5",
"title": "Russian E2K cracking RC5"
},
{
"url": "https://tech.slashdot.org/story/99/07/17/2312225/nasas-tennis-ball-sized-robot-assistants",
"title": "NASAs tennis ball Sized Robot Assistants"
},
{
"url": "https://slashdot.org/story/99/07/17/2028212/intel-to-cut-pentium-iii-prices",
"title": "Intel to Cut Pentium III Prices"
},
{
"url": "https://news.slashdot.org/story/99/07/17/204202/update-to-rdist-license-discussion",
"title": "Update to RDist License Discussion"
},
{
"url": "https://linux.slashdot.org/story/99/07/17/1528223/redhats-solution-to-pseudo-free-software-problem",
"title": "RedHat's Solution to Pseudo-Free Software Problem."
},
{
"url": "https://news.slashdot.org/story/99/07/17/1510227/a-pretty-good-slashdot-parody",
"title": "A Pretty Good Slashdot Parody"
},
{
"url": "https://news.slashdot.org/story/99/07/17/1338210/icann-deep-in-debt",
"title": "ICANN Deep in Debt"
},
{
"url": "https://science.slashdot.org/story/99/07/17/1122203/mit-ai-acts-childish-on-purpose",
"title": "MIT AI Acts Childish on Purpose"
},
{
"url": "https://slashdot.org/story/99/07/17/0237204/in-silicon-valley-37kyear-may-mean-public-housing",
"title": "In Silicon Valley $37K/Year May Mean Public Housing"
},
{
"url": "https://slashdot.org/story/99/07/17/0242250/sgi-announces-port-of-iris-performer",
"title": "SGI announces port of IRIS Performer"
},
{
"url": "https://news.slashdot.org/story/99/07/16/2155259/the-folly-of-faking-fan-sites",
"title": "The Folly of Faking Fan Sites"
},
{
"url": "https://slashdot.org/story/99/07/16/1922218/amd-athlon-600-preview",
"title": "AMD Athlon 600 Preview"
},
{
"url": "https://hardware.slashdot.org/story/99/07/16/126206/national-semiconductor-unveils-their-pc-on-a-chip",
"title": "National Semiconductor unveils their PC-on-a-chip"
},
{
"url": "https://linux.slashdot.org/story/99/07/16/1513230/red-hat-ipo-update",
"title": "Red Hat IPO Update"
},
{
"url": "https://games.slashdot.org/story/99/07/16/1411207/kingpin-client-for-linux-available",
"title": "Kingpin client for Linux available"
},
{
"url": "https://news.slashdot.org/story/99/07/16/1316248/featurenews-in-the-slashdot-decade",
"title": "Feature:News in the Slashdot Decade"
},
{
"url": "https://science.slashdot.org/story/99/07/16/1225236/bulk-technology-might-produce-molecular-computers",
"title": "Bulk Technology Might Produce Molecular Computers"
},
{
"url": "https://slashdot.org/story/99/07/16/1011253/amiga-technology-brief",
"title": "Amiga Technology Brief"
},
{
"url": "https://slashdot.org/story/99/07/16/1157218/jini-and-the-sun-community-source-license-scsl",
"title": "Jini and the Sun Community Source License (SCSL)"
},
{
"url": "https://yro.slashdot.org/story/99/07/16/1025259/britain-tapped-communications",
"title": "Britain Tapped Communications"
},
{
"url": "https://tech.slashdot.org/story/99/07/16/0851222/mozilla-m8-released",
"title": "Mozilla M8 Released"
},
{
"url": "https://science.slashdot.org/story/99/07/16/0234234/nasas-x-37",
"title": "NASA's X-37"
},
{
"url": "https://slashdot.org/story/99/07/15/2312205/iana-deploying-ipv6",
"title": "IANA Deploying IPv6"
},
{
"url": "https://ask.slashdot.org/story/99/07/15/2359229/adsl-bandwidth-limiting",
"title": "ADSL Bandwidth Limiting?"
},
{
"url": "https://linux.slashdot.org/story/99/07/15/2353253/ask-slashdot-heterogeneous-network-backups-wlinux",
"title": "Ask Slashdot: Heterogeneous Network Backups w/Linux?"
},
{
"url": "https://slashdot.org/story/99/07/15/1823224/internet-payphones-launched",
"title": "Internet Payphones launched"
},
{
"url": "https://hardware.slashdot.org/story/99/07/15/1821227/wireless-wearable-linux-media-computer",
"title": "Wireless Wearable Linux Media Computer"
},
{
"url": "https://science.slashdot.org/story/99/07/15/1712225/planned-constuction-of-orbiting-microwave-power-station",
"title": "Planned Constuction of Orbiting Microwave Power Station"
},
{
"url": "https://slashdot.org/story/99/07/15/160224/us-capitol-hill-on-the-internet",
"title": "US' Capitol Hill on the Internet"
},
{
"url": "https://news.slashdot.org/story/99/07/15/168235/i-was-a-teenage-hacker",
"title": "I Was a Teenage Hacker"
},
{
"url": "https://news.slashdot.org/story/99/07/15/1325256/premiere-episode-of-slashdot-radiogeeks-in-space",
"title": "Premiere Episode of Slashdot Radio:Geeks in Space"
},
{
"url": "https://features.slashdot.org/story/99/07/14/162218/the-end-of-the-amazon-era",
"title": "The End Of The Amazon Era"
},
{
"url": "https://news.slashdot.org/story/99/07/15/1255241/gd-graphics-library-withdrawn",
"title": "GD Graphics Library withdrawn"
},
{
"url": "https://slashdot.org/story/99/07/15/1253242/amd-takes-a-big-hit-idt-exits-x86-clone-biz",
"title": "AMD takes a big hit & IDT exits x86 clone biz"
},
{
"url": "https://linux.slashdot.org/story/99/07/15/0533246/linux-dvd-one-step-closer",
"title": "Linux DVD One Step Closer"
},
{
"url": "https://news.slashdot.org/story/99/07/15/1146200/virtual-models-come-to-life",
"title": "Virtual Models Come To Life"
},
{
"url": "https://games.slashdot.org/story/99/07/15/076218/loki-games-for-ppc",
"title": "Loki Games for PPC"
},
{
"url": "https://hardware.slashdot.org/story/99/07/15/0156259/linux-hardware-databases-merge",
"title": "Linux Hardware Databases Merge"
},
{
"url": "https://news.slashdot.org/story/99/07/15/015257/not-all-wrist-pain-is-carpal-tunnel-syndrome",
"title": "Not All Wrist Pain is Carpal Tunnel Syndrome"
},
{
"url": "https://ask.slashdot.org/story/99/07/14/1847207/ask-slashdot-be-is-for-beowulf",
"title": "Ask Slashdot: \"Be\" is for Beowulf?"
},
{
"url": "https://news.slashdot.org/story/99/07/14/1846204/audiohighway-awarded-patent-on-digital-audio-players",
"title": "Audiohighway awarded patent on digital audio players"
},
{
"url": "https://ask.slashdot.org/story/99/07/14/1841225/battery-status-of-wireless-keyboardmice",
"title": "Battery Status of Wireless Keyboard/Mice?"
},
{
"url": "https://ask.slashdot.org/story/99/07/14/1823221/linux-boxen-with-small-footprint",
"title": "Linux Boxen with Small Footprint?"
},
{
"url": "https://ask.slashdot.org/story/99/07/14/1817231/sound-cards-with-optical-output",
"title": "Sound Cards with Optical Output?"
},
{
"url": "https://ask.slashdot.org/story/99/07/14/1813217/slow-linux-22x-telnet",
"title": "Slow Linux 2.2.x Telnet?"
},
{
"url": "https://tech.slashdot.org/story/99/07/14/1749200/wireless-10-gigabitssec-data-transfer",
"title": "Wireless 10 gigabits/sec data transfer"
},
{
"url": "https://slashdot.org/story/99/07/14/1422215/egghead-and-onsale-merge",
"title": "Egghead and Onsale Merge"
},
{
"url": "https://linux.slashdot.org/story/99/07/14/1340225/madddog-on-linux-v-nt-benchmarking",
"title": "madddog on Linux v NT Benchmarking"
},
{
"url": "https://slashdot.org/story/99/07/14/1433253/merced-design-completed",
"title": "Merced Design Completed"
},
{
"url": "https://news.slashdot.org/story/99/07/13/1943258/reviewnetwork-application-frameworks",
"title": "Review:Network Application Frameworks"
},
{
"url": "https://tech.slashdot.org/story/99/07/12/1742212/feature-where-is-integration-going",
"title": "Feature: Where is Integration Going?"
},
{
"url": "https://linux.slashdot.org/story/99/07/14/1332248/red-hat-rivalries-at-salon",
"title": "Red Hat Rivalries at Salon"
},
{
"url": "https://slashdot.org/story/99/07/14/1320256/dirty-domain-names-allowed-again",
"title": "Dirty Domain Names Allowed Again"
},
{
"url": "https://linux.slashdot.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment