i have a folder wih parquet files. the former will work, no?
2019-03-08 06744, 2019
renz joined the channel
2019-03-08 06732, 2019
iliekcomputers
pristine--: yeah, should
2019-03-08 06712, 2019
pristine--
lemme test. I thought i need to specify the extension. spent so much time breaking and joining paths
2019-03-08 06720, 2019
pristine--
should have asked earlier :(
2019-03-08 06727, 2019
ruaok
Mr_Monkey: are you working on a PR for LB? just wondering if we should update beta now or wait for you.
2019-03-08 06745, 2019
Mr_Monkey
Not right this instant, go ahead and update :)
2019-03-08 06750, 2019
ruaok
k
2019-03-08 06709, 2019
ruaok
iliekcomputers: do you want Mr_Monkey to review your PR? its all python stuff..
2019-03-08 06728, 2019
baniket
Mr_Monkey: i was also interested in the user experience project(Bookbrainz) for GSoc. I was thinking of implementing it through storing the state of redux store in the database.
pristine-- high on fever :( feeling hot in cold. lol
2019-03-08 06728, 2019
baniket
I was thinking that we add a state of array book ids in the redux store, store the ids if the books a person has marked and save it to the database. Everytime a person renders the root component, an action creator can be called that queries the db and set the state for the user, in the componentDidMount method
2019-03-08 06738, 2019
renz has quit
2019-03-08 06740, 2019
amCap1712 joined the channel
2019-03-08 06740, 2019
baniket
Mr_Monkey: Or is it a bad implementation?
2019-03-08 06701, 2019
pristine--
if a button is working okay, but it doesn'it show any colour change or anything that makes it hard for the user to know if it worked or not.
2019-03-08 06708, 2019
pristine--
what can we call such a button
2019-03-08 06714, 2019
pristine--
unresponsive?
2019-03-08 06738, 2019
pristine--
I think unresponsive won't be the appropriate word
2019-03-08 06743, 2019
pristine--
any suggestions?
2019-03-08 06728, 2019
CatQuest
I remember the time html buttons looked like grey things that stood out nad whne you press they where indented
2019-03-08 06750, 2019
CatQuest
/re that that convo abut 4 meg drives and whatnot
2019-03-08 06719, 2019
CatQuest
(hey i started online in 2000, I can't inverse wang-wave about tiny spaces. i gotta work with what i can)
2019-03-08 06725, 2019
Mr_Monkey
baniket: Ok, that's a bit clearer :) I would recommend having a look at how we load an entity (when you visit, say, an Edition's page).
2019-03-08 06725, 2019
Mr_Monkey
ExpressJS hooks are used to load data from the DB and then passing that to the component-to-be-rendered. It's a bit complex with server-side rendering, but a good starting point is: https://github.com/bookbrainz/bookbrainz-site/blo…
baniket: In short, the server fetches data from the DB, creates a redux store, passes that store to a component, renders it and sends all that as HTML to the client.
2019-03-08 06737, 2019
outsidecontext has quit
2019-03-08 06753, 2019
baniket
Mr_Monkey: So is it using server side rendering?
2019-03-08 06715, 2019
Mr_Monkey
Correct. That's why you'll find a lot of that code in `src/server`
2019-03-08 06735, 2019
baniket
Yes, that makes sense, that was what i was confused about. Guess I'll have to learn server side rendering then