- Ta med
- Tävling
- Simning
- Våtdräkt
- Simglasögon
- Cykel
- Vattenflaskor
- Kolsyrepatroner
- Kolsyrepump
- Simning
- Tävling
- Cykelskor
This file contains 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
sdfsdf |
This file contains 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
main.swift:55:7: error: ambiguous reference to member 'init' | |
self.init(x) | |
^~~~ | |
Swift.Array<Element>:49:12: note: found this candidate | |
public init<S>(_ s: S) where S : Sequence, S.Iterator.Element == Element | |
^ | |
Swift.RangeReplaceableCollection:22:24: note: found this candidate | |
public convenience init<S>(_ elements: S) where S : Sequence, S.Iterator.Element == Self.Iterator.Element |
This file contains 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
APP="MyApp" | |
CONSTRUCT=xcodebuild -workspace $(APP).xcworkspace -scheme $(APP) clean | |
install_deps: | |
pod install | |
create_config: | |
swift package fetch | |
swift package generate-xcodeproj | |
wipe: | |
rm -rf .build $(APP).xcodeproj $(APP).xcworkspace Package.pins Pods Podfile.lock |
- Google Maps
- Sverigekarta
- Cykling
- 1102km
- 276km
- Umeå -> Sundsvall, 276km
- 289km
- Sundsvall -> Bollnäs, 169km
- Bollnäs -> Falun, 120km
- 276km
- 1102km
- 184km
This file contains 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
Handler/Comment.hs:25:29: | |
Couldn't match type `Text' with `Entity Post' | |
Expected type: Field (HandlerT App IO) (Entity Post) | |
Actual type: Field (HandlerT App IO) Text | |
In the first argument of `areq', namely `textField' | |
In the second argument of `(<$>)', namely | |
`areq textField "Post" (Just post)' | |
In the second argument of `(<*>)', namely | |
`(entityKey <$> areq textField "Post" (Just post))' |
This file contains 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
Handler/Comment.hs:25:29: | |
Couldn't match type `Text' with `Entity Post' | |
Expected type: Field (HandlerT App IO) (Entity Post) | |
Actual type: Field (HandlerT App IO) Text | |
In the first argument of `areq', namely `textField' | |
In the second argument of `(<$>)', namely | |
`areq textField "Post" (Just post)' | |
In the second argument of `(<*>)', namely | |
`(entityKey <$> areq textField "Post" (Just post))' |
This file contains 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
require "pp" | |
a = "A\s+(.+?)" | |
b = "[\n]+B\s+(.+?)" | |
c = "[\n]+C\s+(.+?)" | |
d = "[\n]+D\s+((?=E)[^E]+|[^\n]+)" | |
e = "[(?=[\n]+E\s+)[\n]+E\s+(.+?)\n]?" | |
pp File.read("ord.txt").scan(/(^\d{1,2})\.\s+(.+?(?=A\s+))#{a}#{b}#{c}#{d}#{e}/m).to_a |
This file contains 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
ActionView::MissingTemplate: Missing template mobile/toplists/index, mobile/application/index, application/index with {:locale=>[:sv, :en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby, :slim, :coffee, :arb, :haml, :rabl]}. Searched in: * "/opt/www/radiofy.se/releases/20140604094919/app/views" * "/opt/www/radiofy.se/shared/bundle/ruby/2.0.0/gems/twitter-bootstrap-rails-2.2.8/app/views" * "/opt/www/radiofy.se/shared/bundle/ruby/2.0.0/bundler/gems/active_admin-bca806aa816c/app/views" * "/opt/www/radiofy.se/shared/bundle/ruby/2.0.0/gems/devise-3.2.4/app/views" * "/opt/www/radiofy.se/shared/bundle/ruby/2.0.0/gems/bootstrap-kaminari-views-0.0.3/app/views" * "/opt/www/radiofy.se/shared/bundle/ruby/2.0.0/bundler/gems/kaminari-30215b19f1c5/app/views" |
This file contains 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
SELECT AVG(i.total), MAX(i.total) | |
FROM( | |
SELECT COALESCE(SUM(a.count) + SUM(b.count), 0) as total | |
FROM users | |
LEFT JOIN ( | |
SELECT | |
COUNT(*) as count, | |
user_id | |
FROM "quick_answers" | |
GROUP BY user_id |
NewerOlder