(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| [ | |
| { | |
| owner: 'bcoe', | |
| repo: 'top-npm-users', | |
| description: ':star: Generate a list of top npm users by based on monthly downloads.', | |
| language: 'JavaScript', | |
| isFork: false, | |
| stargazers: 27, | |
| watchers: 27 | |
| } |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>homebrew.mxcl.autossh</string> | |
| <key>KeepAlive</key> | |
| <true/> |
| # npm using https for git | |
| git config --global url."https://github.com/".insteadOf [email protected]: | |
| git config --global url."https://".insteadOf git:// | |
| # npm using git for https | |
| git config --global url."[email protected]:".insteadOf https://github.com/ | |
| git config --global url."git://".insteadOf https:// |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| git clean -xfd | |
| git submodule foreach --recursive git clean -xfd | |
| git reset --hard | |
| git submodule foreach --recursive git reset --hard | |
| git submodule update --init --recursive |
flex-sdk, which basically serves as a downloader and wrapper for an external, non-JavaScript dependency: the Adobe/Apache Flex SDK.[email protected] == Flex SDK 4.5.1| from django import forms | |
| from django.core import validators | |
| from django.core.exceptions import ValidationError | |
| class MinLengthValidator(validators.MinLengthValidator): | |
| message = 'Ensure this value has at least %(limit_value)d elements (it has %(show_value)d).' | |
| class MaxLengthValidator(validators.MaxLengthValidator): | |
| message = 'Ensure this value has at most %(limit_value)d elements (it has %(show_value)d).' |
| --- | |
| - hosts: all | |
| gather_facts: no | |
| sudo: no | |
| tasks: | |
| - name: run ssh-keyscan to add keys to known_hosts | |
| local_action: shell ssh-keyscan {{ ansible_ssh_host }} >> ~/.ssh/known_hosts |
| #import <UIKit/UIKit.h> | |
| @interface UIView (TLLayout) | |
| @property (nonatomic, strong) NSArray *hiddenConstraints; | |
| // set hidden and remove any constraints involving this view from its superview | |
| - (void)hideAndRemoveConstraints; | |
| - (void)showAndRestoreConstraints; |