Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Cmd+C | copy current line (if no selection) |
| Cmd+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Cmd+↩ | insert line after |
| map = { | |
| 'title': 'h1' | |
| 'body' : 'p' | |
| } | |
| node = extract(d, map) | |
| node['title'] = entry.title | |
| node['body'] = entry.body |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Cmd+C | copy current line (if no selection) |
| Cmd+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Cmd+↩ | insert line after |
| (ns hiccup-demo | |
| (:use hiccup)) | |
| (def core-examples | |
| ["Simple tags" [:br] | |
| "Tags with content" [:span "baz"] | |
| "Tag with attributes" [:span {:id "foo" :class "bar"} "baz"] | |
| "Attribute shortcuts" [:span#foo.bar "baz"] | |
| "Encode HTML character entities" '(escape-html "<\"foo\"&\"bar\">") | |
| "Shortcut for escape-html" '(h "<\"foo\"&\"bar\">")]) |
| Do the following to fix this error. | |
| ttidwell@a:~:->$ sudo lsof|grep 9000 | |
| sshd 31533 ttidwell 9u IPv6 506614 0t0 TCP [::1]:9000 (LISTEN) | |
| sshd 31533 ttidwell 10u IPv4 506615 0t0 TCP localhost:9000 (LISTEN) | |
| ttidwell@a:~:->$ kill 31533 |
| from scrapy import log | |
| from scrapy.item import Item | |
| from scrapy.http import Request | |
| from scrapy.contrib.spiders import XMLFeedSpider | |
| def NextURL(): | |
| """ | |
| Generate a list of URLs to crawl. You can query a database or come up with some other means | |
| Note that if you generate URLs to crawl from a scraped URL then you're better of using a |
| # Enable us to call scrapy from manage.py | |
| from __future__ import absolute_import | |
| from django.core.management.base import BaseCommand | |
| class Command(BaseCommand): | |
| def run_from_argv(self, argv): | |
| self._argv = argv | |
| self.execute() |
| { | |
| {I have|I've} been {surfing|browsing} online more than {three|3|2|4} hours today, yet I never found any interesting article like yours. {It's|It | |
| is} pretty worth enough for me. {In my opinion|Personally|In my view}, if all {webmasters|site owners|website owners|web owners} and bloggers made good content as | |
| you did, the {internet|net|web} will be {much more|a lot more} | |
| useful than ever before.| | |
| I {couldn't|could not} {resist|refrain from} commenting. {Very well|Perfectly|Well|Exceptionally well} written!| | |
| {I will|I'll} {right away|immediately} {take hold of|grab|clutch|grasp|seize|snatch} | |
| your {rss|rss feed} as I {can not|can't} {in finding|find|to find} your {email|e-mail} subscription {link|hyperlink} or {newsletter|e-newsletter} service. Do {you have|you've} any? | |
| {Please|Kindly} {allow|permit|let} me {realize|recognize|understand|recognise|know} {so that|in order that} I {may just|may|could} subscribe. | |
| Thanks.| |
bundle install.heroku create --stack=cedar.cinch: bundle exec ./bot.rbheroku scale web=0 cinch=1. This
also sets up your deployments to restart the bot.| import sys, getopt | |
| import codecs | |
| BLOCKSIZE = 1048576 | |
| def main(argv): | |
| inputfile = '' | |
| outputfile = '' | |
| try: | |
| opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="]) | |
| except getopt.GetoptError: |
| env.globals['m'] = sys.modules['application.models'] | |
| Assuming your application is already fully imported if you render a | |
| template, your macro can do something like this:: | |
| {% macro recent_news(num) %} | |
| {% set news = m.NewsModel.select(...).limit(num) %} | |
| ... | |
| {% endmacro %} |