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
OpenURI::HTTPError in M/tc/notesController#more | |
503 Service Temporarily Unavailable | |
RAILS_ROOT: /Users/whoknew/Documents/Socialight/socialight | |
Application Trace | Framework Trace | Full Trace | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:277:in `open_http' | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:616:in `buffer_open' | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:164:in `open_loop' | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:162:in `catch' |
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
OpenURI::HTTPError in M/tc/notesController#more | |
503 Service Temporarily Unavailable | |
RAILS_ROOT: /Users/whoknew/Documents/Socialight/socialight | |
Application Trace | Framework Trace | Full Trace | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:277:in `open_http' | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:616:in `buffer_open' | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:164:in `open_loop' | |
/opt/ruby-enterprise-1.8.6-20090610/lib/ruby/1.8/open-uri.rb:162:in `catch' |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stddef.h> | |
#include "gdsl.h" | |
typedef struct _Block { | |
// Important key member | |
int key; | |
// Rest of the stuff... | |
int foo, bar, baz; |
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> | |
<title>perlin noise background</title> | |
<style type="text/css"> | |
body { | |
background: url(#background); | |
margin: 0; | |
} | |
</style> |
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
"build_systems": | |
[ | |
{ | |
"name": "cake build:dotnet", | |
"cmd": ["cake.cmd", "-u", "-o", "C:\\Consumer-Facing\\standard\\Standard.Web\\publishers\\boston\\mobileApp", "build:dotnet"] | |
} | |
] |
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
{ | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 11, |
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
root@turbo-base:/opt/turbo/production/rel/turbo/bin# ./turbo rpc Ecto.Migrator run "['Elixir.Turbo.Repo', <<\"/opt/turbo/production/rel/turbo/lib/turbo-0.0.1/priv/repo/migrations\">>, up, [{all, true}]]." | |
RPC to '[email protected]' failed: {'EXIT', | |
{undef, | |
[{'Ecto.Migrator',run, | |
['Elixir.Turbo.Repo', | |
<<"/opt/turbo/production/rel/turbo/lib/turbo-0.0.1/priv/repo/migrations">>, | |
up, | |
[{all,true}]], | |
[]}, | |
{rpc,'-handle_call_call/6-fun-0-',5, |
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
./bin/turbo rpc Elixir.Ecto.Storage up "['Elixir.Turbo.Repo']." | |
./bin/my_app rpc Elixir.Mix.Ecto migrations_path "['Elixir.MyApp.Repo']." | |
# => <<"/opt/my_app/production/rel/my_app/lib/my_app-0.0.1/priv/repo/migrations">> | |
./bin/my_app rpc Elixir.Ecto.Migrator run "['Elixir.MyApp.Repo', <<\"/opt/my_app/production/rel/my_app/lib/my_app-0.0.1/priv/repo/migrations\">>, up, [{all, 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
defmodule KeysToAtoms do | |
def keys_to_atoms(%{} = map) do | |
Enum.map(body, &{String.to_atom(&1), keys_to_atoms(&2)}) | |
|> Enum.into(%{}) | |
end | |
def keys_to_atoms(list) when is_list(list) do | |
Enum.map(list, &keys_to_atoms/1) | |
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
defmodule ExrmExjsx.Mixfile do | |
use Mix.Project | |
def project do | |
[app: :exrm_exjsx, | |
version: "0.0.1", | |
elixir: "~> 1.1", | |
build_embedded: Mix.env == :prod, | |
start_permanent: Mix.env == :prod, | |
deps: deps] |
OlderNewer