Skip to content

Instantly share code, notes, and snippets.

View michaelpomogajko's full-sized avatar

Michael Pomogajko michaelpomogajko

  • Berlin, Germany
View GitHub Profile
@michaelpomogajko
michaelpomogajko / resume.json
Last active July 11, 2023 13:03
resume.json
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"meta": {
"theme": "elegant",
"version": "v1.0.0",
"canonical": "https://github.com/jsonresume/resume-schema/blob/v1.0.0/schema.json"
},
"basics": {
"name": "Michael Pomogajko",
"label": "Fullstack Software Developer & Engineer",
@michaelpomogajko
michaelpomogajko / corona-hotlines.json
Last active April 15, 2020 18:31
corona-hotlines-de
{
"version": "0.1",
"sources": [
"https://www.bbk.bund.de/SharedDocs/Downloads/BBK/DE/Sonstiges/Coronavirus_Hotlines_Bundeslaender.pdf?__blob=publicationFile",
"https://www.krankenversicherung.net/coronavirus-hotlines",
"https://www.tk.de/techniker/leistungen-und-mitgliedschaft/informationen-versicherte/leistungen/corona-virus/corona-hotline-alternativen-2080430"
],
"countries": {
"de": {
"hotlines": [
@michaelpomogajko
michaelpomogajko / gist:b10c3de38f375f377638037ae09b4b1a
Created March 12, 2020 10:20
kubectl desceribe pods spark-worker-0
Name: spark-worker-0
Namespace: spark
Priority: 0
Node: gke-fs-acc-europe-west3-gke-1-bfaf9a76-xw13/10.156.0.56
Start Time: Thu, 12 Mar 2020 11:13:03 +0100
Labels: app.kubernetes.io/component=worker
app.kubernetes.io/instance=spark
app.kubernetes.io/managed-by=Helm
app.kubernetes.io/name=spark
controller-revision-hash=spark-worker-7cc5d8b86f
Successfully registered with master spark://spark-master-0.spark-headless.spark.svc.cluster.local:7077
20/03/11 09:57:34 INFO Worker: Asked to launch executor app-20200311095734-0000/0 for sparklyr
20/03/11 09:57:34 INFO SecurityManager: Changing view acls to: spark
20/03/11 09:57:34 INFO SecurityManager: Changing modify acls to: spark
20/03/11 09:57:34 INFO SecurityManager: Changing view acls groups to:
20/03/11 09:57:34 INFO SecurityManager: Changing modify acls groups to:
20/03/11 09:57:34 INFO SecurityManager: SecurityManager: authentication disabled; ui acls disabled; users with view permissions: Set(spark); groups with view permissions: Set(); users with modify permissions: Set(spark); groups with modify permissions: Set()
20/03/11 09:57:34 INFO ExecutorRunner: Launch command: "/opt/bitnami/java/bin/java" "-cp" "/opt/bitnami/spark/conf/:/opt/bitnami/spark/jars/*" "-Xmx4096M" "-Dspark.driver.port=32963" "org.apache.spark.executor.CoarseGrainedExecutorBackend" "--driver-url" "spark://CoarseGrainedSchedu
@michaelpomogajko
michaelpomogajko / .gitconfig.alias
Created August 3, 2018 17:59
[git aliases] git aliases #git #alias #workflow
[alias]
#current branch
me = !git rev-parse --abbrev-ref HEAD
st = status
sta = !git status && git add . --all && git status && echo 'Staged all changes, if any.'
unsta = !git status && git reset HEAD && git status && echo 'Unstaged all changes, if any.'
stachbst = !git status && git add . --all && echo 'Staged all changes, if any.' && git checkout -b $branchname && git status
@michaelpomogajko
michaelpomogajko / acp
Last active August 2, 2018 14:54
[acp] add, commit, push #git #commit #shell #bash
#!/bin/bash
if [ ! -d '.git' ]
then
echo 'Git not initialized in this folder'
exit 1
fi
if [ -z "$1" ]
then
@michaelpomogajko
michaelpomogajko / __repr__.py
Created July 19, 2018 10:32
pyhton object repr
def __repr__(self):
args = ['{}={}'.format(k, repr(v)) for (k,v) in vars(self).items()]
return 'ClassName({})'.format(', '.join(args))
@michaelpomogajko
michaelpomogajko / markdown.css
Last active June 22, 2018 14:36
markdown.css
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important;
}
@michaelpomogajko
michaelpomogajko / .eslintrc
Last active June 14, 2018 18:39
ESLint config
{
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
@michaelpomogajko
michaelpomogajko / one_monokai_them.json
Created June 9, 2018 14:33
One Monokai Theme for VS Code config
{
"type": "dark",
"colors": {
"input.background": "#1d1f23",
"dropdown.background": "#1d1f23",
"dropdown.border": "#181a1f",
"list.focusBackground": "#383e4a",
"list.activeSelectionBackground": "#2c313a",
"list.activeSelectionForeground": "#d7dae0",
"list.inactiveSelectionBackground": "#2c313a",