Skip to content

Instantly share code, notes, and snippets.

View juliaogris's full-sized avatar

Julia Ogris juliaogris

View GitHub Profile
sa := -0.007
sb := -0.006
sc := -0.005
sd := -0.004
se := -0.003
radius := 5
pi := 3.141593
tau := 2 * pi
dot0 := {x:50 y:5 dx:1 dy:1}
dot1 := {x:75 y:25 dx:1 dy:1}
dot2 := {x:95 y:50 dx:-1 dy:1}
dot3 := {x:75 y:75 dx:-1 dy:1}
dot4 := {x:50 y:95 dx:-1 dy:-1}
dot5 := {x:25 y:75 dx:-1 dy:-1}
dot6 := {x:5 y:50 dx:1 dy:-1}
dot7 := {x:25 y:25 dx:1 dy:-1}
dots := [dot0 dot1 dot2 dot3 dot4 dot5 dot6 dot7]
package main
import (
"machine"
"time"
"unicode"
)
const (
unit = time.Millisecond * 200
d := false
width 1
on down x:num y:num
d = true
move x y
end
on up
d = false

Retired!

This little task list has been retired in favour of GitHub projects

Bugs 🐞🪲🐜

No known bugs 🎉

Goals Q3 2023

ANZ's first Summer of Code intern

  • Add continuous integration with Travis-CI and linting with gometalinter to anz-bank/decimal
  • Fix inifinty arithmethic bug
  • Add dec test suite parser for http://speleotrove.com/decimal/dectest.html
  • Receive permission to use dec test from Copyright holder and editor of IEEE754-2008 Mike Cowlishaw
  • Add ddAdd arithmetic with Half up rounding - implementation and testing
  • Propagate and parse payload Nans (e.g. Nan1) - ipmlementation and testing
  • Fix Cmp function to compare Nans and add tests

How can large organisations, like banks build on their innovation muscle?

This question could be answered from many different perspectives including culture, people or tools. I'll zero in on Hackathons as a concrete method for fostering innovation. In the past I've been greatly inspired by the productivity and creativity unleashed during hackathons.

  • For a big corporate I believe preparation is the key to a success hackathon:
  • Thoughtfully pick a hackathon theme.
  • Provide real, de-identified data either through and API or as a database dump.
  • Create a positive environment with a good choice of venue, food and MC.
  • Award the best ideas, executions and presentations.
  • Be committed to taking the best projects to the next level.
@juliaogris
juliaogris / gist:1f0624686d4cba0f30384b72cdb088e3
Created December 20, 2017 07:18 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:

On innovation and disruption

In my initial weeks of my career in the financial and banking industry my ability to give in-depth feedback on a vendor project of the size and complexity of the current Architecture Simplification is limited. I'll therefore take a step back and focus on a high level view of what I believe the banking industry is going to experience in the near future and how it ties in with the strategy behind Architecture Simplification .

Musing on the fate of big banks

In my opinion big banks are going to be majorly disrupted in the next decade. An argument can be made that different industries have been disrupted along a line of increasing regulatory hurdles and risk to consumers.

@juliaogris
juliaogris / index.html
Last active February 22, 2017 06:12
Minimalist HTML, CSS, JS Navigation - demo: https://goo.gl/S7ZF8W
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Simple nav</title>
<link rel=stylesheet href="styles.css" />
<script type="text/javascript" src="script.js" async defer></script>
</head>
<body>