Andrew Kennedy

Results 32 comments of Andrew Kennedy

I just found out about the XDG spec, and this is a huge issue. I know my home directory is completely cluttered by tons of config files, and if more...

Well one example where a question arises is [here](https://github.com/hpicgs/glexamples/blob/master/source/openglexample/OpenGLExample.cpp#L118) where you bind a VAO using globjects but then draw the triangles using a standard openGL call, `glDrawArrays`. Why not use...

also, here's some code I have questions about: ```c++ auto g_vao = make_ref(); auto g_vertexBuffer = make_ref(); g_vertexBuffer->setData(g_vertices, GL_STATIC_DRAW); auto g_colorBuffer = make_ref(); g_colorBuffer->setData(g_colors, GL_STATIC_DRAW); auto binding = g_vao->binding(0); binding->setAttribute(0);...

Alright, so I got my project to compile again. My solution is to use a container of `ref_ptr`. The problem I was having is I was using code like this:...

I'm not sure about this because the first thing that comes to mind for me are things like xargs which has an option `-0`. Needless to say, negative values aren't...

Can I see an example usage? For reference, I'm using the QL driver and am using the latest version of the `upper.db` package. My QL table is defined as such...

That's interesting. I just tested in DrRacket 6.4 and it still doesn't function correctly. I'll probably just turn it off then, at least for typed Racket and plai-typed. Maybe something...

@jariz any updates? If you or @sct can't take this over I might see if I can't paginate your PR over the holidays, as my users of my server have...

I want to use gyro as gyro as well, not just as Mouse or Joystick. Some emulators and games accept raw gyro input and having the ability to use native...