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
[jadams:~/erlang/erlagi] feature/rebar3* 8s ± ./rebar3 compile DEBUG=1 | |
===> Plugin rebar_covertool not available. It will not be used. | |
===> Verifying dependencies... | |
===> Updating covertool | |
===> WARNING: It is recommended to use {branch, Name}, {tag, Tag} or {ref, Ref}, otherwise updating the dep may not work as expected. | |
===> Compiling rebar | |
===> Uncaught error in rebar_core. Run with DEBUG=1 to see stacktrace |
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
[jadams:~/erlang/erlagi] master(+1/-1) ± ./rebar clean | |
Uncaught error in rebar_core: {'EXIT', | |
{undef, | |
[{rebar_utils,base_dir, | |
[{config,"/home/jadams/erlang/erlagi", | |
[{cover_enabled,false}, | |
{erl_opts, | |
[{parse_transform,lager_transform}]}, | |
{eunit_opts, | |
[verbose, |
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
[jadams:/var/abs/local] $ sudo pacman -Syu | |
:: Synchronizing package databases... | |
core is up to date | |
extra is up to date | |
community is up to date | |
infinality-bundle is up to date | |
infinality-bundle-fonts is up to date | |
multilib is up to date | |
:: Starting full system upgrade... | |
resolving dependencies... |
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
def brush_for(:ell), do: [255, 150, 0, 255] | |
def brush_for(:jay), do: [12, 0, 255, 255] | |
def brush_for(:ess), do: [5, 231, 5, 255] | |
def brush_for(:zee), do: [255, 17, 17, 255] | |
def brush_for(:bar), do: [0, 240, 255, 255] | |
def brush_for(:oh), do: [247, 255, 17, 255] | |
def brush_for(:tee), do: [100, 255, 17, 255] | |
def brush_for(:board), do: [0, 0, 0, 255] | |
def set_brush(renderer, brush_type), when: is_list(brush_type) do |
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
--(jadams@aye-seven)-(29/pts/2)-(0743/21-Oct-14)-- | |
--($:~/software/UnrealEngine)(4.5)ruby-2.1.0-- | |
$ make UE4Editor | |
Engine/Build/BatchFiles/Linux/Build.sh UE4Editor Linux Development | |
Building UE4Editor... | |
Using clang version '3.3' (string), 3 (major), 3 (minor), -1 (patch) | |
Building UnrealHeaderTool... | |
Using clang version '3.3' (string), 3 (major), 3 (minor), -1 (patch) | |
Target is up to date. | |
Parsing headers for UE4Editor |
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
--(jadams@aye-seven)-(6/pts/27)-(0758/13-Oct-14)-- | |
--($:~/elixir/beam_toolbox_web)(master)ruby-2.1.2@beam_toolbox_web-- | |
$ iex -S mix | |
Erlang/OTP 17 [erts-6.0] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] | |
=INFO REPORT==== 13-Oct-2014::07:58:43 === | |
application: logger | |
exited: stopped | |
type: temporary |
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
--(jadams@aye-seven)-(77/pts/18)-(2022/30-Sep-14)-- | |
--($:~/projects/shipt/shipt_messenger)(feature/release)ruby-2.1.0-- | |
$ mix compile.protocols | |
Consolidated Poison.Encoder | |
Consolidated Poison.Decoder | |
Consolidated Plug.Exception | |
Consolidated Phoenix.Html.Safe | |
Consolidated Jazz.Decoder | |
Consolidated Jazz.Encoder | |
** (MatchError) no match of right hand side value: {:error, [{'/home/jadams/elixir/elixir/lib/iex/lib/iex/autocomplete.ex', [{7, :erl_lint, {:undefined_function, {:struct_impl_for, 1}}}]}], [{'/home/jadams/elixir/elixir/lib/iex/lib/iex/autocomplete.ex', [{7, :erl_lint, {:unused_function, {:any_impl_for, 0}}}, {7, :erl_lint, {:unused_function, {:rec_impl_for, 1}}}]}]} |
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
<html> | |
<head> | |
<style type="text/css"> | |
rect { | |
fill: red; | |
fill-opacity: 0.8; | |
} | |
</style> | |
</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
[jadams@thunderpants:/home/jadams/software] $ git clone git://anongit.freedesktop.org/pulseaudio/pulseaudio | |
Cloning into 'pulseaudio'... | |
cd pu | |
fatal: unable to connect to anongit.freedesktop.org: | |
anongit.freedesktop.org: Name or service not known | |
[jadams@thunderpants:/home/jadams/software] 1m0s $ cd pu | |
-bash: cd: pu: No such file or directory | |
[jadams@thunderpants:/home/jadams/software] $ git clone ssh://git.freedesktop.org/git/pulseaudio/pulseaudio | |
Cloning into 'pulseaudio'... |
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
def for_category(:uncategorized) do | |
Project | |
|> where([p], p.category_id) | |
|> select([p], p) | |
|> Repo.all | |
end |