- Website: http://sass-lang.com/
- Docs: http://sass-lang.com/guide
- Tutorial: https://www.codecademy.com/learn/learn-sass
Install on OS X: sudo gem install sass
Version info: sass -v
| var promise = new Promise(function(resolve, reject) { | |
| throw new Error('Some error has occured') | |
| }) | |
| promise | |
| .then(function(successMessage) { | |
| console.log(successMessage); | |
| }) | |
| .catch(function(errorMessage) { | |
| //error handler function is invoked |
| /* Gist Embed - Dark Theme Styling - Thanks to MattD */ | |
| /* Body */ | |
| .gist-data tbody { background-color: Black; } | |
| /* Line Numbers */ | |
| .gist-data tbody td:nth-of-type(1) { | |
| color: #2B91AF !important; | |
| } |
| # include <conio.h> | |
| # include <stdio.h> | |
| void main(){ | |
| int n, a[20], min, max, i; | |
| // Created a function to sort the array | |
| int sortArray(a[20], min, max); | |
| // For scanning the total number of elements in unsorted array |
Install on OS X: sudo gem install sass
Version info: sass -v
| Windows Registry Editor Version 5.00 | |
| ; Open files | |
| [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] | |
| @="Edit with VS Code" | |
| ; Find the root installation files of the VS Code. | |
| ; Example - | |
| "Icon"="C:\\Program Files\\Microsoft VS Code\\Code.exe,0" | |
| [HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] | |
| @="\"C:\\Program Files\\Microsoft VS Code\\Code.exe" \"%1\"" | |
| ; This will make it appear when you right click ON a folder |
| #!/bin/bash | |
| # set values for certificate DNs | |
| # note: CN is set to different values in the sections below | |
| ORG="000_Test_Certificates" | |
| # set values that the commands will share | |
| VALID_DAYS=360 | |
| CA_KEY=ca.key | |
| CA_CERT=ca.crt |
| <template> | |
| <div> | |
| <editor v-model="editorModel" :init="tinyMceConfiguration"></editor> | |
| {{ editorData }} | |
| </div> | |
| </template> | |
| <script> | |
| /* core */ | |
| import tinymce from 'tinymce/tinymce'; |
An awesome curated list of open source crafted web & mobile applications - Learn, Fork, Contribute & Most Importantly Enjoy!.
You want to develop an app, write tests for a feature or implement a feature and you don't know how to go about it, there might just be one app/repository here with the solution to your problem.
Even if you are just a developer, manager or co-founder looking for a sample app to demo or test your ideas, it might just be right here.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.