• Welcome to the Speedsolving.com, home of the web's largest puzzle community!
    You are currently viewing our forum as a guest which gives you limited access to join discussions and access our other features.

    Registration is fast, simple and absolutely free so please, join our community of 40,000+ people from around the world today!

    If you are already a member, simply login to hide this message and begin participating in the community!

The "what-should-be-made-next? / is-there-yet?" software thread

should the mods stick this thread in the software forum?

  • yes

    Votes: 37 90.2%
  • no

    Votes: 4 9.8%

  • Total voters
    41
Joined
Aug 12, 2013
Messages
5,084
Location
Brazil
SS Competition Results
YouTube
Visit Channel
I created this thread for these purposes:
  • finding existing sofwares for our needs
  • requesting new sofware
  • discussing what could be developed next and the best way to aproach the app functionalities
In my sig you can find some software I developed, and there is so much else we can do!

Feel free to discuss and don't forget to answer the poll with your opinion
 
Last edited:

Waffles

Member
Joined
Apr 4, 2021
Messages
406
Location
Melbourne, Australia
Also we need something that can gen squan algs ig

Also if a way to gen CF Edges only algorithms in a 2 look phase that would be nice too. It’s not like I use CF or anything, but it would be interesting to do some kind of challenge with CF
 
Last edited:
Joined
Aug 12, 2013
Messages
5,084
Location
Brazil
SS Competition Results
YouTube
Visit Channel
Not just you

I was trying to find something to gen LL algorithms for Megaminx and there was literally norhing
https://github.com/jazzthief81/llminxsolver

Also we need something that can gen squan algs ig

Also if a way to gen CF Edges only algorithms in a 2 look phase that would be nice too. It’s not like I use CF or anything, but it would Ben interesting to do some kind of challenge with CF
https://github.com/cs0x7f/sq12phase
 
Joined
Aug 12, 2013
Messages
5,084
Location
Brazil
SS Competition Results
YouTube
Visit Channel
Do we have like a squan visualcube image generator in that cause I can't be bothered downloading the file lol
Algdb.net has a visualizer

generator


Copy image address and modify it

EDIT: Try this out too:

https://www.speedsolving.com/threads/alg-cubing-net.46468/post-1426584
https://squandb.net/?
 
Last edited:

Waffles

Member
Joined
Apr 4, 2021
Messages
406
Location
Melbourne, Australia
bumping this thread:

Does anyone know of an "alg-sorter" where you can put in specifications, paste in a bunch of text and remove the lines that don't contain (or do contain) the certain specifications?
 

CodingCuber

Member
Joined
Nov 10, 2019
Messages
703
Location
Melbourne
WCA
2019HERR14
Do we currently have a Pyraminx Image Generator (because a quick google search didn't bring up anything helpful)
you can now use Twizzle for that. Just put in the alg and go down to Alg Tools > Screenshot


bumping this thread:

Does anyone know of an "alg-sorter" where you can put in specifications, paste in a bunch of text and remove the lines that don't contain (or do contain) the certain specifications?

I don't understand. Could you elaborate or give an example of what one of these "specifications" might be?
 

Waffles

Member
Joined
Apr 4, 2021
Messages
406
Location
Melbourne, Australia
you can now use Twizzle for that. Just put in the alg and go down to Alg Tools > Screenshot




I don't understand. Could you elaborate or give an example of what one of these "specifications" might be?
like for example you put S2 in and it finds every line that has an S2 and options come up, like delete and remove lines not containing this

that was a bad one but it was all I could think of
 

CodingCuber

Member
Joined
Nov 10, 2019
Messages
703
Location
Melbourne
WCA
2019HERR14
like for example you put S2 in and it finds every line that has an S2 and options come up, like delete and remove lines not containing this

that was a bad one but it was all I could think of
Ah I see. Sorry I don't have any suggestions but I'll tell you if I find something.
 

CodingCuber

Member
Joined
Nov 10, 2019
Messages
703
Location
Melbourne
WCA
2019HERR14
that sounds easy to write a quick script for, i could help if you like
Possibly something a bit like this? Just create a text file containing a list of algorithms in the same folder as the python file and it should work fine.
@Waffles

Python:
alg_list = open("algs.txt", 'r').read().splitlines()

filter_requirement = input("Exclude algs containing: ")
check_for_suffix = False

if len(filter_requirement) > 1:
    check_for_suffix = True

output = []
for i in alg_list:
    if filter_requirement in i:
        if check_for_suffix:
            if i[i.index(filter_requirement) + 1] == filter_requirement[1]:
                print("Discarded item: " + i)
            else:
                output.append(i)
        elif not check_for_suffix:
            if i[i.index(filter_requirement) + 1] == " ":
                print("Discarded item: " + i)
            else:
                output.append(i)
    else:
        output.append(i)

print("OUTPUT:")
for i in output:
    print(i)
 
Last edited:
Top