jonatanklosko/material-ui-confirm 131
Simple confirmation dialogs built on top of @material-ui/core and straightforward to use thanks to React Hooks
Client-driven interactive widgets for Livebook
A collection of Livebook notebooks
jonatanklosko/md-collection-pagination 6
Angular Material Design component for paginating a collection.
A simple web app for creating WCA-like rankings for specific group of people.
Task and group management tool for WCA competition organizers.
Web app for storing and exploring cubing algorithms.
A tiny tool for practicing recognition of newly learnt cubing algorithms.
jonatanklosko/internationalize 2
Translating Rails apps made easy.
pull request commentthewca/worldcubeassociation.org
Publish Finance Documents to the Site
I have taken a look at your code and the link wouldn't work if the builder update was merged. I will change the builder to make it copy folders inside of the static folder into the documents folder so that you don't have to update your code in any way.
comment created time in 7 minutes
issue commentelixir-nx/livebook
As other input options will appear, you might want to change radio button by select
if it is within the design proposal, it would look like this:

comment created time in 9 minutes
issue openedelixir-nx/livebook
https://user-images.githubusercontent.com/30236552/122628286-a7d94e00-d08b-11eb-8b72-3636f4758ac7.mp4
I started to think of a way to add the textarea I managed to get a result but I don't know if it is the path they would like to follow.
When I add the textarea to get for line breaks I only stop at the last occurrence of \n but this breaks the input test.
Is allowing line breaks in an input really a problem? if yes, how can we get around ?

