John Hamelink

Results 74 comments of John Hamelink

# Calculating Occurrences I've been doing some research into how other libraries such as [ice_cube](https://github.com/seejohnrun/ice_cube) handle the production of occurrences. Based on my research I will present my opinions on...

@lpil you may be right that it's out of scope - I'll leave the final call on that to you. `DTSTART` and `DTEND` provide the initial timstamps for the initial...

I've just started using ejira, and I've noticed it does this also. A JIRA project I've imported makes heavy use of the `{color:#00b8d9}Example{color}` syntax. I don't know if it's possible...

It's not the end of the world - just being able to escape JIRA's UI is a huge win on its own :) But a nice to have!

Hey friends, there is now an Xorg option to fix this issue with libinput 1.2.x: > The steps I took were to copy the default libinput Xorg config (/usr/share/X11/xorg.conf.d/40-libinput.conf) to...

I also have a Steelseries Arctis Pro. `lsusb` shows the following: ``` lsusb | grep SteelSeries Bus 005 Device 012: ID 1038:1294 SteelSeries ApS Arctis Pro Wireless Bus 005 Device...

@csmith yup, the headsetcontrol-git package on Arch's AUR now works with my Arctis Pro Wireless headphones! The distinction is indeed confusing 🙃

I've written a controller which can provide Token Auth for a SPA: `/web/controllers/api/session_controller.ex`: ```elixir defmodule Example.Api.Coherence.SessionController do @moduledoc """ Handle the authentication actions. """ use Coherence.Web, :controller use Timex require...

@smpallen99 one thing that *would* be nice is if the error could be taken from a view instead of being a string.

@smpallen99 in my example I'm returning JSON, so it'd be much cleaner if I could refer to a function in a view just as I do when I `render("error.json")` in...