Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

"What the scientists have in their briefcases is terrifying." -- Nikita Khrushchev


computers / comp.os.linux.advocacy / Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

SubjectAuthor
* Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Farley Flud
+* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Physfitfreak
|`* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Farley Flud
| +* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.rbowman
| |+* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Physfitfreak
| ||+* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Chris Ahlstrom
| |||`* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Physfitfreak
| ||| `* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Chris Ahlstrom
| |||  `* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Physfitfreak
| |||   `* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Chris Ahlstrom
| |||    `* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Physfitfreak
| |||     `* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Chris Ahlstrom
| |||      `- Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Physfitfreak
| ||`- Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.DFS
| |`- Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Chris Ahlstrom
| `- Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Physfitfreak
`* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Farley Flud
 +* Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.Farley Flud
 |`- Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.DFS
 `- Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.DFS

1
Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11163&group=comp.os.linux.advocacy#11163

  copy link   Newsgroups: comp.os.linux.advocacy
From: ff@linux.rocks (Farley Flud)
Subject: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Newsgroups: comp.os.linux.advocacy
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 75
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Tue, 05 Mar 2024 21:36:27 +0000
Nntp-Posting-Date: Tue, 05 Mar 2024 21:36:27 +0000
X-Received-Bytes: 2228
Organization: UsenetExpress - www.usenetexpress.com
X-Complaints-To: abuse@usenetexpress.com
Message-Id: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
 by: Farley Flud - Tue, 5 Mar 2024 21:36 UTC

Code monkeys shoo! A REAL PROGRAMMER is here!

The following code will input any base (from 2-62) and output
any base (from 2-62) with the input being any precision up to
machine memory.

Whew! On my machine that would be 32 fucking GiB! A whole
troop of code monkeys would take decades just to punch it in!

Here is the 2 lines of C code:

================
Begin
================

// ./cnvbase number_string base_in base_out

#include <stdlib.h>
#include <stdio.h>
#include <gmp.h>

