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
| // Cloudflare Worker: firmware proxy | |
| // Endpoint: https://example.com/download?firmware=[safe-encoded-url] | |
| // Accepts either URL-encoded URL or base64url in the "firmware" param. | |
| // Only proxies from https://files.nervescloud.com/firmware/... | |
| const ALLOWED_HOST = "files.nervescloud.com"; | |
| const REQUIRED_PREFIX = "/firmware/"; | |
| export default { | |
| async fetch(request, env, ctx) { |
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
| defmodule Board do | |
| alias IslandsEngine.{Coordinate, Island} | |
| def position_island(board, key, %Island{} = island) do | |
| case overlaps_existing_island?(board, key, island) do | |
| true -> {:error, :overlapping_island} | |
| false -> Map.put(board, key, island) | |
| end | |
| end |
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
| gulp.task('server', function() { | |
| browserSync.init({ | |
| proxy: { | |
| target: 'localhost:3000', | |
| reqHeaders: function () { | |
| return { host: 'localhost:8000' }; | |
| } | |
| }, | |
| port: 8000, | |
| open: true, |
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
| Well i didn't see any thread about this so let's start one :DRINK: | |
| Specify the Directory Index: | |
| DirectoryIndex newindex.html | |
| Specify 404 error: | |
| ErrorDocument 404 /404error.html | |
| Redirect 301 | |
| Redirect 301 /old.html /new.html |
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
| module ApplicationHelper | |
| def sortable(column, title = nil) | |
| title ||= column.titleize | |
| css_class = column == sort_column ? "current #{sort_direction}" : nil | |
| direction = column == sort_column && sort_direction == "asc" ? "desc" : "asc" | |
| link_to (css_class ? title + direction_icon(direction) : title).html_safe, params.merge(:sort => column, :direction => direction, :page => nil), {:class => css_class} | |
| end | |
| private |
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
| find -L ~/Dropbox -name "*conflicted copy*" -exec rm {} \; |
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
| module ApplicationHelper | |
| class FoundationLinkRenderer < ::WillPaginate::ActionView::LinkRenderer | |
| protected | |
| def html_container(html) | |
| tag(:ul, html, container_attributes) | |
| end | |
| def page_number(page) | |
| tag :li, link(page, page, :rel => rel_value(page)), :class => ('current' if page == current_page) |
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
| d = new Date(); // => Thu Feb 26 2015 22:16:14 GMT-0600 (CST) | |
| d.toMySQLDateTime(); // => 2015-02-26 22:16:14 | |
| Date.prototype.toMySQLDateTime = function () { | |
| function addZ(n) { | |
| return (n<10? '0' : '') + n; | |
| } | |
| return this.getFullYear() + '-' + | |
| addZ(this.getMonth() + 1) + '-' + | |
| addZ(this.getDate()) + ' ' + |
NewerOlder