ent<br/>Video Demonstration

(*click the video above to see the conce
about 30 years ago my colleague said that all his friends in the US were
complaining that their sons wanted to be patent, copyright attorneys
mick
On Tue, 12 Nov 2024 at 21:06, wrote:
> Steven Peckham wrote:
> > >I would really want to address this in detail after the Copyright
> > >goes throug
Steven Peckham wrote:
> >I would really want to address this in detail after the Copyright
> >goes through.
> >No. After the Copyright is in effect, I will be happy to provide the
> >code under the GPL3 license restrictions.
It doesn't sound like you understand copyright and licensing very well.
On Monday, November 11, 2024 at 11:53:07 PM EST, Timothy M Butterworth
wrote:
On Mon, Nov 11, 2024 at 6:42 PM Steven Peckham wrote:
Hi,
I retired and decided to learn some computer languages. I wrote an Adventure
game in C++ (mostly just C using SDL to handle the screen and sounds) in
On Mon, Nov 11, 2024 at 6:42 PM Steven Peckham wrote:
> Hi,
> I retired and decided to learn some computer languages. I wrote an
> Adventure game in C++ (mostly just C using SDL to handle the screen and
> sounds) in order to learn C. I expect to debug it by January then copyright
&
Hi,
Steven Peckham wrote:
> I wrote an Adventure game [...] I expect to [...] give it a GPL3
> license.
This will make it legally suitable for Debian GNU/Linux distro.
> I would like to figure that out, and if so, offer it to one or more
> distribution(s).
Debian has a proced
Hi,
I retired and decided to learn some computer languages. I wrote an Adventure
game in C++ (mostly just C using SDL to handle the screen and sounds) in order
to learn C. I expect to debug it by January then copyright it and give it a
GPL3 license. I am not sure if anyone would like to play it
> :https://web.archive.org/web/20021211104811/http://www.deadearth.com/index.pl/legal
> * License : License GNU Free Documentation License v1.1 or any later
> version, no invariant sections or front and back text
> Programming Lang: unknown
> Description : tabletop rpg g
Joshua Allen wrote:
> deadEarth is a free and open TTRPG game for use in real
> life or online
Never heard of but sounds interesting, as technology, and
maybe even as a game.
Is it TT as in
https://en.wikipedia.org/wiki/Tabletop_Simulator
?
--
underground experts united
ps://web.archive.org/web/20021211104811/http://www.deadearth.com/index.pl/legal
> * License : License GNU Free Documentation License v1.1 or any later
> version, no invariant sections or front and back text
> Programming Lang: unknown
> Description : tabletop rpg game
&
License v1.1 or any later
version, no invariant sections or front and back text
Programming Lang: unknown
Description : tabletop rpg game
- deadEarth is a free and open TTRPG game for use in real life or online
- I am aware of other TTRPGs but this looks to be the oldest one I could find
On Wed, 21 Dec 2022 at 04:18, Lee wrote:
> On 12/20/22, David wrote:
> > $ echo -e '100:CD001\nXXX\n200:CD001' | awk 'BEGIN { FS=":" ; done=0 }
> > /CD001/ && done==0 { print $1 - 50 ; done=1 }'
> > 50
>
> You can do it without flags:
>
> $ echo -e '100:CD001\nXXX\n200:CD001' | awk -F: '/CD001/
Hi,
i meanwhile had a chance to inspect the image file and found that it
shows a repeating pattern of bytes with value 255 every 2352 bytes.
This corresponds to the size of medium level CD sectors, as can be obtained
by SCSI command "READ CD" (e.g. via Linux ioctl CDROMREADRAW).
CD-DA audio secto
On 12/20/22, David wrote:
> On Tue, 20 Dec 2022 at 22:04, David wrote:
>> On Tue, 20 Dec 2022 at 22:02, David wrote:
>
>> > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ &&
>> > NR==1 { print $1 - 50 }'
>> > 50
>>
>> Oops, my mistake, that's not the solution. Give me another m
> Not that that is always important. But I just commented today
> because so often 'awk' is ignored as if its only capability is 'print $1'
> when in fact it is actually very powerful but neglected.
FWIW, `sed` can also do that job. Tho the subtraction part would take
a lot more work (`sed` does
On Tue, 20 Dec 2022 at 22:04, David wrote:
> On Tue, 20 Dec 2022 at 22:02, David wrote:
> > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ &&
> > NR==1 { print $1 - 50 }'
> > 50
>
> Oops, my mistake, that's not the solution. Give me another minute and I
> will post a better one
Hi,
The Wanderer wrote:
> With the '-o' option, grep prints only the parts of the line that were
> matched - but the plural here is very relevant. If that guess is
> correct, then the "line" in question has *four* occurrences, so grep
> prints them all - each on a separate line of output.
The man
Hi,
Yvan Masson wrote:
> Kernel logs say "isofs_fill_super: get root inode failed".
So there is more stuff inserted between the volume descriptor and the
root directory of the ISO.
(The descriptor contains a minimal directory record which points to
the content of the root directory. All attribut
On Tue, 20 Dec 2022 at 22:02, David wrote:
> $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ &&
> NR==1 { print $1 - 50 }'
> 50
Oops, my mistake, that's not the solution. Give me another minute and I
will post a better one one.
On Tue, 20 Dec 2022 at 21:53, The Wanderer wrote:
> On 2022-12-20 at 05:37, David wrote:
> > On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote:
> >> On 2022-12-20 at 02:51, Thomas Schmitt wrote:
> >>> This contradicts the promises of man grep about option -m.
> >> It does seem to, at least at a
On 2022-12-20 at 05:37, David wrote:
> On Tue, 20 Dec 2022 at 21:10, The Wanderer
> wrote:
>
>> On 2022-12-20 at 02:51, Thomas Schmitt wrote:
>>> This contradicts the promises of man grep about option -m.
>>
>> It does seem to, at least at a glance - but I think I've figured
>> out what's going
On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote:
> On 2022-12-20 at 02:51, Thomas Schmitt wrote:
> >>> offst=$( expr \
> >>> $( grep -a -o -b -m 1 CD001 cdimage.iso \
> >>> | sed -e 's/:/ /' \
> >>> | awk '{ print $1 }' ) - 32769 )
> >
> > The Wande
On 2022-12-20 at 02:51, Thomas Schmitt wrote:
> Hi,
>
> i wrote:
>>> To obtain the offset of the first occurence of "CD001", do
>>>
>>> offst=$( expr \
>>> $( grep -a -o -b -m 1 CD001 cdimage.iso \
>>> | sed -e 's/:/ /' \
>>> | awk '{ print $1 }' )
ot inode failed".
I really appreciate the help on this very specific and technical issue,
but I am not sure it is worth the effort. As I said, it can be mounted
with dosbox.
And indeed, the game is the french version of "The Magic School Bus
Explores the Solar System". For those in
Hi,
i wrote:
> > To obtain the offset of the first occurence of "CD001", do
> >
> > offst=$( expr \
> > $( grep -a -o -b -m 1 CD001 cdimage.iso \
> > | sed -e 's/:/ /' \
> > | awk '{ print $1 }' ) - 32769 )
The Wanderer wrote:
> Cutting down the comm
On 2022-12-19 at 16:07, Thomas Schmitt wrote:
> Hi,
>
> Yvan Masson wrote:
>> I am really not at ease using tools like hexdump,
>
> I pondered a bit more. If it's an ISO filesystem wrapped into some header
> and maybe a footer, then mount option -o offset= could help.
>
> To obtain the offset o
uot;CD001" if offset is 0.)
Then use the resulting number with the mount command
mount -t iso9660 -o offset="$offst" cdimage.iso /mnt
It might be that you get errors when mounting or when accessing the files
in the mounted image. Check your kernel logs even if all looks good.
---
(
Le 19/12/2022 à 16:34, Thomas Schmitt a écrit :
Hi,
i wrote:
dd if=cdimage.iso bs=1 count=64 | od -t c
Yvan Masson wrote:
000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001
020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0
This does not give m
Hi,
i wrote:
> >dd if=cdimage.iso bs=1 count=64 | od -t c
Yvan Masson wrote:
> 000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001
> 020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0
This does not give me ideas.
> >strings cdimage.iso | head -1
Le 19/12/2022 à 15:25, Kamil Jońca a écrit :
Yvan Masson writes:
Hi list,
I have a CD image of an old Win 95 game. I can mount it from dosbox
with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but
could not mount it with Debian:
$ file cdimage.iso
cdimage.iso: data
$ sudo mount
Yvan Masson writes:
> Hi list,
>
> I have a CD image of an old Win 95 game. I can mount it from dosbox
> with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but
> could not mount it with Debian:
>
> $ file cdimage.iso
> cdimage.iso: data
>
> $ sudo
Hi Thomas,
Le 19/12/2022 à 13:28, Thomas Schmitt a écrit :
Hi,
Yvan Masson wrote:
I have a CD image of an old Win 95 game. [...]
$ file cdimage.iso
cdimage.iso: data
So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced.
(Does the image file perhaps begin by "RIFF...
Hi,
Yvan Masson wrote:
> I have a CD image of an old Win 95 game. [...]
> $ file cdimage.iso
> cdimage.iso: data
So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced.
(Does the image file perhaps begin by "RIFFCDXA" ?)
What do you get from the follow
Hi list,
I have a CD image of an old Win 95 game. I can mount it from dosbox with
the `imgmount` command (`imgmount D cdimage.iso -t iso`), but could not
mount it with Debian:
$ file cdimage.iso
cdimage.iso: data
$ sudo mount cdimage.iso /mnt -o loop
mount: /mnt/sshfs: wrong fs type, bad
everyone else. So I'll try a fresh
install from netinst; that's NETinst. Keep up.
> Let me try and help narrow down some of the scope of what you're asking and
> then see if we can help you on the debian-user list. Maybe you could:
>
> Pick one machine that you'
>
> I'm not sure what protocol would be running over the USB2 interface - maybe
> PPTP - equivalent to some of the dial-up protocols.
>
A small note: PPTP works on top of IP, it is a VPN protocol.
It encapsulates PPP protocol (which I believe you were talking about).
PPP can run IP over point-to-
figured "my way".
> Second, it makes all installation logs conveniently available.
>
> >
> > This is a game of twenty questions
> >
> > What's this machine going to be FOR?
> >
> > 1. What's the end goal for that machine? What do you want to
roves I can run Debian configured "my way".
Second, it makes all installation logs conveniently available.
This is a game of twenty questions
What's this machine going to be FOR?
1. What's the end goal for that machine? What do you want to use it for?
The immediate goal is di
On 03/06/2021 05:46 AM, Andrew M.A. Cater wrote:
Hi Richard,
Hi yourself.
Just how did you know I'd just finished my first cup of coffee?
as one well past 'three score and ten' it's decaf :{
Looking at the threads from you over the last year+: I think I see a common
pattern.
Yep. Been tr
On Sat, 6 Mar 2021 at 22:46, Andrew M.A. Cater wrote:
> Looking at the threads from you over the last year+:
> I think I see a common pattern.
This has been going on since 2015 or so.
> Given that we can't actually sit by your side to do this: answers to some of
> these in order may help us fig
that references to them get confusing.
Let me try and help narrow down some of the scope of what you're asking and
then see if we can help you on the debian-user list. Maybe you could:
Pick one machine that you're wanting to install Debian on. [Just Debian,
for the moment].
On 5/9/2019 12:34 AM, David Wright wrote:
On Wed 08 May 2019 at 14:08:03 (+0800), KHMan wrote:
On Tue 07 May 2019 at 10:12:10 (+1000), David wrote:
On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote:
On 06.05.19 09:03, Greg Wooledge wrote:
On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Sme
On Wed 08 May 2019 at 14:08:03 (+0800), KHMan wrote:
> > On Tue 07 May 2019 at 10:12:10 (+1000), David wrote:
> > > On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote:
> > > > On 06.05.19 09:03, Greg Wooledge wrote:
> > > > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote:
> [sn
On Tue 07 May 2019 at 10:12:10 (+1000), David wrote:
On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote:
> On 06.05.19 09:03, Greg Wooledge wrote:
> > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote:
[snipped all]
Hi Erik
Maybe you would enjoy answering this question then?
h
On Tue 07 May 2019 at 10:12:10 (+1000), David wrote:
> On Mon, 6 May 2019 at 23:53, Erik Christiansen
> wrote:
> > On 06.05.19 09:03, Greg Wooledge wrote:
> > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote:
> > > > Quoting Erik Christiansen (2019-05-04 08:43:53)
>
> > > > >
Program hack core dumps when you restore a saved game and then enter 'i'
to see Inventory. The following patch to hack.o_init.c fixes the
problem. (Sorry if cut and paste changed tabs to spaces...) I am
running Ubuntu 17.10, but don't think platform matters.
*** hack.o_ini
On 2018-03-21 at 12:04, Josh W. wrote:
> I have a x86_64 archetecture on my Debian Stretch system... I am trying to
> play a i386 pc game but when i try to install wine32 in the terminal i get
> the following message.
>
> josh@debian:/var/lib/dpkg$ sudo apt-get install wine32
&g
I have a x86_64 archetecture on my Debian Stretch system... I am trying to
play a i386 pc game but when i try to install wine32 in the terminal i get
the following message.
josh@debian:/var/lib/dpkg$ sudo apt-get install wine32
Reading package lists... Done
Building dependency tree
Reading state
On 04/12/2015 10:33 PM, Ric Moore wrote:
On 04/11/2015 04:31 PM, Reco wrote:
Hi.
On Sat, 11 Apr 2015 16:00:11 -0400
Ric Moore wrote:
On 04/11/2015 03:05 PM, Reco wrote:
dpkg-reconfigure -plow keyboard-configuration
ric@iam:~$ sudo su -
[sudo] password for ric:
root@iam:~# dpkg-reconfigu
On Sun, Apr 12, 2015 at 10:39:31PM -0400, Ric Moore wrote:
On 04/11/2015 04:31 PM, Reco wrote:
> Hi.
>
>On Sat, 11 Apr 2015 16:00:11 -0400
>Ric Moore wrote:
>
>>On 04/11/2015 03:05 PM, Reco wrote:
>>>dpkg-reconfigure -plow keyboard-configuration
>>
>>ric@iam:~$ sudo su -
>>[sudo] password for
Hi.
On Sat, 11 Apr 2015 16:00:11 -0400
Ric Moore wrote:
> On 04/11/2015 03:05 PM, Reco wrote:
> > dpkg-reconfigure -plow keyboard-configuration
>
> ric@iam:~$ sudo su -
> [sudo] password for ric:
> root@iam:~# dpkg-reconfigure -plow keyboard-configuration
> update-rc.d: warning: start and stop
On 04/11/2015 03:05 PM, Reco wrote:
dpkg-reconfigure -plow keyboard-configuration
ric@iam:~$ sudo su -
[sudo] password for ric:
root@iam:~# dpkg-reconfigure -plow keyboard-configuration
update-rc.d: warning: start and stop actions are no longer supported;
falling back to defaults
update-rc.d:
* Kevin O'Gorman [2014-12-29 14:58 -0800]:
> I have an image of the old Windows 98 Entertainment Pack floppy. I'd like
> to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's
> list of applications or games, and I'm completely new to trying this.
>
> I could use help, advice
On Mon, Dec 29, 2014 at 3:55 PM, Kevin O'Gorman wrote:
>
>
> On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis wrote:
>
>> On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote:
>> > I have an image of the old Windows 98 Entertainment Pack floppy. I'd
>> like
>> > to run one of the game
On 12/29/2014 07:04 PM, Doug wrote:
On 12/29/2014 06:55 PM, Kevin O'Gorman wrote:
On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis mailto:fa...@ariis.it>> wrote:
On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote:
> I have an image of the old Windows 98 Entertainment Pack
On 12/29/2014 06:55 PM, Kevin O'Gorman wrote:
On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis mailto:fa...@ariis.it>> wrote:
On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote:
> I have an image of the old Windows 98 Entertainment Pack floppy. I'd like
> to run one of
On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis wrote:
> On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote:
> > I have an image of the old Windows 98 Entertainment Pack floppy. I'd
> like
> > to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's
> > list of appl
On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote:
> I have an image of the old Windows 98 Entertainment Pack floppy. I'd like
> to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's
> list of applications or games, and I'm completely new to trying this.
I remembe
I have an image of the old Windows 98 Entertainment Pack floppy. I'd like
to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's
list of applications or games, and I'm completely new to trying this.
I could use help, advice, warnings or pointers to a better place to get
help.
Hi,
How to play this game?
Thanks,
Markos
On 26-03-2014 13:35, Hörmetjan Yiltiz wrote:
Hi,
I like `xonix' quite a lot. This game is so fun!
But I prefer to play it from the console, rather than in an X window.
The game originally written without X11 support. Here is man page
xon
Hi,
I like `xonix' quite a lot. This game is so fun!
But I prefer to play it from the console, rather than in an X window. The
game originally written without X11 support. Here is man page xonix(6x):
The original xonix game has been seen somewhere on an old PC/XT clone.
This
od to be a part of something!
Thanks for the tip.
On Wed, Jul 10, 2013 at 7:19 PM, Karl E. Jorgensen
wrote:
> Hi
>
> On Wed, Jul 10, 2013 at 06:25:24AM +0100, John Tate wrote:
>> An update for steam has come out and now I can't run my favourite game TF2.
>>
>>
Hi
On Wed, Jul 10, 2013 at 06:25:24AM +0100, John Tate wrote:
> An update for steam has come out and now I can't run my favourite game TF2.
>
> /bin/sh: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not
> found (required by
> /home/john/.loca
An update for steam has come out and now I can't run my favourite game TF2.
/bin/sh: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not
found (required by
/home/john/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so)
It's because it is written for Ubuntu basically, I
On Wed, 16 May 2012 16:35:00 -0400, Patrick Wiseman wrote:
> It used to be one could edit klondike.scm, set redeal to -1, and so have
> infinite redeals. But klondike.scm no longer exists after a recent
> upgrade. Is there another way to get infinite redeals?
Mmm, yes, it could be an upstream cha
It used to be one could edit klondike.scm, set redeal to -1, and so
have infinite redeals. But klondike.scm no longer exists after a
recent upgrade. Is there another way to get infinite redeals?
Thanks
Patrick
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "
Ralf Mardorf wrote:
P.S. Be sure to give the kids their own accounts, because they will
drag panels all over the screen, add countless "Untitled Folder"s to
the desktop, etc. My kids also liked the idea of having a secret
password to log in. I used our last name, so they could practice
spelli
for beginners.
> >
> > childsplay -- This has less games than gcompris, but it's perhaps a
> > little less overwhelming. It's big drawback is (last time I used it),
> > you need to read in order to quit the game. Gcompris lets you quit
> > "visually
nd
keyboard" section which builds the basic skills of moving the mouse,
clicking, dragging, using the keyboard, etc. It's great for beginners.
childsplay -- This has less games than gcompris, but it's perhaps a
little less overwhelming. It's big drawback is (last time I used it),
T o n g wrote:
Hi,
Do you have any *first hand experiences* of games available in Debian
that toddlers of 2 to 4 can enjoy?
while not exactly a game, my daughter enjoyed playing with TuxPaint.
there are plenty of stamps, colors, and sounds that kept her entertained
while getting her used
T o n g, my two children learnt with gcompris, starting when they were two
years old.
Little one, 3 years old now, realy likes it on linux and windows.
Pablo Sánchez
Hi,
Do you have any *first hand experiences* of games available in Debian
that toddlers of 2 to 4 can enjoy?
Or, a bit OT, yo
On 04/07/11 21:51, T o n g wrote:
Hi,
Do you have any *first hand experiences* of games available in Debian
that toddlers of 2 to 4 can enjoy?
Or, a bit OT, your *first hand experiences* of online games for toddlers
please?
I found my child extremely slow in picking up the idea of the games --
y
initial prods, which I kept very low key.
It was "Would you like to play a game on my computer?" not "Come on, time for
the computer."
HTH - rather than bores you ;-) -
Lisi
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of &
On Tue, Nov 2, 2010 at 05:12, Alex PADOLY wrote:
>
> Hi,
>
> Di you know a game online that I can play with firefox on Linux.
> Regards.
games.AdultSwim.com (may be mildly NSFW, but no, it isn't a porn site,
it is Cartoon Network's late night division)
popcap.com (comme
On Tue November 2 2010 05:12:41 am Alex PADOLY wrote:
> Di you know a game online that I can play with firefox on Linux.
> Regards.
I like quakelive.com. I haven't run it in a while but it is much like running
quake III.. one of many.. :)
--
To UNSUBSCRIBE, email to debia
On Tue, 02 Nov 2010 13:12:41 +0100, Alex PADOLY wrote:
> Di you know a game online that I can play with firefox on Linux.
> Regards.
http://en.lmgtfy.com/?q=linux+online+games
:-P
Greetings,
--
Camaleón
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subj
Hi,
Di you know a game online that I can play with firefox on Linux.
Regards.
Alex
Une messagerie gratuite, garantie à vie et des services en plus, ça vous tente ?
Je crée ma boîte mail www.laposte.net
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of
rectsfight2.tar.gz
Description: GNU Zip compressed data
Tzafrir Cohen wrote:
On Wed, Jun 17, 2009 at 08:05:20AM +0100, AG wrote:
What is very strange is that the problems are related to playing the
game on this machine. My previous machine played it just fine, and it
isn't the version either as far as I can tell, because I remove
On Wed, Jun 17, 2009 at 08:05:20AM +0100, AG wrote:
> What is very strange is that the problems are related to playing the
> game on this machine. My previous machine played it just fine, and it
> isn't the version either as far as I can tell, because I removed the
> Sq
ainer.
Cheers,
Eric
Yeah - looked at doing that. Not much chance though. The SourceForge
site lists last activity 2003 or so. Too bad - it was a fun game.
Installed fine on my old machine but not on this.
Even if there's no upstream activity, the bug could be fi
has an active maintainer.
>>
>> Cheers,
>>
>>
> Eric
>
> Yeah - looked at doing that. Not much chance though. The SourceForge
> site lists last activity 2003 or so. Too bad - it was a fun game.
> Installed fine on my old machine but not on this.
Even
ose of you who play the
game may appreciate that selling several hundred items 1-by-1 is both
tedious and a real drag to playing the game.
I cannot lay my hands on the config file either, so cannot seem to
change it from there if that is even an option. Any suggestions
please?
time to be sold. Those of you who play the
>> game may appreciate that selling several hundred items 1-by-1 is both
>> tedious and a real drag to playing the game.
>>
>> I cannot lay my hands on the config file either, so cannot seem to
>> change it from there if t
AG wrote:
Hi
When playing the GTK version of DopeWars in Squeeze, when one goes to
sell one's purchases, the option to sell all at once doesn't work - it
only allows 1 item at a time to be sold. Those of you who play the
game may appreciate that selling several hundred items 1-by
Hi
When playing the GTK version of DopeWars in Squeeze, when one goes to
sell one's purchases, the option to sell all at once doesn't work - it
only allows 1 item at a time to be sold. Those of you who play the game
may appreciate that selling several hundred items 1-by-1 is bo
Hashimoto wrote:
Hi,
I just installed the game tremulous (aptitude install tremulous) but I
can't play it. When I run "tremulous" the game opens but there's no
server available on the list. I click on "refresh" but no servers
shows up.
Does anyone here play it
# apt-cache search tremulous
tremulous - Aliens vs Humans, team based FPS game with elements of an RTS
tremulous-doc - Tremulous documentation
tremulous-server - Tremulous server
tremulous-data - Tremulous datas
Install the server and config it for local use only?
--
() ascii ribbon campaign
Hi,
I just installed the game tremulous (aptitude install tremulous) but I
can't play it. When I run "tremulous" the game opens but there's no
server available on the list. I click on "refresh" but no servers shows
up.
Does anyone here play it ?
Any idea ?
Thanks
avorite)
tumiki-fighters
first person shooters:
prboom (doom engine)
urbanterror (not a Debian package, http://urbanterror.net/)
nexuiz (Quake-like deathmatch game)
tremulous
puzzle:
worldofgoo (not free, $20 purchase; demo is available online though)
frozen-bubble
--
htt
I have installed freedroid
I haven't figure out how to play it.
On Wed, Apr 1, 2009 at 2:56 AM, Juha Tuuna wrote:
> Freedroid is fun. Of course you can install Dosbox and play old DOS games.
>
> --
> Juha Tuuna
>
>
> --
> To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
> with a subj
Freedroid is fun. Of course you can install Dosbox and play old DOS games.
--
Juha Tuuna
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
I use twm :)
On Wed, Apr 1, 2009 at 12:20 AM, Ron Johnson wrote:
> On 2009-03-31 20:38, Long Wind wrote:
>>
>> I like simple action games
>> Below are the kind of games I like:
>> lbreakout2
>> tetris
>> wolf3d for DOS from 3drealms
>> raptor for DOS from 3drealms
>
> What DE/WM do you use?
>
> -
On 2009-03-31 20:38, Long Wind wrote:
I like simple action games
Below are the kind of games I like:
lbreakout2
tetris
wolf3d for DOS from 3drealms
raptor for DOS from 3drealms
What DE/WM do you use?
--
Scooty Puff, Sr
The Doom-Bringer
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.de
Long Wind writes:
> I like simple action games
> Below are the kind of games I like:
> lbreakout2
> tetris
> wolf3d for DOS from 3drealms
> raptor for DOS from 3drealms
Frozen Bubble is good fun. So is rafkill.
- Michael
--
mouse, n: A device for pointing at the xterm in which you want to typ
I like simple action games
Below are the kind of games I like:
lbreakout2
tetris
wolf3d for DOS from 3drealms
raptor for DOS from 3drealms
--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
The Debian menu entry for eboard should be in Games/Board.
Daniel
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
On Sun, Oct 07, 2007 at 01:30:45PM +, Oscar Corte wrote:
>
> Hello:
>
> I used Synaptic Package Manager to install ?eboard? (described a A Graphical
> Chess program).
>
> The installation finished successfully but I can't find any option menu to
> launch it. Could somebody give me any hint
On Sun, 7 Oct 2007 13:30:45 +
Oscar Corte <[EMAIL PROTECTED]> wrote:
>
> Hello:
>
> I used Synaptic Package Manager to install “eboard” (described a A Graphical
> Chess program).
>
> The installation finished successfully but I can't find any option menu to
> launch it. Could somebody giv
Hello:
I used Synaptic Package Manager to install “eboard” (described a A Graphical
Chess program).
The installation finished successfully but I can't find any option menu to
launch it. Could somebody give me any hints in order to start the program?
Thanks a lot in advance and regards
___
1 - 100 of 209 matches
Mail list logo