I hereby claim:
- I am olso on github.
- I am olso (https://keybase.io/olso) on keybase.
- I have a public key ASAjyl8XHSDHwxAZp-o0tBRL9pOHZTa0IUfL_oSL8V7jVQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
git log --after="2017-06-01" --until="2017-07-01" --pretty=format:'%ad;%s' --author='olso' > ~/Desktop/timesheet-june-log.csv |
open -n -a "Google Chrome" --args --disable-web-security --profile-directory="Profile 1" |
<? | |
// this script receives a Stripe dispute / chargeback and: | |
// | |
// - immediately refunds the payment | |
// - closes the user's account (in my DB, add your own code there) | |
// | |
// this is to automate dispute handling (because you never win a dispute on Stripe anyway) | |
// and by refunding avoiding the chargeback fee | |
// |
//Import ESCO using CSV files | |
create index ON :Occupation(ISCOGroup); | |
create index ON :Occupation(altLabels); | |
create index ON :Skill(altLabels); | |
create index ON :ISCOGroup(code); | |
create index ON :Skill(conceptUri); | |
create index ON :ISCOGroup(conceptUri); | |
create index ON :Occupation(conceptUri); | |
create index ON :Occupation(preferredLabel); | |
create index ON :Skill(preferredLabel); |
At DICOM Grid, we recently made the decision to use Haskell for some of our newer projects, mostly small, independent web services. This isn't the first time I've had the opportunity to use Haskell at work - I had previously used Haskell to write tools to automate some processes like generation of documentation for TypeScript code - but this is the first time we will be deploying Haskell code into production.
Over the past few months, I have been working on two Haskell services:
I will write here mostly about the first project, since it is a self-contained project which provides a good example of the power of Haskell. Moreover, the proces
#!/bin/bash | |
# | |
# The reason of creating this script is that Endpoint Security VPN installs it's own application firewall kext cpfw.kext | |
# which prevents for example PPTP connections from this computer, which is not appropriate if you need subj connection just | |
# from time to time | |
# Usage: checkpoint.sh load|unload | |
# You will need sudo power, of course | |
# | |
if [ $1 == "unload" ] |
Andy Thomason is a Senior Programmer at Genomics PLC. He has been witing graphics systems, games and compilers since the '70s and specialises in code performance.