Jump to content
Banner by ~ Discord The Overlord

Count to a million


DubWolf

CTAM after 1 million  

194 users have voted

  1. 1. What should happen after 1 million is reached?

    • Start over at 1
      30
    • Keep counting to infinity (count to the next million(s))
      107
    • Count back down to 1 (then back up)
      52
    • Other (pm or mention if you'd like)
      15


Recommended Posts

310207

(Only 689793 to go!)
Β 

310204
Β 

[color=#689798]

Oh, that's why the colour of the numbers matches the hex value... :P
That's pretty clever Greppertas! :D

Β 

Do you happen to have a computer capable of running shell scripts? A previous post led me to believe that you do.

  • Brohoof 1
Link to comment
Share on other sites

(edited)

310209

Β 

310207

Β 

(Only 689793 to go!)

Β 

Β 

Do you happen to have a computer capable of running shell scripts? A previous post led me to believe that you do.

Yes. :catface: I was thinking of that when you became Shin. Can you even use a shell script for this? ^_^ Although, it depends what you mean by shell. Bash? :)

Β 

310208

Β 

Yuck, accidentally swallowed a bit of toothpaste.

Mmmm, minty. :D

Edited by Nectar Bluegrass

sig-33081.sig-33081.sig-33081.sig-33081.


The artwork to the left of the signature is of my new *under construction* OC and was lovingly


drawn by @ThePiDay. I'm incredibly grateful for and delighted with his work.

Link to comment
Share on other sites

310.210


β€žI shall be quiet as a calm sea. Which is... not... very quiet.β€œ

β€žThis is intolerable!β€œ

β€žEven combat is a partnership... for a little while.β€œ

Link to comment
Share on other sites

310.213


β€žI shall be quiet as a calm sea. Which is... not... very quiet.β€œ

β€žThis is intolerable!β€œ

β€žEven combat is a partnership... for a little while.β€œ

Link to comment
Share on other sites

(edited)

310215
Β 

310211
Β 
I love mints.
Β 
But toothpaste down your throat isn't pleasant.


Aww, but it makes everything so much colder! No need for ice cubes when you can ingest fluoride instead! :lol:

Edited by Nectar Bluegrass
  • Brohoof 1

sig-33081.sig-33081.sig-33081.sig-33081.


The artwork to the left of the signature is of my new *under construction* OC and was lovingly


drawn by @ThePiDay. I'm incredibly grateful for and delighted with his work.

Link to comment
Share on other sites

310.219


β€žI shall be quiet as a calm sea. Which is... not... very quiet.β€œ

β€žThis is intolerable!β€œ

β€žEven combat is a partnership... for a little while.β€œ

Link to comment
Share on other sites

310220

(Only 689780 to go!)
Β 

Here's my CTaM bash script. (I assume you know how copy it to a text file and get it working.)

Β 

Β 

#!/bin/bash
# Count to one million script with text coloring (for forum games)
# This script requires a program called 'xsel' to
# copy the text to the X clipboard. 

# This script is contributed to the public domain with CC0.
# See https://creativecommons.org/publicdomain/zero/1.0/legalcode for more info.

# Checks if command line options are missing.
if [[ $1 = "" ]]; then
    echo "Usage: `basename $0` [NUMBER]..."
    exit 1;
fi

let "NUMBER = $1" 
QUITHANDLER=0
END=1

while [[ $QUITHANDLER -lt $END ]]
do
let "REMAINING = 1000000 - $NUMBER"
echo "[color=#$NUMBER]$NUMBER[/color]

(Only [color=#$REMAINING]$REMAINING[/color] to go!)"  | xsel -b -i

echo "Copied to clipboard ($NUMBER) Press enter to repeat.
Type any number greater than 0 to quit."

read QUITHANDLER
let "NUMBER++"
done

Β 

Β 

  • Brohoof 1
Link to comment
Share on other sites

310.222

Β 

Damn Bash looks complicated D:


β€žI shall be quiet as a calm sea. Which is... not... very quiet.β€œ

β€žThis is intolerable!β€œ

β€žEven combat is a partnership... for a little while.β€œ

Link to comment
Share on other sites

(edited)

310223

(Only 689777 to go!)
Β 

It's somewhat arcane, but it's better than batch scripting!


See you later everyone!

Edited by GrepPIEtas
  • Brohoof 2
Link to comment
Share on other sites

(edited)

310220

310220

(Only 689780 to go!)
Β 
Here's my CTaM bash script. (I assume you know how copy it to a text file and get it working.)

Β 

#!/bin/bash
# Count to one million script with text coloring (for forum games)
# This script requires a program called 'xsel' to
# copy the text to the X clipboard. 

# This script is contributed to the public domain with CC0.
# See https://creativecommons.org/publicdomain/zero/1.0/legalcode for more info.

# Checks if command line options are missing.
if [[ $1 = "" ]]; then
    echo "Usage: `basename $0` [NUMBER]..."
    exit 1;
fi

let "NUMBER = $1" 
QUITHANDLER=0
END=1

while [[ $QUITHANDLER -lt $END ]]
do
let "REMAINING = 1000000 - $NUMBER"
echo "[color=#$NUMBER]$NUMBER[/color]

(Only [color=#$REMAINING]$REMAINING[/color] to go!)"  | xsel -b -i

echo "Copied to clipboard ($NUMBER) Press enter to repeat.
Type any number greater than 0 to quit."

read QUITHANDLER
let "NUMBER++"
done

Β 

Woah, thank you! :wub: I'll go ahead and copy it to /bin. :D
Β 
I need xsel, I believe? :)
Β 
To run it correctly do I prefix it with sudo or is it not necessary? I just thought because it needs to access my clipboard.
Β 

ambler@custompc:~$ sudo ctam

Β 
or
Β 

ambler@custompc:~$ sudo su
root@custompc:~# ctam

Β 
or
Β 

ambler@custompc:~$ ctam

See ya Greppertas! :D

Edited by Nectar Bluegrass

sig-33081.sig-33081.sig-33081.sig-33081.


The artwork to the left of the signature is of my new *under construction* OC and was lovingly


drawn by @ThePiDay. I'm incredibly grateful for and delighted with his work.

Link to comment
Share on other sites

310228

310.226

Β 

*Sigh*

Are you okay? :)


sig-33081.sig-33081.sig-33081.sig-33081.


The artwork to the left of the signature is of my new *under construction* OC and was lovingly


drawn by @ThePiDay. I'm incredibly grateful for and delighted with his work.

Link to comment
Share on other sites

(edited)

310230

310.229

Β 

I'm fine^^

You're sure? *boop* :catface:

Edited by Nectar Bluegrass

sig-33081.sig-33081.sig-33081.sig-33081.


The artwork to the left of the signature is of my new *under construction* OC and was lovingly


drawn by @ThePiDay. I'm incredibly grateful for and delighted with his work.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Join the herd!

Sign in

Already have an account? Sign in here.

Sign In Now
Γ—
Γ—
  • Create New...