CLICK ME
yes, even hidden code blocks!
print("hello world!")| '''Fun with Anagrams: | |
| QUESTION DESCRIPTION | |
| Two strings are anagrams if they are permutations of each other. For example, "aaagmnrs" is an anagram of "anagrams". | |
| Given an array of strings, remove each string that is an anagram of an earlier string, then return the remaining array | |
| in sorted order. | |
| For example, given the strings s = ['code', 'doce', 'ecod', 'framer', 'frame'], the strings 'doce' and 'ecod' are both | |
| anagrams of 'code' so they are removed from the list. The words 'frame' and 'framer' are not anagrams due to the extra | |
| 'r' in 'framer', so they remain. The final list of strings in alphabetical order is ['code', 'frame', 'framer']. |
| Dates | Conferences | Venues | CfPs |
|---|---|---|---|
| January 27 | dotSwift | Paris, France | Closed |
| February 7-8 | Mac Admin & Developer Conference UK | London, UK | |
| February 23-24 | Playgrounds | Melbourne, Australia | Closed |
| March 2 | Forward Swift | San Francisco, CA | |
| March 2-4 | try! Swift Tokyo 2017 | Tokyo, Japan | Closed |
| March 16-17 | Appdevcon 2017 | Amsterdam | Closed |
| March 20-23 | Yosemite, by CocoaConf | Yosemite National Park, CA, USA | |
| March 30-31 | iOSCon 2017 | London | Closed |
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| require 'codeclimate-test-reporter' | |
| require 'simplecov' | |
| require 'coveralls' | |
| formatters = [SimpleCov::Formatter::HTMLFormatter] | |
| formatters << Coveralls::SimpleCov::Formatter if ENV['COVERALLS_REPO_TOKEN'] | |
| formatters << CodeClimate::TestReporter::Formatter if ENV['CODECLIMATE_REPO_TOKEN'] | |
| SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[*formatters] |
This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}