Frab – free and open conference management system
frab.github.io
Frab – free and open conference management system
1–10 of 38 posts
Re: Frab – free and open conference management system
#2I'm adding Frab to a list of Meetup alternatives and related meeting software:
https://github.com/joelparkerhenderson/social_network_plan/b...
Re: Frab – free and open conference management system
#3Re: Frab – free and open conference management system
#4Re: Frab – free and open conference management system
#5Anyone reviewed how it compares to indico or eventbirght?
Re: Frab – free and open conference management system
#6Edit: I just realized that I meant to say "conventions" for the second part, and also that there's a lot more crossover than I would have originally thought.
Re: Frab – free and open conference management system
#7Is this more geared towards educational/business conferences (where the primary motivation is speakers disseminating information to large groups of people) can it do more entertainment conferences or fan cons with booths and a show floor and the like? Edit: I just realized that I meant to say "conventions" for the second part, and also that there's a lot more crossover than I would have originally thought.
Re: Frab – free and open conference management system
#8 create_table "people", force: :cascade do |t|
# ...
t.string "first_name", limit: 255, default: ""
t.string "last_name", limit: 255, default: ""
t.string "gender", limit: 255
# ...
end
Our schema has a similar table, but with "prefix" instead of "gender", where on the front end a list pops down with Mr., Ms., etc. We just use the prefix to form the full name.I wonder where the need to track gender comes from in such an app. We manage events and conferences too, but gender hasn't come up beyond the salutation. Since they do care about gender maybe they will soon also want pronoun and possessive_pronoun columns.
Re: Frab – free and open conference management system
#9From Frab's schema.rb: create_table "people", force: :cascade do |t| # ... t.string "first_name", limit: 255, default: "" t.string "last_name", limit: 255, default: "" t.string "gender", limit: 255 # ... end Our schema has a similar table, but with "prefix" instead of "gender", where on the front end a list pops down with Mr., Ms., etc. We just use the prefix to form the full name. I wonder where the need to track ge…
Re: Frab – free and open conference management system
#10From Frab's schema.rb: create_table "people", force: :cascade do |t| # ... t.string "first_name", limit: 255, default: "" t.string "last_name", limit: 255, default: "" t.string "gender", limit: 255 # ... end Our schema has a similar table, but with "prefix" instead of "gender", where on the front end a list pops down with Mr., Ms., etc. We just use the prefix to form the full name. I wonder where the need to track ge…
So that’s why the gender might be needed.
As far as the preferred pronouns are concerned, I see them as something with heavy political connotations. No one who is not hard left believes in the necessity of the xir pronoun, and of course there are trans people also among the right!
So, to me it’s completely acceptable that something so controversial is not included.