Every commit is important. So let's celebrate each and every commit with a corresponding emoji! 😄
Commit Type | Emoji |
---|---|
Initial Commit | 🎉 :tada: |
body { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
} |
CREATE TABLE users ( | |
id BIGINT(8) AUTO_INCREMENT PRIMARY KEY, | |
username VARCHAR(16) NOT NULL, | |
email VARCHAR(255) NOT NULL, | |
password VARCHAR(32) NOT NULL | |
); | |
CREATE TABLE todos ( | |
id BIGINT(8) AUTO_INCREMENT PRIMARY KEY, | |
completed TINYINT(1) NOT NULL DEFAULT 0, |
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
First off, thanks for taking the time to contribute!
Now, take a moment to be sure your contributions make sense to everyone else. These are just guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
Found a problem? Want a new feature? First of all see if your issue or idea has already been reported. If don't, just open a new clear and descriptive issue.
var links = { | |
'facebook': 'https://facebook.com/sharer/sharer.php?u=' + url, | |
'twitter': 'https://twitter.com/intent/tweet/?text=' + text + '&url=' + url, | |
'google': 'https://plus.google.com/share?url=' + url, | |
'tumblr': "https://www.tumblr.com/widgets/share/tool?posttype=link&title=" + text + "&caption=" + text + "&content=" + url + "&canonicalUrl=" + url + "&shareSource=tumblr_share_button", | |
'pinterest': 'https://pinterest.com/pin/create/button/?url=' + url + '&media=' + url + '&description=' + text, | |
'linkedin': 'https://www.linkedin.com/shareArticle?mini=true&url=' + url + '&title=' + text + '&summary=' + text + '&source=' + url, | |
'reddit': 'https://reddit.com/submit/?url=' + url, | |
'email': 'mailto:?subject=' + text + '&body=' + url, | |
'xing': 'https://www.xing.com/app/user?op=share;url=' + url + ';title=' + text, |
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
#app { | |
padding-left: 20px; | |
} | |
#quote { | |
box-sizing: border-box; | |
border-left: 5px solid #e0e0e0; |
import { Observable } from 'rxjs/Observable'; | |
// then patch import only needed operators: | |
import 'rxjs/add/operator/map'; | |
import 'rxjs/add/observable/from'; | |
const foo = Observable.from([1, 2, 3]); | |
foo.map(x => x * 2).subscribe(n => console.log(n)); |