to IO.gets work with textarea I made the adjustment below in the file io_proxy.ex
defp line_from_input(input) do
case :binary.match(input, ["\r\n", "\n"]) do
:nomatch ->
{input, ""}
{pos, len} ->
size = byte_size(input)
line = binary_part(input, 0, pos + len)
rest = binary_part(input, pos + len, size - pos - len)
{line_tail, rest_tail} = line_from_input(rest)
{line <> line_tail, rest_tail}
end
end
created time in 11 minutes
pull request commentthewca/worldcubeassociation.org
Publish Finance Documents to the Site
@saranshgrover this did indeed cause an issue. The way the builder works right now is it creates temporary PDFs in the documents folder, copies them into build and then deletes all PDFs in documents. I have changed the builder here and moved the finance documents to a new "static" folder. All pre-rendered PDFs should be stored here; the builder copies them at the end, so they will be found in build/static/finances.
comment created time in 21 minutes
pull request commentthewca/worldcubeassociation.org
Fixed #4984, edit schedule default slot duration
LGTM (although I'm not a WST member :P
comment created time in 28 minutes
issue commentthewca/worldcubeassociation.org
Add the possibility to switch to a dark mode
I feel like we should wait until all of the most important pages have been migrated to React and then use the fomantic UI to set dark mode
comment created time in 32 minutes
PR opened thewca/worldcubeassociation.org
Addresses issue https://github.com/thewca/worldcubeassociation.org/issues/4673. This simply sets the default to registration emails for delegates and organizers to false, so that they can opt in to receiving these emails if they so choose. Please review that I implemented the change correctly.
pr created time in 36 minutes
issue commentthewca/worldcubeassociation.org
Gender: Change 'other' to 'prefer not to say'
This conversation actually got me thinking about why the WCA even needs to store gender information. It's not like speedcubing is an athletic sport where there's an unfair advantage towards any gender.
I listed a couple reasons 2 messages above. Another is we now have gender rankings on the website.
Oh, I'm sorry. I didn't realize we even had those rankings. I think male, female and other should be fine. Maybe we can email the competitors with "other" and ask for their opinion?
comment created time in an hour
issue commentthewca/worldcubeassociation.org
Notify me when someone registers checkbox errors when less than 28 days before the competition
Not that this matters, but Since the start of 2019, a majority of people have had this checkbox checked (but that might just be due to it being the default option):
So I wouldn't change the default, but I definitely think it should be moved to a user preferences page.
I'm almost certain that's why
comment created time in an hour
issue commentthewca/worldcubeassociation.org
Gender: Change 'other' to 'prefer not to say'
This conversation actually got me thinking about why the WCA even needs to store gender information. It's not like speedcubing is an athletic sport where there's an unfair advantage towards any gender.
I listed a couple reasons 2 messages above. Another is we now have gender rankings on the website.
comment created time in an hour
issue commentthewca/worldcubeassociation.org
Allow organizers to email users who have bookmarked the competition
I don't see this as useful personally. I just bookmark comps to make sure I get an email when the registration opens.
comment created time in an hour
issue commentthewca/worldcubeassociation.org
Gender: Change 'other' to 'prefer not to say'
This conversation actually got me thinking about why the WCA even needs to store gender information. It's not like speedcubing is an athletic sport where there's an unfair advantage towards any gender.
comment created time in an hour
issue commentthewca/worldcubeassociation.org
Port the person profile page to Fomantic UI
@denthebro to be clear - are you working on porting this to React, or simply porting it to Formantic UI?
Well, both. I am making a React component with the use of Fomantic UI. Here's an image of my current WIP: https://imgur.com/3Vz7zI0
comment created time in an hour
push eventjonatanklosko/wca_statistics
commit sha 287a462cd4431370f76cffb3c3474bf759bd03f3
deploy: b61a354946553f96a2dfaaae874c8c2e585750e7
push time in an hour
issue commentthewca/worldcubeassociation.org
Hide (or relocate) post authors.
I agree with @Jambrose777
comment created time in 2 hours
PR opened thewca/worldcubeassociation.org
Fixes #4984 where the default was changed in #4198
pr created time in 2 hours
issue commentthewca/worldcubeassociation.org
Dues redirect fields and delegates export for WFC
@Jambrose777 you're right, competition by competition would be good functionality - although we already have that in that Delegates can forward on an invoice (but are still responsible for paying it). However making it competition-by-competition would add extra steps for the people who are always in one category (about 1/3 of delegates). Currently those delegates don't have to do anything as it is captured in a spreadsheet the WFC maintains - this is really just shifting existing functionality to the website and making it user editable.
Gotchya, so both ideas can be implemented to cover both cases :) (I hadn't realized WFC was already doing this as a manual process with spreadsheets)
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Dues redirect fields and delegates export for WFC
@Jambrose777 you're right, competition by competition would be good functionality - although we already have that in that Delegates can forward on an invoice (but are still responsible for paying it). However making it competition-by-competition would add extra steps for the people who are always in one category (about 1/3 of delegates). Currently those delegates don't have to do anything as it is captured in a spreadsheet the WFC maintains - this is really just shifting existing functionality to the website and making it user editable.
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Homepage Posts Sorting/Category Feature
Marked as low priority, since it is no longer the homepage and we removed the two biggest categories for this. But We do already have tags for posts (which I believe are fully utilized for all posts already?) so it would just be creating a dropdown menu to filter on those tags. A user is also able to use the main search feature to find all posts of a certain type. Still a good easy first issue for anyone wanting to do it!
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Show calendar view by default in schedule tab
See poll: https://forum.worldcubeassociation.org/t/competition-schedule-default-view/14287
I personally prefer the Calendar view and always have to change it.
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Dues redirect fields and delegates export for WFC
Just a note: Would it be better for this to be on the competition level and not the user level?
Ie. I may have the following comps:
- Comp 1, where I want the dues sent to me, the Delegate
- Comp 2, where I was a supporting Delegate and the dues should be sent to the Main Delegate who handled finances.
- Comp 3, where the organizer handled finances
- Comp 4, where a regional organization handles finances.
You're suggestion would imply that I as a Delegate would always fall into 1 of the 4 categories, where it is often the case that it may be different per competition.
comment created time in 2 hours
issue commentelixir-nx/nx
For those tracking this issue, #423 uses a new version of TensorFlow which should support Mac ARM. I believe you might need Bazel 4.1. If anybody would like to take a shot at building off of that branch, that would be really appreciated
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Reset instructions for Stripe aren't accurate
Is this still an issue? Admittedly, I'm too scared to try it with my own comps :P
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Add the possibility to switch to a dark mode
Might be kind of difficult, but would definitely be a nice to have! I've always accomplished this with Themes on projects I worked on, but those themes were also used to change looks quite often, so it would be overkill here maybe?
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Checking registration data for existing names
Marked as high priority as this was a feature that we lost with Cubecomps being deprecated, and the manual process for Delegates is quite tedious as Tim mentioned.
comment created time in 2 hours
issue closedthewca/worldcubeassociation.org
Update the "Manage events" tab to comply with Regulations
Right now Delegates/Organizers can select events format that are no longer recognized on the Regulations while editing a competition. This should be updated so you can only select recognized formats by the Regulations (see regulation 9b).
closed time in 2 hours
Ivan-Brigidanoissue commentthewca/worldcubeassociation.org
Update the "Manage events" tab to comply with Regulations
Closing in favor of #3752
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
Can WFC (Cc: @Mollerz) give a bit of explanation of what they would want this to look like / the different parts this impacts.
It looks like whoever picks this up will need to study #4709 for how country bands are used.
comment created time in 2 hours
issue commentthewca/worldcubeassociation.org
When I remove an event or round, it is still visible in the "Manage schedule" page
Closing this as expected behavior. We also give a warning/error before the competition is announced and we have an open issue for after its announced: #4653
comment created time in 2 hours
issue closedthewca/worldcubeassociation.org
When I remove an event or round, it is still visible in the "Manage schedule" page
Describe the bug When I remove an event or round, it is still visible in the "Manage schedule" page
To Reproduce Steps to reproduce the behavior:
- Go to a competition you can manage
- Add some events and add all rounds to the schedule
- Go to "Manage events" and remove an event or remove a round
- Go to "Manage schedule". The removed round(s) are still there
Expected behavior In step 4, I expect the removed round(s) to be removed
Desktop (please complete the following information):
- OS: Windows
- Browser: Chrome
closed time in 2 hours
Goosly
