- I am trying to remove a bow in hardwood floorboards.
- Under the bowed floorboards are two hardwood bearers (about 3m span) on masonry piers.
- Both bearers had about a 20mm sag at midspan.
- I jacked both bearers up to straighten them and left them propped for a few months.
- I then jacked the bearer another ~7mm to overcompensate.
- I sat a 150 PFC on the piers for one bearer and bolted it tight against the bearer using five M12 bolts.
- The joists are not sitting on the PFC.
- When I removed the jack, the bearer dropped back: the centre sagged at least 12 mm immediately.
- Eperb
- Map
- Phone
- Charging bank
- Mattresses
- Sleeping bags
- Sleeping liners
- Blowup pillows
- Tent
- Headtorches
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
| {-# LANGUAGE ImplicitParams #-} | |
| {-# LANGUAGE DeepSubsumption #-} | |
| import Prelude | |
| main :: IO () | |
| main = let ?implicit = "yeah" in flipOut printImplicit | |
| where | |
| printImplicit :: (?implicit :: String) => IO () | |
| printImplicit = putStrLn ?implicit |
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
| { | |
| inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; | |
| inputs.poetry2nix.url = "github:nix-community/poetry2nix"; | |
| outputs = { self, nixpkgs, poetry2nix }: | |
| let | |
| supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; | |
| forAllSystems = nixpkgs.lib.genAttrs supportedSystems; | |
| pkgs = forAllSystems (system: nixpkgs.legacyPackages.${system}); | |
| in |
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 TextIssue where | |
| import Data.Text qualified as Text | |
| import Data.Text.IO qualified as Text | |
| import System.IO | |
| import Network.Socket | |
| working :: IO () | |
| working = do | |
| input <- Text.hGetLine stdin |
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
| cabal-version: 3.0 | |
| name: cabal-bug | |
| version: 0.1.0.0 | |
| build-type: Simple | |
| flag breaks | |
| description: Breaks parsing main-hs. | |
| executable cabal-bug-exe | |
| default-language: Haskell2010 |
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
| { nixpkgs ? import ../nixpkgs-overlayed.nix }: | |
| let | |
| rLibs = [ nixpkgs.pkgs.rPackages.tseries nixpkgs.pkgs.rPackages.forecast ]; | |
| r = nixpkgs.rWrapper.override { | |
| packages = [ rLibs ]; | |
| }; |
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
| { nixpkgs ? import ../nix/nixpkgs-overlayed.nix }: | |
| let | |
| common = import ../common { inherit nixpkgs; }; | |
| frontend = import ../frontend { inherit nixpkgs; }; | |
| r = import ../nix/r { inherit nixpkgs; }; | |
| overrides = drv: { | |
| buildInputs = drv.buildInputs ++ [r]; |
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
| λ: (flip cacheRecipes') | |
| <function> | |
| it :: [Int] -> Text -> IO () | |
| λ: :t (unsafeRight <$> getAuth) | |
| (unsafeRight <$> getAuth) :: IO Data.Text.Internal.Text | |
| λ: :t ((flip cacheRecipes') [67555]) | |
| ((flip cacheRecipes') [67555]) :: Text -> IO () | |
| λ: :t (unsafeRight <$> getAuth) >> ((flip cacheRecipes') [67555]) | |
| <interactive>:1:31: error: |