A Pen by Stéphane Bisinger on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Name=AoE2 URL Opener | |
Comment=Play this game on Steam (Open URL) | |
Exec=/home/<youruser>/.local/bin/aoe2url %u | |
Icon=steam_icon_813780 | |
Terminal=false | |
Type=Application | |
MimeType=x-scheme-handler/aoe2de; | |
Categories=Game; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"theme": "kwan" | |
}, | |
"basics": { | |
"name": "Stéphane Bisinger", | |
"label": "Software Engineer", | |
"email": "[email protected]", | |
"website": "https://www.sbisinger.ch", | |
"phone": "+41 79 635 2861", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git --version | |
git version 2.19.0 | |
$ git log --graph --oneline my-feat-2 master -6 | |
* 4ce0262 (HEAD -> my-feat-2) SNS-558 chore: add sentry middleware to createSearchInquiry | |
| * dff2b2a (origin/master, origin/HEAD, master) Merge pull request #199 in HOM/sns from bugfix/same-recipient-for-e2e-test-makes-test-unstable to master | |
| * 06961b0 Merge pull request #196 in HOM/sns from bugfix/SNS-600-problems-removing-search-inquiries-from-Elastic-Search to master | |
| * 7dd576f Merge pull request #198 in HOM/sns from feature/SNS-584-saving-inactive-email-search-inquiry to master | |
|/ | |
* 57eea5d Merge pull request #193 in HOM/sns from feature/SNS-571-add-component-test-to-match-listings to master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Quotes.SubscriberControllerTest do | |
use Quotes.ConnCase | |
import Quotes.Factory | |
test "#index renders a list of subscribers" do | |
conn = build_conn() | |
subscriber = insert(:subscriber) | |
conn = get conn, subscriber_path(conn, :index) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script data-require="[email protected]" data-semver="1.5.0" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script> | |
<link rel="stylesheet" href="style.css" /> | |
<script src="script.js"></script> | |
</head> | |
<body ng-app="qall1"> |