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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Copyright 2017 Murat Guven <muratg@online.de> | |
| # This is a plugin for ZimWiki from Jaap Karssenberg <jaap.karssenberg@gmail.com> | |
| # | |
| # This plugin provides auto completion for tags similiar to code completion in code editors. | |
| # When you press the @ key, a list of available tags are shown and can be selected. | |
| # The {AutoCompletion} class can be used to provide auto completion on any given |
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
| # -*- coding: utf-8 -*- | |
| # Plugin for ZimWiki: Find tagged pages. | |
| # Copyright 2018 Murat Güven <muratg@online.de> | |
| # Copyright ZimWiki: 2009-2018 Jaap Karssenberg <jaap.karssenberg@gmail.com> | |
| # V1.251 for Zim >= 0.67 | |
| # Change Log | |
| # V1.251 Rework on search |
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
| [% IF journal_plugin.page_type == 'day' -%] | |
| ======= [% strftime("%A %d %b %Y", journal_plugin.date) %] ======= | |
| [%- ELSIF journal_plugin.page_type == 'week' -%] | |
| ======= [% strfcal("Viikko %W %Y", journal_plugin.date) %] ======= | |
| [% strftime("%d %B", journal_plugin.date) %] to [% strftime("%d %B", journal_plugin.end_date) %] | |
| [% FOREACH day IN journal_plugin.days() %] | |
| === [% strftime("%A %d %B", day) %] === |
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
| # assumptions: origin == our repo/fork && being inside it | |
| git remote add TheirUsername git@github.com:TheirUsername/repo-name.git | |
| git fetch TheirUsername | |
| git checkout -b our-new-branch TheirUsername/their-branch | |
| git cherry-pick commit-hash | |
| git push origin |
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
| javascript:void(document.title=document.getElementsByClassName("ng-binding")[0].textContent) |
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
| // http://www.mono-project.com/docs/getting-started/mono-basics/ | |
| using Gtk; | |
| using System; | |
| class Hello | |
| { | |
| static void Main () | |
| { | |
| Application.Init (); |
NewerOlder