On line 126 and 128 there is a %12s variable in the text.dat file. what is this for?
On line 126 and 128 there is a %12s variable in the text.dat file.
what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
Re: %12s
By: Digital Man to The Millionaire on Sat Jul 20 2019 03:08 am
On line 126 and 128 there is a %12s variable in the text.dat file.
what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
There are other % specifiers on that line too. I wonder if he was asking what specifically that %12s is for (i.e., what gets replaced for that one).
Re: %12s
By: The Millionaire to Digital Man on Fri Jul 19 2019 03:54 pm
On line 126 and 128 there is a %12s variable in the text.dat file. what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
digital man
This Is Spinal Tap quote #13:
Nigel Tufnel: You can't really dust for vomit.
Norco, CA WX: 60.2øF, 92.0% humidity, 0 mph SE wind, 0.00 inches rain/24hrs
Re: %12s
By: Digital Man to The Millionaire on Sat Jul 20 2019 03:08 am
On line 126 and 128 there is a %12s variable in the text.dat file.
what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
There are other % specifiers on that line too. I wonder if he was asking what specifically that %12s is for (i.e., what gets replaced for that one).
Nightfox
Re: %12s
By: Digital Man to The Millionaire on Sat Jul 20 2019 03:08 am
Re: %12s
By: The Millionaire to Digital Man on Fri Jul 19 2019 03:54 pm
On line 126 and 128 there is a %12s variable in the text.dat file. what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
digital man
This Is Spinal Tap quote #13:
Nigel Tufnel: You can't really dust for vomit.
Norco, CA WX: 60.2øF, 92.0% humidity, 0 mph SE wind, 0.00 inches rain/24hrs
one more question here: if it's %11.11 %11.11 are those information or formats also?
$ The Millionaire $
Re: %12s
By: Digital Man to The Millionaire on Sat Jul 20 2019 03:08 am
Re: %12s
By: The Millionaire to Digital Man on Fri Jul 19 2019 03:54 pm
On line 126 and 128 there is a %12s variable in the text.dat file. what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
digital man
This Is Spinal Tap quote #13:
Nigel Tufnel: You can't really dust for vomit.
Norco, CA WX: 60.2øF, 92.0% humidity, 0 mph SE wind, 0.00 inches rain/24hrs
one more question here: if it's %11.11 %11.11 are those information or formats also?
Re: %12s
By: Digital Man to The Millionaire on Sat Jul 20 2019 03:08 am
Re: %12s
By: The Millionaire to Digital Man on Fri Jul 19 2019 03:54 pm
On line 126 and 128 there is a %12s variable in the text.dat file. what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
rain/24hrs
one more question here: if it's %11.11 %11.11 are those information or formats also?
Re: %12s
By: The Millionaire to Digital Man on Sat Jul 20 2019 04:55 pm
Re: %12s
By: Digital Man to The Millionaire on Sat Jul 20 2019 03:08 am
Re: %12s
By: The Millionaire to Digital Man on Fri Jul 19 2019 03:54 pm
On line 126 and 128 there is a %12s variable in the text.dat file. what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
one more question here: if it's %11.11 %11.11 are those information or formats also?
how about an explanation of some of these variables in wiki.synchro.net so I don't have to bother you all the time? for eg. %22.22 = user's name, etc.
Re: %12s
By: The Millionaire to Digital Man on Sat Jul 20 2019 04:55 pm
Re: %12s
By: Digital Man to The Millionaire on Sat Jul 20 2019 03:08 am
Re: %12s
By: The Millionaire to Digital Man on Fri Jul 19 2019 03:54 pm
On line 126 and 128 there is a %12s variable in the text.dat file. what is this for?
text.dat string that contain % specifiers are for variable replacements. The "names" of these strings usually end in "Fmt" (for "format") and the syntax is consistent with the C printf-style functions.
So %12s means: a string of text, at least 12 characters wide, right-justified.
rain/24hrs
one more question here: if it's %11.11 %11.11 are those information or formats also?
Those are format specifiers too. It's not obvious now?
digital man
Synchronet/BBS Terminology Definition #47:
MUD = Multi-User Dungeon
Norco, CA WX: 79.2øF, 50.0% humidity, 10 mph ENE wind, 0.00 inches rain/24hrs
how about an explanation of some of these variables in wiki.synchro.net so I don't have to bother you all the time? for eg. %22.22 = user's name, etc.
how about an explanation of some of these variables in wiki.synchro.net so I don't have to bother you all the time? for eg. %22.22 = user's name, etc.
Re: %12s
By: The Millionaire to Digital Man on Sat Jul 20 2019 05:04 pm
how about an explanation of some of these variables in wiki.synchro.net so I don't have to bother you all the time? for eg. %22.22 = user's name, etc.
%s is a percent code for the string that is utilized by that particular line in text.dat
he actually DOES explain what they are in each line of text.dat
https://i.imgur.com/i0DQURP.png
Re: %12s
By: MRO to The Millionaire on Sat Jul 20 2019 11:42 pm
Re: %12s
By: The Millionaire to Digital Man on Sat Jul 20 2019 05:04 pm
how about an explanation of some of these variables in wiki.synchro.net so I don't have to bother you all the time? for eg. %22.22 = user's name, etc.
%s is a percent code for the string that is utilized by that particular line in text.dat
he actually DOES explain what they are in each line of text.dat
https://i.imgur.com/i0DQURP.png
they are basic generalizations they are not specifically,
Re: %12s
By: The Millionaire to MRO on Sun Jul 21 2019 05:56 am
https://i.imgur.com/gkgxNia.png
dude you were talking about this back in may.
Thats because dude i havent found a simpler way. i code my text.dat file by hand or fingers and it takes quite a few days then im exhausted afterwards and take a long break to recover. if i found a more simpler approach which didnt need too much work, i could have it done in a day.
but theres no such program out there that can do what i want to achieve. so in the meantime, back to the old-fashioned approach for now.
Re: %12s
By: MRO to The Millionaire on Sun Jul 21 2019 03:30 pm
Re: %12s
By: The Millionaire to MRO on Sun Jul 21 2019 05:56 am
https://i.imgur.com/gkgxNia.png
dude you were talking about this back in may.
Thats because dude i havent found a simpler way. i code my text.dat file by hand or fingers and it takes quite a few days then im exhausted afterwards and take a long break to recover. if i found a more simpler approach which didnt need too much work, i could have it done in a day. but theres no such program out there that can do what i want to achieve. so in the meantime, back to the old-fashioned approach for now.
Re: %12s
By: The Millionaire to MRO on Sun Jul 21 2019 20:30:35
Thats because dude i havent found a simpler way. i code my text.dat file by hand or fingers and it takes quite a few days then im exhausted afterwards and take a long break to recover. if i found a more simpler approach which didnt need too much work, i could have it done in a day.
For most people, opening the file in a decent text editor and using "Find and replace" is sufficient. At least for changing the colours of things (replace '\1n\1g' with '\1n\1y' to change all dark greens to brown). Or replacing various frequently recurring strings (change every instance of "message" to "communique" or whatever you want).
but theres no such program out there that can do what i want to achieve. so in the meantime, back to the old-fashioned approach for now.
What is it that you're trying to achieve?
doing the search/replace way takes minutes flat but if you want certain colors in certain places then you have to hard code it by hand. theres no way to assign them to those places. for ex. if i want a y color in one place it will be in other places but if i say y here and c here then it works. not a real ex.butpretend example ; /1cthis /1y@bbs@ /1chas shut down for maintenance.
dude you were talking about this back in may.
Thats because dude i havent found a simpler way. i code my text.dat file by hand or fingers and it takes quite a few days then im exhausted afterwards and take a long break to recover. if i found a more simpler approach which didnt need too much work, i could have it done in a day. but theres no such program out there that can do what i want to achieve. so in the meantime, back to the old-fashioned approach for now.
but theres no such program out there that can do what i want to achieve. so in the meantime, back to the old-fashioned approach for now.
What is it that you're trying to achieve?
What is it that you're trying to achieve?
doing the search/replace way takes minutes flat but if you want certain colors in certain places then you have to hard code it by hand. theres no way to assign them to those places. for ex. if i want a y color in one place it will be in other places but if i say y here and c here then it works. not a real ex.butpretend example ; /1cthis /1y@bbs@ /1chas shut down for maintenance.
If you choose to insert colours where none existed before, and if you choose to reword many of the
strings, and if you can't discern any patterns that would help make a find/replace job easier, then yes,
you're in for a lot of work and it could take a long time.
Re: %12s
By: The Millionaire to echicken on Sun Jul 21 2019 21:40:01
doing the search/replace way takes minutes flat but if you want certain colors in certain places then you have to hard code it by hand. theres no way to assign them to those places. for ex. if i want a y color in one place it will be in other places but if i say y here and c here then it works. not a real ex.butpretend example ; /1cthis /1y@bbs@ /1chas shut down for maintenance.
If you choose to insert colours where none existed before, and if you choose to reword many of the strings, and if you can't discern any patterns that would help make a find/replace job easier, then yes, you're in for a lot of work and it could take a long time.
Re: %12s
By: The Millionaire to MRO on Sun Jul 21 2019 08:30 pm
dude you were talking about this back in may.
Thats because dude i havent found a simpler way. i code my text.dat file by hand or fingers and it takes quite a few days then im exhausted afterwards and take a long break to recover. if i found a more simpler approach which didnt need too much work, i could have it done in a day. but theres no such program out there that can do what i want to achieve. so in the meantime, back to the old-fashioned approach for now.
we told you about text replacement programs back then too.
do you even run a bbs?
Re: %12s
By: echicken to The Millionaire on Mon Jul 22 2019 12:06 am
but theres no such program out there that can do what i want to achieve. so in the meantime, back to the old-fashioned approach for now.
What is it that you're trying to achieve?
he's just being an askhole.
he doesnt even act on any of the answers or help he receives.
Re: %12s
By: The Millionaire to echicken on Sun Jul 21 2019 09:40 pm
What is it that you're trying to achieve?
doing the search/replace way takes minutes flat but if you want certain colors in certain places then you have to hard code it by hand. theres no way to assign them to those places. for ex. if i want a y color in one place it will be in other places but if i say y here and c here then it works. not a real ex.butpretend example ; /1cthis /1y@bbs@ /1chas shut down for maintenance.
you are only limited by your own ability.
i'm positive my text.dat is modded more than you and it didnt take more than minutes.
works. not a real ex.butpretend example ; /1cthis /1y@bbs@ /1chas shut down for maintenance.
we told you about text replacement programs back then too.
do you even run a bbs?
i can't run a bbs because ipad won't let me run executables hence thats why i am getting a msp instead.
Re: %12s
By: MRO to The Millionaire on Mon Jul 22 2019 12:44 am
Re: %12s
By: The Millionaire to echicken on Sun Jul 21 2019 09:40 pm
What is it that you're trying to achieve?
doing the search/replace way takes minutes flat but if you want certain colors in certain places then you have to hard code it by hand. theres no way to assign them to those places. for ex. if i want a y color in one place it will be in other places but if i say y here and c here then it works. not a real ex.butpretend example ; /1cthis /1y@bbs@ /1chas shut down for maintenance.
you are only limited by your own ability.
i'm positive my text.dat is modded more than you and it didnt take more than minutes.
i wish it was that fast for me.
$ The Millionaire $
Re: %12s
By: The Millionaire to echicken on Sun Jul 21 2019 09:40 pm
works. not a real ex.butpretend example ; /1cthis /1y@bbs@ /1chas shut down for maintenance.
Those are the wrong slashes. You need to use backslashes, i.e. \1cthis \1y@bbs@ \1chas
Nightfox
Re: %12s
By: MRO to The Millionaire on Mon Jul 22 2019 12:41 am
we told you about text replacement programs back then too.
do you even run a bbs?
I don't think he does. I remember him talking to DM about having uploaded his text.dat to Vertrauen as a backup until he's able to set up his own BBS, and he's planning to buy a Microsoft Surface Pro in the fall to run his BBS on.
Nightfox
Re: %12s
By: The Millionaire to MRO on Mon Jul 22 2019 05:52 am
i can't run a bbs because ipad won't let me run executables hence thats why i am getting a msp instead.
I'm just curious why you want a tablet to run a BBS though? They are small and portable, but a Surface Pro can be expensive. If you just want to run a BBS, you can buy a cheap older computer. Also you'll more than likely want a real keyboard and mouse for modding things and creating ANSIs, etc., and a bigger screen might make that easier too.
Nightfox
I'm just curious why you want a tablet to run a BBS though? They are
small and portable, but a Surface Pro can be expensive. If you just
true but i cant use the big ones anymore now. compacticity is the new trend now.
why do you mod your text file so much for? i only mod when dm makes changes.
Re: %12s
By: The Millionaire to Nightfox on Mon Jul 22 2019 11:08 am
I'm just curious why you want a tablet to run a BBS though? They are
small and portable, but a Surface Pro can be expensive. If you just
true but i cant use the big ones anymore now. compacticity is the new trend now.
Why can't you use a bigger computer? Not enough space?
Nightfox
Re: %12s
By: The Millionaire to MRO on Mon Jul 22 2019 11:04 am
why do you mod your text file so much for? i only mod when dm makes changes.
It's good to mod your BBS so it looks unique. Often you'll want to make your BBS your own and give it your own style. People don't find a cookie-cutter clone BBS very interesting.
And if you don't even run a BBS yet, why bother modifying a text.dat? Are you even able to use it right now?
Nightfox
Nightfox wrote to The Millionaire <=-
i can't run a bbs because ipad won't let me run executables hence thats why i am getting a msp instead.
I'm just curious why you want a tablet to run a BBS though? They
are small and portable, but a Surface Pro can be expensive. If
you just want to run a BBS, you can buy a cheap older computer.
Also you'll more than likely want a real keyboard and mouse for
modding things and creating ANSIs, etc., and a bigger screen
might make that easier too.
The Millionaire wrote to MRO <=-
you are only limited by your own ability.
i'm positive my text.dat is modded more than you and it didnt take more than minutes.
why do you mod your text file so much for? i only mod when dm
makes changes.
The Millionaire wrote to Nightfox <=-
i can't run a bbs because ipad won't let me run executables hence thats why i am getting a msp instead.
I'm just curious why you want a tablet to run a BBS though? They are small and portable, but a Surface Pro can be expensive. If you just want to run a BBS, you can buy a cheap older computer. Also you'll more than likely want a real keyboard and mouse for modding things and creating ANSIs, etc., and a bigger screen might make that easier too.
true but i cant use the big ones anymore now.
compacticity is the new trend now.
Why would you need to modify your text.dat just because "dm makes changes"?
The Millionaire wrote to MRO <=-
you are only limited by your own ability.
i'm positive my text.dat is modded more than you and it didnt take more than minutes.
why do you mod your text file so much for? i only mod when dm
makes changes.
Why would you need to modify your text.dat just because "dm makes
changes"?
Honestly, I haven't modified mine at all. What's the need to
constantly modifiy it?
... He does the work of 3 Men...Moe, Larry & Curly
The Millionaire wrote to Nightfox <=-
i can't run a bbs because ipad won't let me run executables hence thats why i am getting a msp instead.
I'm just curious why you want a tablet to run a BBS though? They are small and portable, but a Surface Pro can be expensive. If you just want to run a BBS, you can buy a cheap older computer. Also you'll more than likely want a real keyboard and mouse for modding things and creating ANSIs, etc., and a bigger screen might make that easier too.
true but i cant use the big ones anymore now.
Why not?
compacticity is the new trend now.
Maybe for some things. I don't think "running a BBS" falls into
that "trend" though.
Oh, just thought of something else - many BBS's today run on a
Raspberry Pi. Doesn't get much smaller than that. You can buy
one for roughly $40. Git-R-Done.
... So easy, a child could do it. Child sold separately.
Re: Re: %12s
By: Gamgee to The Millionaire on Mon Jul 22 2019 15:03:00
Why would you need to modify your text.dat just because "dm makes changes"?
I expect it's because he wants to customize *every* string, so if he doesn't add new records as they appear, he's stuck with the defaults.
And if you don't even run a BBS yet, why bother modifying a text.dat?
Are you even able to use it right now?
i wanted to get a head start on it before i get my msp in the fall.
Re: %12s
By: The Millionaire to Nightfox on Mon Jul 22 2019 02:05 pm
And if you don't even run a BBS yet, why bother modifying a text.dat?
Are you even able to use it right now?
i wanted to get a head start on it before i get my msp in the fall.
It's a lot easier when you have a BBS up and running so you can try it out right away to see if your changes are working or not.
Nightfox
Nightfox wrote to The Millionaire <=-
why do you mod your text file so much for? i only mod when dm makes changes.
It's good to mod your BBS so it looks unique. Often you'll want
to make your BBS your own and give it your own style. People
don't find a cookie-cutter clone BBS very interesting.
And if you don't even run a BBS yet, why bother modifying a
text.dat? Are you even able to use it right now?
echicken wrote to Gamgee <=-
Why would you need to modify your text.dat just because "dm makes changes"?
I expect it's because he wants to customize *every* string, so if
he doesn't add new records as they appear, he's stuck with the
defaults.
The Millionaire wrote to Gamgee <=-
compacticity is the new trend now.
Maybe for some things. I don't think "running a BBS" falls into
that "trend" though.
Oh, just thought of something else - many BBS's today run on a
Raspberry Pi. Doesn't get much smaller than that. You can buy
one for roughly $40. Git-R-Done.
but you need a kybrd for pi. i need a touchscreen.
Re: %12s
By: MRO to The Millionaire on Mon Jul 22 2019 12:41 am
we told you about text replacement programs back then too.
do you even run a bbs?
I don't think he does. I remember him talking to DM about having uploaded his text.dat to Vertrauen as a backup until he's able to set up his own BBS, and he's planning to buy a Microsoft Surface Pro in the fall to run his BBS on.
why do you mod your text file so much for? i only mod when dm makes changes.
It's good to mod your BBS so it looks unique. Often you'll want
to make your BBS your own and give it your own style. People
don't find a cookie-cutter clone BBS very interesting.
Sure, true enough. But you can make extensive changes to things
without ever touching text.dat.
I think he's getting prepared, so he can "hit the ground running".
;-)
Why would you need to modify your text.dat just because "dm makes
changes"?
to keep up to date with the best.
I expect it's because he wants to customize *every* string, so if he
doesn't add new records as they appear, he's stuck with the defaults.
point well taken.
but you need a kybrd for pi.
i need a touchscreen.
Re: Re: %12s
By: The Millionaire to Gamgee on Mon Jul 22 2019 15:56:01
but you need a kybrd for pi.
no you don't...
i need a touchscreen.
so buy one for the rPi...
we've been putting touch screens on computers used for point of sale for at least 20 years... they're a lot cheaper now than they used to be...
if you're on a BBS that carries fidonet, look and see if they have the RBERRYPI echo or just connect to the news group that it is gated from... i know of at least one guy in there that's using a rPi with a touch screen in his airplane cockpit...
i need a touchscreen.
so buy one for the rPi...
we've been putting touch screens on computers used for point of sale
for at least 20 years... they're a lot cheaper now than they used to
be...
if you're on a BBS that carries fidonet, look and see if they have the
RBERRYPI echo or just connect to the news group that it is gated
from... i know of at least one guy in there that's using a rPi with a
touch screen in his airplane cockpit...
I have a rPi 3b+ that I used to build a Kuman 4 channel smart plug, it
has a Kuman 7" touch screen and a wireless keyboard and a 3" bluetooth speaker, and a mini usb mic so it accepts voice commands via a php
voice recognition script I wrote ...
video demo available LOL ... the pi even has sbbs 3.17b running on (ya
I need to update it but I only use my "Gizmo" for christmas lights
lmfao)
On 2019 Jul 23 11:55:20, you wrote to Rampage:
i need a touchscreen.
so buy one for the rPi...
we've been putting touch screens on computers used for point of sale
for at least 20 years... they're a lot cheaper now than they used to
be...
if you're on a BBS that carries fidonet, look and see if they have the
RBERRYPI echo or just connect to the news group that it is gated
from... i know of at least one guy in there that's using a rPi with a
touch screen in his airplane cockpit...
I have a rPi 3b+ that I used to build a Kuman 4 channel smart plug, it has a Kuman 7" touch screen and a wireless keyboard and a 3" bluetooth speaker, and a mini usb mic so it accepts voice commands via a php voice recognition script I wrote ...
see? there ya go! one could even get an old optiflex from ebay and put a touch screen on it, too... not just a handheld one but a full on monitor with touch... one of my disabled clients used one with a mouthstick some years back...
video demo available LOL ... the pi even has sbbs 3.17b running on (ya I need to update it but I only use my "Gizmo" for christmas lights lmfao)
:)
)\/(ark
if you're on a BBS that carries fidonet, look and see if they have
the RBERRYPI echo or just connect to the news group that it is
gated from... i know of at least one guy in there that's using a
rPi with a touch screen in his airplane cockpit...
I have a rPi 3b+ that I used to build a Kuman 4 channel smart
if you're on a BBS that carries fidonet, look and see if they have
the RBERRYPI echo or just connect to the news group that it is
gated from... i know of at least one guy in there that's using a
rPi with a touch screen in his airplane cockpit...
I have a rPi 3b+ that I used to build a Kuman 4 channel smart
I carry every Fido group there is. All 188. I don't see anything
related to the R PI. I that very surprising. Fidonet has groups for ancient OS's but none for the fairly new PI? That's too weird to me.
Re: Re: %12s
By: Mortifis to mark lewis on Tue Jul 23 2019 01:32 pm
if you're on a BBS that carries fidonet, look and see if they have R>>> the RBERRYPI echo or just connect to the news group that it is
gated from... i know of at least one guy in there that's using a R>>> rPi with a touch screen in his airplane cockpit...
I have a rPi 3b+ that I used to build a Kuman 4 channel smart
I carry every Fido group there is. All 188. I don't see anything related to the R PI. I that very surprising. Fidonet has groups for ancient OS's but none for the fairly new PI? That's too weird to me.
HusTler
Havens BBS (havens.synchro.net)
I carry every Fido group there is. All 188. I don't see anything
related to the R PI. I that very surprising. Fidonet has groups for ancient OS's but none for the fairly new PI? That's too weird to me.
I carry every Fido group there is. All 188. I don't see anything related to the R PI. I that very surprising. Fidonet has groups for ancient OS's but none for the fairly new PI? That's too weird to me.
I carry every Fido group there is. All 188. I don't see anything
related to the R PI. I that very surprising. Fidonet has groups for
ancient OS's but none for the fairly new PI? That's too weird to me.
The RBERRYPI area mentioned above is on the backbone. It's a gated newsgroup that is active from both the FTN and NEWS side.
Me believes yer replying to the wrong comment, I hadn't said anything about Fido :-P
ummm... there are over 200 echos in fidonet... the one you are missing for the rPi is RBERRYPI and is gated from usenet by a system in Zone 3 ;)
The RBERRYPI area mentioned above is on the backbone. It's a
gated newsgroup that is active from both the FTN and NEWS side.
So it's a "USENET" news group. Not a Fidonet Group. I get many news groups on my BBS. I can't think of a good reason why Fidonet doesn't
have it's own group for the Rasberry PI. Unless they stopped adding
groups to the Network? I guess it's easier to pull USENET groups
instead of creating its own group.
This bickering who's replying to who is getting old. Just make all the groups anonymous if it's going to be a big deal.
Re: Re: %12s
By: Mortifis to HusTler on Tue Jul 23 2019 07:00 pm
Me believes yer replying to the wrong comment, I hadn't said anything about Fido :-P
This bickering who's replying to who is getting old. Just make all the groups anonymous if it's going to be a big deal.
This bickering who's replying to who is getting old. Just make all the groups anonymous if it's going to be a big deal.
I'm just curious why you want a tablet to run a BBS though? They are
small and portable, but a Surface Pro can be expensive. If you just
true but i cant use the big ones anymore now. compacticity is the
new trend now.
Why can't you use a bigger computer? Not enough space?
but you need a kybrd for pi. i need a touchscreen.
On 07-24-19 09:41, echicken wrote to HusTler <=-
"All" would be a better choice than "anonymous", as that's the typical
way to address your message to the
entire group.
Re: Re: %12s
By: Rampage to HusTler on Tue Jul 23 2019 06:04 pm
ummm... there are over 200 echos in fidonet... the one you are missing for the rPi is RBERRYPI and is gated from usenet by
a
system in Zone 3 ;)
Re: Re: %12s
By: HusTler to ALL on Tue Jul 23 2019 18:54:23
Re: Re: %12s
By: Rampage to HusTler on Tue Jul 23 2019 06:04 pm
ummm... there are over 200 echos in fidonet... the one you are missing for the rPi is RBERRYPI and is gated from usenet by
a
system in Zone 3 ;)
If its the newsgroup that you want I vam going to be configuring it soon and anyone that has fidonet mail will be able to get it. I am running a dedicated linux server with 200 Up/Down intnernet connection. If you want it just send a nemail message to me.
so you will be flooding fidonet and maybe dovenet with dupe messages from usenet. or vice versa.
Re: Re: %12s
By: Phil Taylor to HusTler on Thu Jul 25 2019 11:09 pm
Re: Re: %12s
By: HusTler to ALL on Tue Jul 23 2019 18:54:23
Re: Re: %12s
By: Rampage to HusTler on Tue Jul 23 2019 06:04 pm
ummm... there are over 200 echos in fidonet... the one you are missing for the rPi is RBERRYPI and is gated from
usenet
by
a
system in Zone 3 ;)
If its the newsgroup that you want I vam going to be configuring it soon and anyone that has fidonet mail will be able to
get
it. I am running a dedicated linux server with 200 Up/Down intnernet connection. If you want it just send a nemail message to
me.
so you will be flooding fidonet and maybe dovenet with dupe messages from usenet. or vice versa.
i thought that was robert wolfe's job.
Sysop: | Ruben Figueroa |
---|---|
Location: | Mesquite, Tx |
Users: | 3 |
Nodes: | 4 (0 / 4) |
Uptime: | 254:35:02 |
Calls: | 79 |
Files: | 53 |
Messages: | 75,377 |