I hereby claim:
- I am mistery on github.
- I am alensiljak (https://keybase.io/alensiljak) on keybase.
- I have a public key ASBhSdIMFZc7_juGpUU4THGo7uZKxqMCzdP1GjB-fPgOwAo
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <gpx xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.topografix.com/GPX/1/1" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd http://www.garmin.com/xmlschemas/GpxExtensions/v3 http://www.garmin.com/xmlschemas/GpxExtensionsv3.xsd http://www.garmin.com/xmlschemas/TrackPointExtension/v1 http://www.garmin.com/xmlschemas/TrackPointExtensionv1.xsd http://www.topografix.com/GPX/gpx_style/0/2 http://www.topografix.com/GPX/gpx_style/0/2/gpx_style.xsd" xmlns:gpxtpx="http://www.garmin.com/xmlschemas/TrackPointExtension/v1" xmlns:gpxx="http://www.garmin.com/xmlschemas/GpxExtensions/v3" xmlns:gpx_style="http://www.topografix.com/GPX/gpx_style/0/2" version="1.1" creator="https://gpx.studio"> | |
| <metadata> | |
| <name>new</name> | |
| <author> | |
| <name>gpx.studio</name> | |
| <link href="https://gpx.studio"></link> | |
| </author> | |
| </metadata> | |
| <trk> |
I hereby claim:
To claim this, I am signing this object:
| """ | |
| This will backup the current gnucash book, which is expected to be in the same folder. The copy will be stored in the "backup" sub-directory. The copied file will be LZMA-compressed to reduce the storage size. | |
| Only a pre-set number of backup files will be kept in the backup directory. The oldest ones will be deleted when a new one is created. | |
| The script will also delete *.log files in the current working directory as these are redundant. | |
| To adapt the script to your needs, modify the variables at the top of the file. | |
| Future additions may include the functionality to keep files created in the last n days, instead of the | |
| fixed number of files. | |
| """ |
| /* | |
| These register customizations go well with a dark GTK3 theme | |
| */ | |
| cursor entry { | |
| color: orange; | |
| } | |
| *.register-cursor { | |
| color: blanchedalmond; |
| /* | |
| GnuCash 3.0 black theme | |
| GTK has a way of declaring variables, which is not a valid CSS anymore and | |
| tooling support is gone. | |
| CSS has a way of declaring variables, which is not supported by GTK. | |
| */ | |
| * { | |
| background-color: black; | |
| color: lightsteelblue; |
| <link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; |
| <link rel="import" href="../notification-elements/notification-alert.html"> | |
| <link rel="import" href="../core-ajax/core-ajax.html"> | |
| <link rel="import" href="../core-scaffold/core-scaffold.html"> | |
| <link rel="import" href="../core-header-panel/core-header-panel.html"> | |
| <link rel="import" href="../core-menu/core-menu.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../topeka-elements/category-icons.html"> | |
| <link rel="import" href="../core-icon/core-icon.html"> |
| { | |
| "name": "minimal-web-server", | |
| "version": "1.0.0", | |
| "dependencies" : { | |
| "node-static" : "*" | |
| } | |
| } |
| var static = require('node-static'); | |
| // | |
| // Create a node-static server instance to serve the current folder | |
| // | |
| var file = new(static.Server)(__dirname); | |
| require('http').createServer(function (request, response) { | |
| request.addListener('end', function () { | |
| // |
| using System; | |
| using System.Collections.Generic; | |
| using System.Net; | |
| using System.Text; | |
| namespace MyNamespace | |
| { | |
| /// <summary> | |
| /// This web client supports Gzip compression and authentication. | |
| /// </summary> |