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 Main exposing (main) | |
import Browser | |
import Browser.Dom exposing ( Viewport, getViewport ) | |
import Browser.Events exposing ( onMouseMove, onResize ) | |
import Html exposing ( Html ) | |
import Html.Attributes exposing ( height, style, width ) | |
import Json.Decode as Decode exposing ( Decoder ) | |
import Math.Vector2 exposing ( Vec2, vec2 ) | |
import Math.Vector3 exposing ( Vec3, vec3 ) |
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 Lifegame do | |
@size 5 | |
def publish_status(_, _, []), do: :ok | |
def publish_status(step, status, [node|rest]) do | |
send(node, {status, step, status}) | |
publish_status(step, status, rest) | |
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
gem 'haml-rails' | |
gem_group :development do | |
gem 'factory_bot_rails', group: :test | |
gem 'rubocop', group: :test | |
gem 'rubocop-performance', group: :test | |
gem 'rubocop-rails', group: :test | |
gem 'rspec-rails', group: :test | |
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
import Browser | |
import Html exposing (Attribute, Html, button, div, node, p, text) | |
import Html.Attributes exposing (classList) | |
import Html.Events exposing (onClick) | |
type alias Model = { message : String , flush : Bool } | |
main = | |
Browser.sandbox | |
{ init = { message = "" , flush = False } |
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
diff -u a/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm b/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | |
--- a/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | |
+++ b/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | |
@@ -736,7 +736,7 @@ | |
QFixed QCoreTextFontEngine::emSquareSize() const | |
{ | |
- return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont))); | |
+ return QFixed(int(CTFontGetUnitsPerEm(ctfont))); | |
} |
http://www.phoenixframework.org/docs/installation
$ sudo xcode-select --install
I hereby claim:
- I am eitoball on github.
- I am eitoball (https://keybase.io/eitoball) on keybase.
- I have a public key ASAW4gbDGMp9WUN2YUqto7niKWcgKdORhD6l8etfyiGu8go
To claim this, I am signing this object:
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
# encoding: utf-8 | |
require 'yaml' | |
class Executer | |
def initialize(dir) | |
@dir = dir | |
end | |
def execute | |
files do |file| |
NewerOlder