Author Topic: FIBONACCI BUTTSORT  (Read 5794 times)

0 Members and 1 Guest are viewing this topic.

Offline Albytok

  • LV0 Newcomer (Next: 5)
  • Posts: 2
  • Rating: +1/-1
    • View Profile
FIBONACCI BUTTSORT
« on: January 17, 2013, 03:10:50 pm »
In this thread we shall discuss the various implementations of the

FIBONACCI BUTTSORT

Offline Juju

  • Incredibly sexy mare
  • Coder Of Tomorrow
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 5730
  • Rating: +500/-19
  • Weird programmer
    • View Profile
    • juju2143's shed
Re: FIBONACCI BUTTSORT
« Reply #1 on: January 17, 2013, 04:34:00 pm »
what is this I don't even also rainbows everywhere?

Remember the day the walrus started to fly...

I finally cleared my sig after 4 years you're happy now?
THEGAME
This signature is ridiculously large you've been warned.

The cute mare that used to be in my avatar is Yuki Kagayaki, you can follow her on Facebook and Tumblr.

Offline Adriweb

  • Editor
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1708
  • Rating: +229/-17
    • View Profile
    • TI-Planet.org
Re: FIBONACCI BUTTSORT
« Reply #2 on: January 17, 2013, 04:36:15 pm »
According to the interwebz : "it involves zipping the string with a cycled list of the underline and overline function"
My calculator programs
TI-Planet.org co-admin.
TI-Nspire Lua programming : Tutorials  |  API Documentation

Offline Albytok

  • LV0 Newcomer (Next: 5)
  • Posts: 2
  • Rating: +1/-1
    • View Profile
Re: FIBONACCI BUTTSORT
« Reply #3 on: January 17, 2013, 06:53:32 pm »
Yeah, I was planning on using a regular buttsort, but overline doesn't work on this forum...
« Last Edit: January 17, 2013, 06:53:47 pm by Albytok »
Sig.

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: FIBONACCI BUTTSORT
« Reply #4 on: January 17, 2013, 07:03:58 pm »

Offline Albytok

  • LV0 Newcomer (Next: 5)
  • Posts: 2
  • Rating: +1/-1
    • View Profile
Re: FIBONACCI BUTTSORT
« Reply #5 on: January 17, 2013, 07:14:55 pm »
I AM NOT GOING TO TELL YOU ANYTHING! MY METHODS SHALL FOREVER REMAIN A MYSTERY!

Edit: Here's the code for the rainbow buttsort, written in python.
Code: [Select]
#rbuttsort.py
# FOR PRODUCING A (RAINBOW) FIBONACCI BUTTSORT

ctags = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'purple',
        'indigo', 'blue', 'green', 'yellow', 'orange']
out = ''
i = 0

print 'What would you like buttsorted today?\n',
sentence = str(raw_input(">>> "))

for x in sentence:
    if x == ' ':
        out = out + ' '
        continue
    i = i + 1
    if i > 11: i = 0
    out = out + '[color=' + ctags[i] + ']' + x + '[/color]'
   
f = open('out.txt', 'w')
f.write('[b][i]' + out + '[/i][/b]\n')
f.close()

print 'Enjoy your buttsort.',
« Last Edit: January 17, 2013, 07:17:28 pm by Albytok »
Sig.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Re: FIBONACCI BUTTSORT
« Reply #6 on: January 17, 2013, 09:15:06 pm »
My browser censors all-caps words D:
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: Fibonacci Numbers Rock
« Reply #7 on: January 17, 2013, 09:24:21 pm »
Code: [Select]
str(raw_input(">>> "))
Is that really needed? Couldn't you leave str() out of that since raw_input() returns a string anyways? O_o

Offline Roboman

  • LV3 Member (Next: 100)
  • ***
  • Posts: 96
  • Rating: +10/-2
  • These peanuts taste so good!
    • View Profile
Re: LOLWUT
« Reply #8 on: January 17, 2013, 09:26:52 pm »
Wut is a buttsort?
and albytok, I find that profile picture... mildy disturbing *.*
« Last Edit: January 17, 2013, 09:30:23 pm by Roboman »
:w00t:
UP-UP-DOWN-DOWN-LEFT-RIGHT-LEFT-RIGHT-B-A-ENTER


I always post in good faith!
http://en.wikipedia.org/wiki/Good_faith
If I end up being rude please tell me and understand!
Spoiler For Spoiler:
:-[  I never mean to say things ... negativley...
I am a bit socialy aqward so I often dont pick up on sarcasm or recognize myself being rude...

...

I am sorry for any offence...

Offline epic7

  • Chopin!
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2200
  • Rating: +135/-8
  • I like robots
    • View Profile
Re: FIBONACCI BUTTSORT
« Reply #9 on: January 17, 2013, 09:36:35 pm »
Buttsort? O.O
What's that supposed to mean :P

Offline pimathbrainiac

  • Occasionally I make projects
  • Members
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1731
  • Rating: +136/-23
  • dagaem
    • View Profile
Re: FIBONACCI BUTTSORT
« Reply #10 on: January 17, 2013, 09:39:36 pm »
I believe it's just cool graphical text (like wordart)
I am Bach.

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: FIBONACCI BUTTSORT
« Reply #11 on: January 18, 2013, 12:21:22 am »
I'm glad that I'm not the only one who's at a loss with this thread. What's the joke? ??? And what in the world is a buttsort ?

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: FIBONACCI BUTTSORT
« Reply #12 on: January 18, 2013, 12:38:15 am »
Could this thread be just simply declared as spam? :P

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Albytok

  • LV0 Newcomer (Next: 5)
  • Posts: 2
  • Rating: +1/-1
    • View Profile
Re: FIBONACCI BUTTSORT
« Reply #13 on: January 18, 2013, 11:48:50 am »
Quote
Wut is a buttsort?
Buttsort? O.O What's that supposed to mean :P

And what in the world is a buttsort ?

Basically this
According to the interwebz : "it involves zipping the string with a cycled list of the underline and overline function"

Image:
Sig.

Offline Juju

  • Incredibly sexy mare
  • Coder Of Tomorrow
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 5730
  • Rating: +500/-19
  • Weird programmer
    • View Profile
    • juju2143's shed
Re: FIBONACCI BUTTSORT
« Reply #14 on: January 18, 2013, 01:44:09 pm »
Interesting. This is mildly confusing because the name sounds like a joke, but still it's pretty interesting.

Remember the day the walrus started to fly...

I finally cleared my sig after 4 years you're happy now?
THEGAME
This signature is ridiculously large you've been warned.

The cute mare that used to be in my avatar is Yuki Kagayaki, you can follow her on Facebook and Tumblr.