Describe the happy user story
Describe the problem that turns it into a less than happy user story
Describe how to reproduce
| asyncapi: 2.0.0 | |
| info: | |
| title: Account Service | |
| version: '1.0.0' | |
| description: | | |
| Manages user accounts in the system. | |
| license: | |
| name: Apache 2.0 | |
| url: https://www.apache.org/licenses/LICENSE-2.0 |
| asyncapi: 2.1.0 | |
| info: | |
| title: Hello world application | |
| version: '0.1.0' | |
| channels: | |
| hello: | |
| publish: | |
| message: | |
| payload: | |
| type: string |
| on list2string(theList, theDelimiter) | |
| -- First, we store in a variable the current delimiter to restore it later | |
| set theBackup to AppleScript's text item delimiters | |
| -- Set the new delimiter | |
| set AppleScript's text item delimiters to theDelimiter | |
| -- Perform the conversion | |
| set theString to theList as string |
| license: gpl-3.0 | |
| height: 960 |
| # remove existing folders with unnecessary | |
| ϟ sudo rm -rf app/cache/* | |
| ϟ sudo rm -rf app/logs/* | |
| # get the current apache user | |
| ϟ HTTPDUSER=`ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1` | |
| ϟ echo $HTTPDUSER | |
| # chmod the folders with the apache user and your current CLI user | |
| ϟ sudo chmod +a "$HTTPDUSER allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
| <html> | |
| <head> | |
| <style> | |
| body{ | |
| font-family: "Verdana"; | |
| } | |
| div.row{ | |
| height:400px; |
| # SSL self signed localhost for rails start to finish, no red warnings. | |
| # 1) Create your private key (any password will do, we remove it below) | |
| $ openssl genrsa -des3 -out server.orig.key 2048 | |
| # 2) Remove the password | |
| $ openssl rsa -in server.orig.key -out server.key |
| module ApplicationHelper | |
| def markdown(text, options = {} ) | |
| options = [ | |
| :hard_wrap => true, | |
| :space_after_headers => true, | |
| :filter_html => true, | |
| :autolink => true, | |
| :no_intraemphasis => true, | |
| :fenced_code => true, |