Skip to content

Instantly share code, notes, and snippets.

View jesperborgstrup's full-sized avatar

Jesper Borgstrup jesperborgstrup

View GitHub Profile
@jesperborgstrup
jesperborgstrup / _assignment.md
Created March 6, 2024 18:41
Endavu Senior Front-End Engineer Take Home Assignment

Financial asset viewer

Objective:

Develop a web application front-end for a financial asset viewer with a focus on user experience.

The application should allow users to interactively view a list of financial assets, as well as view details for each individual asset.

We don't expect you to spend more than 3-6 hours on this exercise. See Evaluation below for how your effort will be evaluated.

# If you have OpenSSL installed, we recommend updating
# the following line to use "https"
source 'http://rubygems.org'
gem "rouge", "1.7.2"
gem "middleman", "~>3.3.0"
# For syntax highlighting
gem "middleman-syntax"
@jesperborgstrup
jesperborgstrup / RecurringJob.php
Last active February 27, 2024 19:06
Quick way to perform recurring jobs with php-resque-scheduler
<?php
use Resque;
use ResqueScheduler\ResqueScheduler;
/**
* Base class for recurring Resque jobs.
*
* Jobs must implement the recurrentSetUp(), recurrenctPerform(), and recurrentTearDown()
* methods instead of the normal setUp(), perform(), and tearDown() methods.
*

Keybase proof

I hereby claim:

  • I am jesperborgstrup on github.
  • I am jesperborgstrup (https://keybase.io/jesperborgstrup) on keybase.
  • I have a public key whose fingerprint is 7695 4A21 9E8C 6EB2 5E16 3363 2C70 5369 E014 2845

To claim this, I am signing this object:

@jesperborgstrup
jesperborgstrup / lrs-pyec.py
Created May 2, 2014 09:03
Linkable Ring signatures using Py-EC
# MIT License
#
# Copyright (C) 2014 Jesper Borgstrup
# -------------------------------------------------------------------
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so,
@jesperborgstrup
jesperborgstrup / ec_lsag_test.py
Last active March 11, 2023 21:23
Python implementation of Linkable Ring Signatures over Elliptic curves
# MIT License
#
# Copyright (C) 2014 Jesper Borgstrup
# -------------------------------------------------------------------
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so,