int main(int argc, char **argv)
{

int base_in, base_out;
mpz_t num_in;

base_in = atoi(argv[2]);
base_out = atoi(argv[3]);

mpz_init_set_str(num_in, argv[1], base_in);

mpz_out_str(stdout, base_out, num_in);

putchar('\n');

===================
End
===================

Example:

../cnvbase z00000 62 10

55884102752 = 61*62^5

Since this uses the fantastic GNU Multi-precision Library (GMP)
the input/output formats differ somewhat. Consult the GMP
documentation for details.

How about some fun?

../cnvbase fuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusers 62 10

859732874111950576750464573771495745696723258271498963520754870488968927294691837278003102965067051937241648315811465124960399426383957439114104994468918217484800030414243204696170542318008565072376574957471379926402355046537507318769336679750356501300992540

Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!

Fixed numeric types are long dead. Multi-precision is the new way.

The GNU Multi-precision Library is the greatest in the fucking world.

Microslop can only shit its pants.

Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!

Thanks to Dr. Richard M. Stallman and the FSF.

Hail Linux!

Hail GNU and the FSF!

Hail Stallman!

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<us84e9$vq9u$4@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11167&group=comp.os.linux.advocacy#11167

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Tue, 5 Mar 2024 15:56:25 -0600
Message-ID: <us84e9$vq9u$4@solani.org>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 5 Mar 2024 21:56:27 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1042750"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:oc99rBKzYNo+9fi6ZvHFumZv16s=
Content-Language: en-US
X-Antivirus-Status: Clean
X-Antivirus: Avast (VPS 240305-0, 3/4/2024), Outbound message
In-Reply-To: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
X-User-ID: eJwFwYEBwDAIArCXZhF071jH/ycsIRS6laKSpuG41O16PWwVyo2pAx8CG/JjLTGxyPl29htEZsV0LM8PRbMVOQ==
 by: Physfitfreak - Tue, 5 Mar 2024 21:56 UTC

On 3/5/2024 3:36 PM, Farley Flud wrote:
> Code monkeys shoo! A REAL PROGRAMMER is here!
>
> The following code will input any base (from 2-62) and output
> any base (from 2-62) with the input being any precision up to
> machine memory.
>
> Whew! On my machine that would be 32 fucking GiB! A whole
> troop of code monkeys would take decades just to punch it in!
>
> Here is the 2 lines of C code:
>
> ================
> Begin
> ================
>
> // ./cnvbase number_string base_in base_out
>
> #include <stdlib.h>
> #include <stdio.h>
> #include <gmp.h>
>
> int main(int argc, char **argv)
> {
>
> int base_in, base_out;
> mpz_t num_in;
>
> base_in = atoi(argv[2]);
> base_out = atoi(argv[3]);
>
> mpz_init_set_str(num_in, argv[1], base_in);
>
> mpz_out_str(stdout, base_out, num_in);
>
> putchar('\n');
>
> ===================
> End
> ===================
>
> Example:
>
> ./cnvbase z00000 62 10
>
> 55884102752 = 61*62^5
>
> Since this uses the fantastic GNU Multi-precision Library (GMP)
> the input/output formats differ somewhat. Consult the GMP
> documentation for details.
>
> How about some fun?
>
> ./cnvbase fuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusersfuckmicroslopusers 62 10
>
> 859732874111950576750464573771495745696723258271498963520754870488968927294691837278003102965067051937241648315811465124960399426383957439114104994468918217484800030414243204696170542318008565072376574957471379926402355046537507318769336679750356501300992540
>
> Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!
>
>
> Fixed numeric types are long dead. Multi-precision is the new way.
>
> The GNU Multi-precision Library is the greatest in the fucking world.
>
> Microslop can only shit its pants.
>
> Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!
>
> Thanks to Dr. Richard M. Stallman and the FSF.
>
> Hail Linux!
>
> Hail GNU and the FSF!
>
> Hail Stallman!
>

Are you kidding me? Those are only integer bases. Why dont' you do that
for non-integer bases as well.

Let's see if it requires GNU, or requires coding skill.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11169&group=comp.os.linux.advocacy#11169

  copy link   Newsgroups: comp.os.linux.advocacy
From: ff@linux.rocks (Farley Flud)
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Newsgroups: comp.os.linux.advocacy
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com> <us84e9$vq9u$4@solani.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 11
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Tue, 05 Mar 2024 22:43:13 +0000
Nntp-Posting-Date: Tue, 05 Mar 2024 22:43:13 +0000
X-Received-Bytes: 852
X-Complaints-To: abuse@usenetexpress.com
Organization: UsenetExpress - www.usenetexpress.com
Message-Id: <17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
 by: Farley Flud - Tue, 5 Mar 2024 22:43 UTC

On Tue, 5 Mar 2024 15:56:25 -0600, Physfitfreak wrote:

>
> Are you kidding me? Those are only integer bases. Why dont' you do that
> for non-integer bases as well.
>

Non-integer, or more properly irrational, bases have no practical
utility whatsoever, aside perhaps from some extremely narrow niche.
They are a mathematical curiosity at best.

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<17ba015fcbce2c17$45710$2535552$802601b3@news.usenetexpress.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11174&group=comp.os.linux.advocacy#11174

  copy link   Newsgroups: comp.os.linux.advocacy
From: ff@linux.rocks (Farley Flud)
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Newsgroups: comp.os.linux.advocacy
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 22
Path: i2pn2.org!i2pn.org!newsfeed.endofthelinebbs.com!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Tue, 05 Mar 2024 23:15:19 +0000
Nntp-Posting-Date: Tue, 05 Mar 2024 23:15:19 +0000
X-Received-Bytes: 840
X-Complaints-To: abuse@usenetexpress.com
Organization: UsenetExpress - www.usenetexpress.com
Message-Id: <17ba015fcbce2c17$45710$2535552$802601b3@news.usenetexpress.com>
 by: Farley Flud - Tue, 5 Mar 2024 23:15 UTC

On Tue, 05 Mar 2024 21:36:27 +0000, Farley Flud wrote:

>
> How about some fun?
>

Here's another one:

../cnvbase TheDuFuSIsAnAssholeCodeMonkey 62 10

4568592536364518363263888566248363318449342453325564

Ha, ha, ha, ha, ha, ha, ha, ha, ha, ha!
Thanks to Dr. Richard M. Stallman and the FSF.
Hail Linux!
Hail GNU and the FSF!
Hail Stallman!

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<l4ps13Fjbr1U1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11183&group=comp.os.linux.advocacy#11183

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bowman@montana.com (rbowman)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: 6 Mar 2024 00:34:43 GMT
Lines: 8
Message-ID: <l4ps13Fjbr1U1@mid.individual.net>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Trace: individual.net 38kXrWcEa1da8xSdII+LMAD2juKdqHay8qshhO+nwhDYO28D0q
Cancel-Lock: sha1:zUb3ebHyvxufXq0yq52wdhn6qZo= sha256:ZyajgG4cJdO5fH7085K8jhUdrNziXbGc6o4mNLmC6Po=
User-Agent: Pan/0.149 (Bellevue; 4c157ba)
 by: rbowman - Wed, 6 Mar 2024 00:34 UTC

On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:

> Non-integer, or more properly irrational, bases have no practical
> utility whatsoever, aside perhaps from some extremely narrow niche.
> They are a mathematical curiosity at best.

If there is an area where you do have expertise it's things that have no
pratical utility whatsoever.

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<us8thj$106kd$4@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11188&group=comp.os.linux.advocacy#11188

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Tue, 5 Mar 2024 23:04:50 -0600
Message-ID: <us8thj$106kd$4@solani.org>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 6 Mar 2024 05:04:51 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1055373"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:qsJzAU9oke2Lqqb3dyCr65H8Ii8=
Content-Language: en-US
X-User-ID: eJwNyckRwEAIA7CWlgTbbDkcQ/8lJPoKL40tJ+hYLM+1iTGVRnZ9R/CG3/+fxOGTJyJHTfYyOo3LKdVWlPkHNmwVRw==
X-Antivirus: Avast (VPS 240305-4, 3/5/2024), Outbound message
X-Antivirus-Status: Clean
In-Reply-To: <17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
 by: Physfitfreak - Wed, 6 Mar 2024 05:04 UTC

On 3/5/2024 4:43 PM, Farley Flud wrote:
> On Tue, 5 Mar 2024 15:56:25 -0600, Physfitfreak wrote:
>
>>
>> Are you kidding me? Those are only integer bases. Why dont' you do that
>> for non-integer bases as well.
>>
>
> Non-integer, or more properly irrational, bases have no practical
> utility whatsoever, aside perhaps from some extremely narrow niche.
> They are a mathematical curiosity at best.
>

There's really no difference, in math, between integer and non-integer
bases. And of course there's no difference in how they're handled
compared to integers, when changing bases. So I don't know what the deal
is with you and others here not wanting to try it.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<us8ts4$106kd$5@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11189&group=comp.os.linux.advocacy#11189

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Tue, 5 Mar 2024 23:10:28 -0600
Message-ID: <us8ts4$106kd$5@solani.org>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 6 Mar 2024 05:10:29 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1055373"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:OsnDQfclCV1YPcKA+1wlwFxJ8Gw=
X-User-ID: eJwFwYkBwCAIA8CVlCfAOGqa/UfoXTo2XgUSkUodmg+Fb4YXvp6JzzpWow0me12HvdM1nbuQYk1Q9O8m6wdWNxWN
Content-Language: en-US
X-Antivirus: Avast (VPS 240305-4, 3/5/2024), Outbound message
X-Antivirus-Status: Clean
In-Reply-To: <l4ps13Fjbr1U1@mid.individual.net>
 by: Physfitfreak - Wed, 6 Mar 2024 05:10 UTC

On 3/5/2024 6:34 PM, rbowman wrote:
> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>
>> Non-integer, or more properly irrational, bases have no practical
>> utility whatsoever, aside perhaps from some extremely narrow niche.
>> They are a mathematical curiosity at best.
>
> If there is an area where you do have expertise it's things that have no
> pratical utility whatsoever.

Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
practical use? This little problem tells a lot about COLA frequenters.

It was hard to believe, first, what Farley said about you guys, as far
as programming is concerned; but now I'm beginning to see there was more
than just a grain of truth in it.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<17ba23f8265f274d$70866$3000918$802601b3@news.usenetexpress.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11191&group=comp.os.linux.advocacy#11191

  copy link   Newsgroups: comp.os.linux.advocacy
From: ff@linux.rocks (Farley Flud)
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Newsgroups: comp.os.linux.advocacy
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com> <17ba015fcbce2c17$45710$2535552$802601b3@news.usenetexpress.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Lines: 12
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news.usenetexpress.com!not-for-mail
Date: Wed, 06 Mar 2024 09:49:17 +0000
Nntp-Posting-Date: Wed, 06 Mar 2024 09:49:17 +0000
X-Received-Bytes: 744
Organization: UsenetExpress - www.usenetexpress.com
X-Complaints-To: abuse@usenetexpress.com
Message-Id: <17ba23f8265f274d$70866$3000918$802601b3@news.usenetexpress.com>
 by: Farley Flud - Wed, 6 Mar 2024 09:49 UTC

On Tue, 05 Mar 2024 23:15:19 +0000, Farley Flud wrote:

>
>

Secret message of the day:

../cnvbase 19169348697444355537668278728479168067155798364 10 62

Ha, ha, ha, ha, ha, ha, ha! Truth is funny!

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<us9ogo$e0kq$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11197&group=comp.os.linux.advocacy#11197

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: nospam@dfs.com (DFS)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Wed, 6 Mar 2024 07:45:15 -0500
Organization: A noiseless patient Spider
Lines: 19
Message-ID: <us9ogo$e0kq$1@dont-email.me>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<17ba015fcbce2c17$45710$2535552$802601b3@news.usenetexpress.com>
<17ba23f8265f274d$70866$3000918$802601b3@news.usenetexpress.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 6 Mar 2024 12:45:13 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="22941dcf2f457ce1e1fe5217804895ba";
logging-data="459418"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+Kzt4WvsDiJX21p8dQI7pF"
User-Agent: Betterbird (Windows)
Cancel-Lock: sha1:LFbJhCvERVNofKuJa2SeBNpHaX4=
In-Reply-To: <17ba23f8265f274d$70866$3000918$802601b3@news.usenetexpress.com>
Content-Language: en-US
 by: DFS - Wed, 6 Mar 2024 12:45 UTC

On 3/6/2024 4:49 AM, Farley Flud wrote:
> On Tue, 05 Mar 2024 23:15:19 +0000, Farley Flud wrote:
>
>>
>>
>
> Secret message of the day:
>
> ./cnvbase 19169348697444355537668278728479168067155798364 10 62
>
>
> Ha, ha, ha, ha, ha, ha, ha! Truth is funny!

So is his fate

67507201299970941853361437320064418355193173472789010706975

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<us9ppo$e72r$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11200&group=comp.os.linux.advocacy#11200

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Wed, 6 Mar 2024 08:07:03 -0500
Organization: None
Lines: 19
Message-ID: <us9ppo$e72r$1@dont-email.me>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Wed, 6 Mar 2024 13:07:04 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="610790f7ca475f59900771683139c4f9";
logging-data="466011"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX187cJVYzNouC/9q9Ap6e/eF"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:2DokKOWXLEFTTT072gu15YU6QfE=
X-Mutt: The most widely-used MUA
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Slrn: Why use anything else?
 by: Chris Ahlstrom - Wed, 6 Mar 2024 13:07 UTC

rbowman wrote this copyrighted missive and expects royalties:

> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>
>> Non-integer, or more properly irrational, bases have no practical
>> utility whatsoever, aside perhaps from some extremely narrow niche.
>> They are a mathematical curiosity at best.
>
> If there is an area where you do have expertise it's things that have no
> pratical utility whatsoever.

He's definitely an irrational number :-D

--
The only people for me are the mad ones -- the ones who are mad to live,
mad to talk, mad to be saved, desirous of everything at the same time,
the ones who never yawn or say a commonplace thing, but burn, burn, burn
like fabulous yellow Roman candles.
-- Jack Kerouac, "On the Road"

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<us9psm$e72r$2@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11201&group=comp.os.linux.advocacy#11201

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Wed, 6 Mar 2024 08:08:38 -0500
Organization: None
Lines: 25
Message-ID: <us9psm$e72r$2@dont-email.me>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Wed, 6 Mar 2024 13:08:38 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="610790f7ca475f59900771683139c4f9";
logging-data="466011"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19nmIA6qBsrS9m3ELlcdjhO"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:Uj1H3a6/YX0HEbkJ8fK0uOUp3LI=
X-Mutt: The most widely-used MUA
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Slrn: Why use anything else?
 by: Chris Ahlstrom - Wed, 6 Mar 2024 13:08 UTC

Physfitfreak wrote this copyrighted missive and expects royalties:

> On 3/5/2024 6:34 PM, rbowman wrote:
>> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>>
>>> Non-integer, or more properly irrational, bases have no practical
>>> utility whatsoever, aside perhaps from some extremely narrow niche.
>>> They are a mathematical curiosity at best.
>>
>> If there is an area where you do have expertise it's things that have no
>> pratical utility whatsoever.
>
> Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
> practical use? This little problem tells a lot about COLA frequenters.
>
> It was hard to believe, first, what Farley said about you guys, as far
> as programming is concerned; but now I'm beginning to see there was more
> than just a grain of truth in it.

Nah, we just want the kid to do his own class assignments ;->

--
Many a writer seems to think he is never profound except when he can't
understand his own meaning.
-- George D. Prentice

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<usa875$119lp$1@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11217&group=comp.os.linux.advocacy#11217

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Wed, 6 Mar 2024 11:13:10 -0600
Message-ID: <usa875$119lp$1@solani.org>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
<us9psm$e72r$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 6 Mar 2024 17:13:09 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1091257"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:cVqeMQ5/a/MfGcjcGJkwUgF7Vt4=
X-Antivirus: Avast (VPS 240306-4, 3/6/2024), Outbound message
In-Reply-To: <us9psm$e72r$2@dont-email.me>
Content-Language: en-US
X-User-ID: eJwFwYEBwCAIA7CXQNoK50yG/59gwpCrN0SBlzfSqwOq3ZjVTbSdmyjNeFCzzfz7VxF05pKPKcJPWOMgHy2jFA4=
X-Antivirus-Status: Clean
 by: Physfitfreak - Wed, 6 Mar 2024 17:13 UTC

On 3/6/2024 7:08 AM, Chris Ahlstrom wrote:
> Physfitfreak wrote this copyrighted missive and expects royalties:
>
>> On 3/5/2024 6:34 PM, rbowman wrote:
>>> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>>>
>>>> Non-integer, or more properly irrational, bases have no practical
>>>> utility whatsoever, aside perhaps from some extremely narrow niche.
>>>> They are a mathematical curiosity at best.
>>>
>>> If there is an area where you do have expertise it's things that have no
>>> pratical utility whatsoever.
>>
>> Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
>> practical use? This little problem tells a lot about COLA frequenters.
>>
>> It was hard to believe, first, what Farley said about you guys, as far
>> as programming is concerned; but now I'm beginning to see there was more
>> than just a grain of truth in it.
>
> Nah, we just want the kid to do his own class assignments ;->
>

No, that's what a lazy ass little Bozo would say also, when being
checked. How does one distinguish between the two?

Does one even have to?

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<65e8fdb0$0$3158692$882e4bbb@reader.netnews.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11238&group=comp.os.linux.advocacy#11238

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.cmpublishers.com!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!news-out.netnews.com!eu1.netnews.com!eu1.netnews.com!not-for-mail
X-Trace: DXC=6Z1^0>02i74nE_ZM:5?BK1HWonT5<]0T=Q;nb^V>PUf65[gZBW6J?L<o>@oN;JD0Z3LglMaeg`lf:3\mL8D9I>n0WjB\<Me8\A7@GM\IYO6WZ4>Oa:X5b?f88
X-Complaints-To: support@blocknews.net
Date: Wed, 6 Mar 2024 18:35:16 -0500
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Newsgroups: comp.os.linux.advocacy
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com> <17ba015fcbce2c17$45710$2535552$802601b3@news.usenetexpress.com>
Content-Language: en-US
From: nospam@dfs.com (DFS)
In-Reply-To: <17ba015fcbce2c17$45710$2535552$802601b3@news.usenetexpress.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 40
Message-ID: <65e8fdb0$0$3158692$882e4bbb@reader.netnews.com>
NNTP-Posting-Host: 127.0.0.1
X-Trace: 1709768112 reader.netnews.com 3158692 127.0.0.1:48335
 by: DFS - Wed, 6 Mar 2024 23:35 UTC

On 3/5/2024 6:15 PM, Lyin' Larry wrote:

> ./cnvbase TheDuFuSIsAnAssholeCodeMonkey 62 10

Expecting you to support your years of wild-ass, braggadocious,
delusional claims doesn't make me an asshole.

-----------------------------------------------------------------------

owl: And if it were 60 million records instead of 6000...

Feeb: Then I'd write it in C, using a reentrant lexical parser
and parallel processing.

-----------------------------------------------------------------------

I use POV-Ray but will have to move to Blender because POV-Ray does
not do Euler angle rotations. This is a bummer.

I would like to contribute by implementing Euler angle rotation but,
jeezus fucking christ, I can't do everything now, can I?

Holy fuck! I am only a single human being. The GIMP people want me
to implement netpbm HDR formats. The ImageMagick folks want me to
implement AI. I gotta eat, sleep, piss, and shit. Give this poor boy
a fucking break!

But I am a FOSS person. I can do anything and everything and I can
do it all extremely well.

-----------------------------------------------------------------------

LOL! Both those pretentious farts make me chuckle every time! What a
phony gasbag.

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<65e90311$0$3158698$882e4bbb@reader.netnews.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11241&group=comp.os.linux.advocacy#11241

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!feeder.usenetexpress.com!tr3.iad1.usenetexpress.com!news-out.netnews.com!eu1.netnews.com!eu1.netnews.com!not-for-mail
X-Trace: DXC=1?@]2S`Lm1EhQRfiUUWA<IHWonT5<]0TMQ;nb^V>PUfF5[gZBW6J?LLo>@oN;JD0ZCLglMaeg`lfJ3\mL8D9I>n@WjB\<Me8\AG@GM\IYO6WZD>Oa:X5b?f8H
X-Complaints-To: support@blocknews.net
Date: Wed, 6 Mar 2024 18:58:13 -0500
MIME-Version: 1.0
User-Agent: Betterbird (Windows)
From: nospam@dfs.com (DFS)
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Newsgroups: comp.os.linux.advocacy
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com> <us84e9$vq9u$4@solani.org> <17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com> <l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
Content-Language: en-US
In-Reply-To: <us8ts4$106kd$5@solani.org>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 58
Message-ID: <65e90311$0$3158698$882e4bbb@reader.netnews.com>
NNTP-Posting-Host: 127.0.0.1
X-Trace: 1709769489 reader.netnews.com 3158698 127.0.0.1:48989
 by: DFS - Wed, 6 Mar 2024 23:58 UTC

On 3/6/2024 12:10 AM, Physfitfreak wrote:
> On 3/5/2024 6:34 PM, rbowman wrote:
>> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>>
>>> Non-integer, or more properly irrational, bases have no practical
>>> utility whatsoever, aside perhaps from some extremely narrow niche.
>>> They are a mathematical curiosity at best.
>>
>> If there is an area where you do have expertise it's things that have no
>> pratical utility whatsoever.
>
>
>
> Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
> practical use? This little problem tells a lot about COLA frequenters.

This isn't a programming newsgroup, bozo.

> It was hard to believe, first, what Farley said about you guys, as far
> as programming is concerned; but now I'm beginning to see there was more
> than just a grain of truth in it.

You and Feeb are objectively the worst programmers on cola, among those
that do it for a living (rbowman, Ahlstrom) or a hobby (me, Relf). It's
no coincidence you both use the stupid term 'code monkey'.

In the past I posted 5 simple but mostly useful programming challenges
for Feeb:

<o6fqH.420221$Av7.358131@fx34.iad>
<TwuzH.197436$sW6.104370@fx47.iad>
<n7uAH.19256$Eo4.8778@fx44.iad>
<JzLDH.35307$R82.29164@fx46.iad>
<F5Q9I.74959$RS3.10472@fx18.iad>

Despite claiming to be a "computing virtuoso" and "programming wizard"
he refused to try 3 of them, plagiarized his answer to one, and ignored
the requirements of one and posted some invalid, non-working perl code.

Total fucking FAIL.

He always has an excuse, but he expects others to try his esoteric
challenges.

In 2020 I made Feeb cry and surrender:

"I hereby declare that I will never again become involved with string
programming. Therefore, I will accept no string manipulation challenges."

LMAO! What a wimp.

Now it's your turn. Don't let me down. You already ran away from one
simple program - matrix multiplication using [i][j] addressing - so it's
not looking good.

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<uschcb$130df$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11259&group=comp.os.linux.advocacy#11259

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Thu, 7 Mar 2024 09:01:47 -0500
Organization: None
Lines: 36
Message-ID: <uschcb$130df$1@dont-email.me>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
<us9psm$e72r$2@dont-email.me> <usa875$119lp$1@solani.org>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Thu, 7 Mar 2024 14:01:47 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="14e775be75bcdd960dc989bec525ade7";
logging-data="1147311"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+Snhd7ErZHT0S9bpT9v8Xu"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:ZrF4OkAEqjiUOl61A/Vygxm8RSY=
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Mutt: The most widely-used MUA
X-Slrn: Why use anything else?
 by: Chris Ahlstrom - Thu, 7 Mar 2024 14:01 UTC

Physfitfreak wrote this copyrighted missive and expects royalties:

> On 3/6/2024 7:08 AM, Chris Ahlstrom wrote:
>> Physfitfreak wrote this copyrighted missive and expects royalties:
>>
>>> On 3/5/2024 6:34 PM, rbowman wrote:
>>>> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>>>>
>>>>> Non-integer, or more properly irrational, bases have no practical
>>>>> utility whatsoever, aside perhaps from some extremely narrow niche.
>>>>> They are a mathematical curiosity at best.
>>>>
>>>> If there is an area where you do have expertise it's things that have no
>>>> pratical utility whatsoever.
>>>
>>> Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
>>> practical use? This little problem tells a lot about COLA frequenters.
>>>
>>> It was hard to believe, first, what Farley said about you guys, as far
>>> as programming is concerned; but now I'm beginning to see there was more
>>> than just a grain of truth in it.
>>
>> Nah, we just want the kid to do his own class assignments ;->
>
> No, that's what a lazy ass little Bozo would say also, when being
> checked. How does one distinguish between the two?

Lazy? Me? Nah, just working on a coding project I am just itching to
complete.

> Does one even have to?

Nope. Not up for silly-assed "assignments" in COLA.

--
You're at the end of the road again.

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<usdkad$12kro$2@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11296&group=comp.os.linux.advocacy#11296

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Thu, 7 Mar 2024 17:58:04 -0600
Message-ID: <usdkad$12kro$2@solani.org>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
<us9psm$e72r$2@dont-email.me> <usa875$119lp$1@solani.org>
<uschcb$130df$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 7 Mar 2024 23:58:05 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1135480"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:AjSZD9DzLoh3BkrzfOjIY6b3EJs=
X-User-ID: eJwNycEBwEAEBMCWOHZRjkvov4RkvgOj8gkn6Fis+7CTbZNbV1DI/mMWkQdvHcuOzZsqeEamVGgZOl5tR/kBROgUkw==
Content-Language: en-US
In-Reply-To: <uschcb$130df$1@dont-email.me>
X-Antivirus: Avast (VPS 240307-8, 3/7/2024), Outbound message
X-Antivirus-Status: Clean
 by: Physfitfreak - Thu, 7 Mar 2024 23:58 UTC

On 3/7/2024 8:01 AM, Chris Ahlstrom wrote:
> Physfitfreak wrote this copyrighted missive and expects royalties:
>
>> On 3/6/2024 7:08 AM, Chris Ahlstrom wrote:
>>> Physfitfreak wrote this copyrighted missive and expects royalties:
>>>
>>>> On 3/5/2024 6:34 PM, rbowman wrote:
>>>>> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>>>>>
>>>>>> Non-integer, or more properly irrational, bases have no practical
>>>>>> utility whatsoever, aside perhaps from some extremely narrow niche.
>>>>>> They are a mathematical curiosity at best.
>>>>>
>>>>> If there is an area where you do have expertise it's things that have no
>>>>> pratical utility whatsoever.
>>>>
>>>> Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
>>>> practical use? This little problem tells a lot about COLA frequenters.
>>>>
>>>> It was hard to believe, first, what Farley said about you guys, as far
>>>> as programming is concerned; but now I'm beginning to see there was more
>>>> than just a grain of truth in it.
>>>
>>> Nah, we just want the kid to do his own class assignments ;->
>>
>> No, that's what a lazy ass little Bozo would say also, when being
>> checked. How does one distinguish between the two?
>
> Lazy? Me? Nah, just working on a coding project I am just itching to
> complete.
>
>> Does one even have to?
>
> Nope. Not up for silly-assed "assignments" in COLA.
>

More excuses.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<usdlh7$1am30$2@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11298&group=comp.os.linux.advocacy#11298

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Thu, 7 Mar 2024 19:18:46 -0500
Organization: None
Lines: 48
Message-ID: <usdlh7$1am30$2@dont-email.me>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
<us9psm$e72r$2@dont-email.me> <usa875$119lp$1@solani.org>
<uschcb$130df$1@dont-email.me> <usdkad$12kro$2@solani.org>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Fri, 8 Mar 2024 00:18:47 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="88e11b582ca826ea7c1a82392dc0d8c2";
logging-data="1398880"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19NXXRyCEYw230/4AsxzH8u"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:3N9UaErKpGnbxjkY8u2ek6TotAU=
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
X-Mutt: The most widely-used MUA
X-Slrn: Why use anything else?
 by: Chris Ahlstrom - Fri, 8 Mar 2024 00:18 UTC

Physfitfreak wrote this copyrighted missive and expects royalties:

> On 3/7/2024 8:01 AM, Chris Ahlstrom wrote:
>> Physfitfreak wrote this copyrighted missive and expects royalties:
>>
>>> On 3/6/2024 7:08 AM, Chris Ahlstrom wrote:
>>>> Physfitfreak wrote this copyrighted missive and expects royalties:
>>>>
>>>>> On 3/5/2024 6:34 PM, rbowman wrote:
>>>>>> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>>>>>>
>>>>>>> Non-integer, or more properly irrational, bases have no practical
>>>>>>> utility whatsoever, aside perhaps from some extremely narrow niche.
>>>>>>> They are a mathematical curiosity at best.
>>>>>>
>>>>>> If there is an area where you do have expertise it's things that have no
>>>>>> pratical utility whatsoever.
>>>>>
>>>>> Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
>>>>> practical use? This little problem tells a lot about COLA frequenters.
>>>>>
>>>>> It was hard to believe, first, what Farley said about you guys, as far
>>>>> as programming is concerned; but now I'm beginning to see there was more
>>>>> than just a grain of truth in it.
>>>>
>>>> Nah, we just want the kid to do his own class assignments ;->
>>>
>>> No, that's what a lazy ass little Bozo would say also, when being
>>> checked. How does one distinguish between the two?
>>
>> Lazy? Me? Nah, just working on a coding project I am just itching to
>> complete.
>>
>>> Does one even have to?
>>
>> Nope. Not up for silly-assed "assignments" in COLA.
>
> More excuses.

What's your excuse? :-D

--
There are three infallible ways of pleasing an author, and the three form a
rising scale of compliment: 1, to tell him you have read one of his books; 2,
to tell him you have read all of his books; 3, to ask him to let you read the
manuscript of his forthcoming book. No. 1 admits you to his respect; No. 2
admits you to his admiration; No. 3 carries you clear into his heart.
-- Mark Twain, "Pudd'nhead Wilson's Calendar"

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<usdn29$12kro$3@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11300&group=comp.os.linux.advocacy#11300

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Thu, 7 Mar 2024 18:44:56 -0600
Message-ID: <usdn29$12kro$3@solani.org>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
<us9psm$e72r$2@dont-email.me> <usa875$119lp$1@solani.org>
<uschcb$130df$1@dont-email.me> <usdkad$12kro$2@solani.org>
<usdlh7$1am30$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 8 Mar 2024 00:44:57 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1135480"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:be3Q65aFMBb+wDMj60jss8ohmNg=
X-User-ID: eJwFwYEBwDAEBMCVqPdhHCL2H6F3blTeAzrh6xud9xlg2UidF63WlnokZUw7dCLkAwuQJlfvvp6iVAVO/jsaFQE=
Content-Language: en-US
X-Antivirus-Status: Clean
X-Antivirus: Avast (VPS 240307-8, 3/7/2024), Outbound message
In-Reply-To: <usdlh7$1am30$2@dont-email.me>
 by: Physfitfreak - Fri, 8 Mar 2024 00:44 UTC

On 3/7/2024 6:18 PM, Chris Ahlstrom wrote:
> Physfitfreak wrote this copyrighted missive and expects royalties:
>
>> On 3/7/2024 8:01 AM, Chris Ahlstrom wrote:
>>> Physfitfreak wrote this copyrighted missive and expects royalties:
>>>
>>>> On 3/6/2024 7:08 AM, Chris Ahlstrom wrote:
>>>>> Physfitfreak wrote this copyrighted missive and expects royalties:
>>>>>
>>>>>> On 3/5/2024 6:34 PM, rbowman wrote:
>>>>>>> On Tue, 05 Mar 2024 22:43:13 +0000, Farley Flud wrote:
>>>>>>>
>>>>>>>> Non-integer, or more properly irrational, bases have no practical
>>>>>>>> utility whatsoever, aside perhaps from some extremely narrow niche.
>>>>>>>> They are a mathematical curiosity at best.
>>>>>>>
>>>>>>> If there is an area where you do have expertise it's things that have no
>>>>>>> pratical utility whatsoever.
>>>>>>
>>>>>> Isn't revealing who's a Code-Monkey and who a sub-Code-Monkey a
>>>>>> practical use? This little problem tells a lot about COLA frequenters.
>>>>>>
>>>>>> It was hard to believe, first, what Farley said about you guys, as far
>>>>>> as programming is concerned; but now I'm beginning to see there was more
>>>>>> than just a grain of truth in it.
>>>>>
>>>>> Nah, we just want the kid to do his own class assignments ;->
>>>>
>>>> No, that's what a lazy ass little Bozo would say also, when being
>>>> checked. How does one distinguish between the two?
>>>
>>> Lazy? Me? Nah, just working on a coding project I am just itching to
>>> complete.
>>>
>>>> Does one even have to?
>>>
>>> Nope. Not up for silly-assed "assignments" in COLA.
>>
>> More excuses.
>
> What's your excuse? :-D
>

Educating some cro-magnon ass.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<usf0vb$1megs$3@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11320&group=comp.os.linux.advocacy#11320

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: OFeem1987@teleworm.us (Chris Ahlstrom)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Fri, 8 Mar 2024 07:40:11 -0500
Organization: None
Lines: 11
Message-ID: <usf0vb$1megs$3@dont-email.me>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
<us9psm$e72r$2@dont-email.me> <usa875$119lp$1@solani.org>
<uschcb$130df$1@dont-email.me> <usdkad$12kro$2@solani.org>
<usdlh7$1am30$2@dont-email.me> <usdn29$12kro$3@solani.org>
Reply-To: OFeem1987@teleworm.us
Injection-Date: Fri, 8 Mar 2024 12:40:11 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="b69754477aa1f64f74f83c986025ddc4";
logging-data="1784348"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/xxqM7roaHgoZDoPngvF61"
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:8uLz1fJ0542noFWFxLb56JCVtpI=
X-Slrn: Why use anything else?
X-Mutt: The most widely-used MUA
X-User-Agent: Microsoft Outl00k, Usenet K00k Editions
 by: Chris Ahlstrom - Fri, 8 Mar 2024 12:40 UTC

Physfitfreak wrote this copyrighted missive and expects royalties:

> Educating some cro-magnon ass.

Not bad for a Neanderthal!

"Neanderthal tooth in Iran from 42,000 years ago redraws human evolution."

--
What no spouse of a writer can ever understand is that a writer is working
when he's staring out the window.

Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.

<usfh2m$13iul$1@solani.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=11626&group=comp.os.linux.advocacy#11626

  copy link   Newsgroups: comp.os.linux.advocacy
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!weretis.net!feeder8.news.weretis.net!reader5.news.weretis.net!news.solani.org!.POSTED!not-for-mail
From: Physfitfreak@gmail.com (Physfitfreak)
Newsgroups: comp.os.linux.advocacy
Subject: Re: Base Conversion. Any Base. Any Precision. 2 Lines of C Code.
Date: Fri, 8 Mar 2024 11:15:03 -0600
Message-ID: <usfh2m$13iul$1@solani.org>
References: <17b9fbfa8c84af29$69493$1340741$802601b3@news.usenetexpress.com>
<us84e9$vq9u$4@solani.org>
<17b9ff9f604547c9$45709$2535552$802601b3@news.usenetexpress.com>
<l4ps13Fjbr1U1@mid.individual.net> <us8ts4$106kd$5@solani.org>
<us9psm$e72r$2@dont-email.me> <usa875$119lp$1@solani.org>
<uschcb$130df$1@dont-email.me> <usdkad$12kro$2@solani.org>
<usdlh7$1am30$2@dont-email.me> <usdn29$12kro$3@solani.org>
<usf0vb$1megs$3@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Fri, 8 Mar 2024 17:15:02 -0000 (UTC)
Injection-Info: solani.org;
logging-data="1166293"; mail-complaints-to="abuse@news.solani.org"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:GhJoAbyqp4fB+c8A+Dc4e3w9gyk=
X-User-ID: eJwNy8EBwCAIA8CVaCBBx1GU/Uew9z+6PlWGqGCz3bn7CN2o2dKxS5knK2+Gr1KNmheJyrU0/+wjAjRsG8gHVTYU3w==
In-Reply-To: <usf0vb$1megs$3@dont-email.me>
Content-Language: en-US
X-Antivirus-Status: Clean
X-Antivirus: Avast (VPS 240308-0, 3/7/2024), Outbound message
 by: Physfitfreak - Fri, 8 Mar 2024 17:15 UTC

On 3/8/2024 6:40 AM, Chris Ahlstrom wrote:
> Physfitfreak wrote this copyrighted missive and expects royalties:
>
>> Educating some cro-magnon ass.
>
> Not bad for a Neanderthal!
>
> "Neanderthal tooth in Iran from 42,000 years ago redraws human evolution."
>

Seems like you're the one using hookah.

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor