Markdown is quite popular these days and I like it for it’s simplicity. So I’ve been searching for a way to integrate it in my blog writing workflow. In Blogger, it’s unfortunately not an option.
There I could go:
- either for
WYSIWYG
editor or - manual
HTML
writing.
However WYSIWYG
generates too much HTML
I don’t need. Moreover some pre-publish manual HTML
editing is a pain then. And the other option I consider it rather slow/unproductive.
So, I looked for other options, and found stackedit.io. Even this post is (and couple others as well) written in it.
stackedit
I consider Stackedit great as it:
- is Markdown editor,
- is open source (see github repo),
- has awesome UI (including live preview, key bindings, …),
- has integration with other popular services that I use anyway:
- for storage (google drive, …) and
- for publishing (blogger,…),
- has active community (just check the stars count and commit activity on the github repo) and
- has impressive feedback time (resolution on my issues/questions came in couple hours)
So my post writing/editing workflow goes like this:
- write/edit post on stackedit.io,
- sync it to google drive and
- publish/republish it to blogger.
That’s it! No further in-blogger updates required!
Blogger specifics
Still there are some specifics in my workflow (to provide smooth blogger integration).
- using the Interpreted variables:
title
andtags
via:
---
title: Markdown editor for blogger
tags: blogger markdown stackedit.io
---
- syntax highlighting via prettify (I use in my blog posts) on blogger works for me using: Github fenced code blocks
30 comments:
would you mind raising an issue on: http://github.com/p6spy/p6spy/issues ?
Someone did so already.
https://github.com/p6spy/p6spy/issues/200
great! I thought it was you :)
well, we might still need the additional input on the bug, would you mind providing it? (see the bug comments)
This is a good use-case for SQL-centric development, where you design compatible SQL schemas first and only then build Java applications on top of it. We've described this on our page here. The most demanding jOOQ customers have deployed jOOQ with a single application on Oracle, DB2, Sybase, SQL Server and H2. I think it would be quite hard to do the same with a domain-model centric approach (e.g. using Hibernate)...
Thanks.
What was your argument to choose mocha over jasmine?
@JoshuaMuheim as I'm quite new to both of these, no real arguments here
Actually, the opposite is true. Each DB has its own special sql and data types. That is what this article is describing. It is not describing Hibernate issues.
I have hand written SQL in All the dbs you have listed and then some. There are differences if you want to do anything but simple SQL.
If you don't use something to abstract the differences, then it will be "hard" to switch. (Try generating DDL).
bug is fixed, just go for the p6spy 2.0.1
True, if you hand-write your (string-based) "database-agnostic" SQL, you're about to set sails to the edge of the world ;-)
DDL is still (and will always be) something very very vendor-specific. With DML, however, you're right. HQL has abstracted things quite well, although to the price of a very reduced feature-set.
HQL is reduced, but not "very reduced". Using Tables as your model and eliminating POJOs increases your code overhead. I do some very complicated things in HQL. And if i really need to, i can drop to SQL. I have only had to one or two times in the years I have used it. (to include NHibernate).
There are trade offs in most things. When we like something or are "marketing" it, we tend to only focus on the Cons of the other product. I have been reading your blog posts and I see a lot of that. JOOQ seems like a good tool to have in the bag, but don't ignore the Cons. Or the Pros of the other product.
Fair enough. We're not ignoring the pros of HQL, but in terms of SQL:2011 standards, I still think it is "very reduced". As in: Missing MERGE, window functions, grouping sets, derived column lists, common table expressions, row value expressions, sophisticated predicates, table-valued functions, etc. etc.
That doesn't mean it's bad though - and I think we stress that often enough. HQL responds to entirely other needs than SQL.
Saved my life, thanks. Had exactly this issue in KDE with the latest KUbuntu 14.04.
and this is how a simple post can save the day of many. thanks
Thanks for the post. I was able to identify the culprits in my case using the command you posted. In my case I got something like:
2 /proc/20759/fd/anon_inode:inotify
1 /proc/3202/fd/anon_inode:inotify
1 /proc/3113/fd/anon_inode:inotify....
...
I could then identify the processes using the PIDs from the paths under /proc above, namely 20759, 3202 etc.
In my case the biggest offender turned out to be google chrome.
Thank you very much for posting this. Missing the Ctrl+F6 shortcut in Eclipse has been the bane of my existence for several months now. I finally got fed up and looked for a solution, and Google led me here.
A wonderful golden nugget! Thank you.
thanks a lot man, you saved my day... i dont understand how somebody comes up with the idea of setting ctrl+space as "switch to next keyboard layout" - maybe inspired by touch keyboards??
ctrl + space is a shortcut in midnight commander to get the size of the directory contents, i use it alot.
i was one step away to throw xfce away because of this,
until i discovered your solution.
Thanks, I also solved it by deleting the keyboard shortcut from "IBus preferences" (which is shown as a keyboard with a globe to illustrate that it lets you select input language.
Very very very thanks!!
THANK YOU. Control-space seems to be hardwired into by brain from decades of emacs use, and I kept copy-paste'ing the wrong text before I could stop myself and use a different keystroke.
The only thing I had to figure out was how to get to iBus prefs. On my xubuntu system, I found it listed with the title "keyboard input methods" in the XFCE Settings Manager.
This can be done also running ibus-setup from the command line.
Dude! You saved my life! Kudos to you!
It was Btsync in my case, who ate all inotify :)
Bless you. Eclipse without content assist is just no fun.
total life saver - cheers
Thank you!
I found out, that Sublimetext3 is the program, that eats my resources! ;)
BTsync for me too. After I increased the number my files started syncing right away again thank you so much!
Post a Comment