Skip to content

Instantly share code, notes, and snippets.

View AWolf81's full-sized avatar

Alexander Wolf AWolf81

View GitHub Profile
@AWolf81
AWolf81 / de.properties
Created July 12, 2016 19:23
Localization of radio simplePrefs issue
# ------------------ Einstellungen -----------------------------
whitelist_title = Urls in der White-list sind klickbar
whitelist_description = Jeder Link der in der White-list aufgeführt ist, lässt sich öffnen. Leer oder * lässt jede Url zu. Mehrere Urls werden mit Leerzeichen getrennt. Wildcards sind zuläassig z.B. *.trello.com
enableExecutables_title = Aktiviert Links zu lokalen ausführbaren Dateien
enableExecutables_description = Wenn aktiviert, kann jedes Programm vom Addon gestartet werden. (Achtung! Eine Seite von einem Betrüger könnte das für einen Denial-Of-Service-Angriff verwenden.)
enableLinkIcons_title = Aktiviert Link icons
enableLinkIcons_description = Wenn aktiviert, wird ein Link-Icon jedem lokalen File-Link hinzugefügt.
@AWolf81
AWolf81 / True Trello Printer
Last active May 2, 2017 19:26 — forked from mathiasrw/True Trello Printer
Ever wanted to print your Trello board? Export as JSON and paste it into the code.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>True Trello Printer</title>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<style>
body{margin:15%;}
.panel-body{
@AWolf81
AWolf81 / dependencies.service.js
Last active July 29, 2018 08:28
Add logger functionality - created method for spawnProcess - type annotation not working yet.
// @flow
import packageMan from './package-manager.service';
import { PACKAGE_MANAGER_CMD } from './platform.services';
import { logger } from './logger.service';
const childProcess = window.require('child_process');
type executor = Promise.executor;
const spawnProcess = (
cmd: string,
@AWolf81
AWolf81 / log.txt
Created September 23, 2018 17:59
Errors after start from Electron builder created Guppy binary (Windows 10)
[19:21:56.587] [info] Checking for update
[19:21:56.604] [error] Error: TypeError: l is not a function
at e.<anonymous> (C:\Users\Alexander\AppData\Local\Programs\guppy\resources\app.asar\build\electron.js:1:299034)
at emitNone (events.js:106:13)
at emit (events.js:208:7)
at C:\Users\Alexander\AppData\Local\Programs\guppy\resources\app.asar\build\electron.js:1:122609
at E (C:\Users\Alexander\AppData\Local\Programs\guppy\resources\app.asar\build\electron.js:1:295611)
at Generator._invoke (C:\Users\Alexander\AppData\Local\Programs\guppy\resources\app.asar\build\electron.js:1:295399)
at Generator.t.(anonymous function) [as next] (C:\Users\Alexander\AppData\Local\Programs\guppy\resources\app.asar\build\electron.js:1:295790)
at Generator.c (C:\Users\Alexander\AppData\Local\Programs\guppy\resources\app.asar\build\electron.js:1:2342)
@AWolf81
AWolf81 / Zenhub Getting started.md
Last active October 2, 2018 07:52
Zenhub Getting started guide

We're using Zenhub for project management it's optional but it will help to keep track of development activities.

The browser extenison is recommended as you can stay on Github during work with Zenhub.

Pipelines (lanes of development)

At the moment, there are 7 pipelines. A brief explanation to each lane:

New Issues

Every created Github issue will start in this pipeline. They're staying there until they are sorted into another pipeline.

@AWolf81
AWolf81 / SettingsButton.js
Created October 13, 2018 00:11
Medium Post
class SettingsButton extends PureComponent<Props, State> {
render() {
const { size } = this.props;
return (
<Wrapper>
{' '}
<IconBase size={size} icon={settings} />{' '}
</Wrapper>
);
}
@AWolf81
AWolf81 / Summary.js
Created November 8, 2018 19:09
Part of summay pane (Next.js copy)
details = (
<Fragment>
<Paragraph>
<strong>Next.js</strong>
</Paragraph>
<Paragraph>
Next.js is a lightweight framework for static and
server-rendered applications.
</Paragraph>
<Paragraph>
@AWolf81
AWolf81 / index.html
Created December 14, 2018 06:35
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<button id="test">Click me</button>
<!-- All of the Node.js APIs are available in this renderer process. -->
@AWolf81
AWolf81 / index.html
Created December 14, 2018 06:35
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<button id="test">Click me</button>
<!-- All of the Node.js APIs are available in this renderer process. -->
@AWolf81
AWolf81 / index.html
Created December 14, 2018 06:36
Electron Fiddle Gist
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<button id="test">Click me</button>
<!-- All of the Node.js APIs are available in this renderer process. -->