A curated collection of useful CSS snippets you can understand in 30 seconds or less.
30-seconds.github.io/30-seconds-of-css/#truncate-text-multiline
Author: Andreas Plahn
30 seconds of code – great javascript code snippets resource
> The core goal of 30 seconds of code is to provide a quality resource for beginner and advanced JavaScript developers alike. We want to help improve the JavaScript ecosystem, by lowering the barrier of entry for newcomers and help seasoned veterans pick up new tricks and remember old ones. In order to achieve this, we have collected hundreds of snippets that can be of use in a wide range of situations.
30secondsofcode.org/about
curl – Manual
command line tool and library for transferring data with URLs
curl.haxx.se/docs/manual.html
The ultimate guide to connection strings in web.config | elmah.io
Bootswatch: Free themes for Bootstrap
Whack Whack Terminal – Visual Studio Marketplace
Terminal inside Visual Studio.
marketplace.visualstudio.com/items?itemName=DanielGriffen.WhackWhackTerminal
Impress your colleagues with these NPM tricks
REST API Design Best Practices for Parameters and Query String Usage – DEV Community
Official Microsoft Edge Preview builds available (based on Chromium)
Microsoft has just unveiled official preview builds of the upcoming Microsoft Edge web browser that is based on Chromium. Interested users can head over to the Microsoft Edge Insider website to download Beta, Dev, and Canary builds of the upcoming version of Microsoft Edge for Windows 10.
Source: Official Microsoft Edge Preview builds available – gHacks Tech News
CSS overflow-wrap — Control wrapping of text overflow or wrapping
This css works in most common browsers (including IE)
word-wrap: break-word; //ie specific overflow-wrap: break-word //other browsers
Internet Explorer has its own implementation for “overflow-wrap” -> “word-wrap”.
A readymade sass mixin:
/* Usage: .box { @include wordBreak; } */ @mixin wordBreak { word-wrap: break-word; //ie specific overflow-wrap: break-word //other browsers }