This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # AWS S3 bucket for static hosting | |
| resource "aws_s3_bucket" "website" { | |
| bucket = "${var.website_bucket_name}" | |
| acl = "public-read" | |
| tags { | |
| Name = "Website" | |
| Environment = "production" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Elixir CI | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| name: OTP ${{ matrix.otp }} | Elixir ${{ matrix.elixir }} | Node ${{ matrix.node }} | OS ${{ matrix.os }} | |
| strategy: | |
| matrix: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <title>Raphaelle && QQ's Funtime Zone</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <link rel="stylesheet" type="text/css" media="screen" href="main.css" /> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import fs from 'fs'; | |
| import path, { resolve } from 'path'; | |
| import assert from 'assert'; | |
| import Module from 'module'; | |
| import jsdom from 'jsdom'; | |
| import Mocha from 'mocha'; | |
| import chokidar from 'chokidar'; | |
| // Let's import and globalize testing tools so | |
| // there's no need to require them in each test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| struct Regex { | |
| var pattern: String { | |
| didSet { | |
| updateRegex() | |
| } | |
| } | |
| var expressionOptions: NSRegularExpressionOptions { | |
| didSet { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .smooth { | |
| -webkit-font-smoothing: antialiased; | |
| text-shadow: 1px 1px 1px rgba(0,0,0,0.004); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var hasFlash = false; | |
| try { | |
| var fo = new ActiveXObject('ShockwaveFlash.ShockwaveFlash'); | |
| if (fo) { | |
| hasFlash = true; | |
| } | |
| } catch (e) { | |
| if (navigator.mimeTypes | |
| && navigator.mimeTypes['application/x-shockwave-flash'] != undefined | |
| && navigator.mimeTypes['application/x-shockwave-flash'].enabledPlugin) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "blog", | |
| "version": "0.0.0", | |
| "dependencies": { | |
| "handlebars": "1.3.0", | |
| "ember": "1.3.1", | |
| "ember-data": "1.0.0-beta.5", | |
| "bootstrap-sass": "~3.0.0" | |
| }, | |
| "devDependencies": { |