I hereby claim:
- I am voidcontext on github.
- I am gaborpihaj (https://keybase.io/gaborpihaj) on keybase.
- I have a public key ASAPLsGETQuZec5avqrkre779b8HxB9eUUGjPJxFaR7VdQo
To claim this, I am signing this object:
| diff --git a/arch/arm/boot/dts/overlays/Makefile b/arch/arm/boot/dts/overlays/Makefile | |
| index 6fcacdccb608..8e3a0dc87e92 100644 | |
| --- a/arch/arm/boot/dts/overlays/Makefile | |
| +++ b/arch/arm/boot/dts/overlays/Makefile | |
| @@ -34,6 +34,12 @@ dtbo-$(CONFIG_ARCH_BCM2835) += \ | |
| cap1106.dtbo \ | |
| chipdip-dac.dtbo \ | |
| cma.dtbo \ | |
| + devterm-bt.dtbo \ | |
| + devterm-misc.dtbo \ |
| { config, pkgs, lib, ... }: | |
| { | |
| # NixOS wants to enable GRUB by default | |
| boot.loader.grub.enable = false; | |
| # Enables the generation of /boot/extlinux/extlinux.conf | |
| boot.loader.generic-extlinux-compatible.enable = true; | |
| # !!! If your board is a Raspberry Pi 1, select this: | |
| boot.kernelPackages = pkgs.linuxPackages_rpi; | |
| # !!! Otherwise (even if you have a Raspberry Pi 2 or 3), pick this: |
I hereby claim:
To claim this, I am signing this object:
| import cats.effect.IO | |
| import scala.concurrent.{Await, Future} | |
| import scala.concurrent.duration._ | |
| import scala.concurrent.ExecutionContext.Implicits.global | |
| case class Repository() | |
| case class MetaData(name: String) | |
| trait APIClient { | |
| def getRepositories: IO[List[Repository]] |
| #!/bin/bash | |
| CURRENT=`setxkbmap -query | grep layout | awk '{print $2}'` | |
| if [ "$CURRENT" == "us" ]; then | |
| setxkbmap hu | |
| else | |
| setxkbmap us | |
| fi |
| -- Problem 1 | |
| sum [x | x <- [0..999], x `mod` 3 == 0 || x `mod` 5 == 0 ] |
| #!/usr/bin/perl | |
| # vim: expandtab ts=2 sw=2 | |
| use warnings; | |
| use strict; | |
| use File::Slurp qw{read_file}; | |
| my $remote = $ARGV[0]; | |
| my $client= $ARGV[1]; |
| #!/usr/bin/fish | |
| env GNOME_DESKTOP_SESSION_ID=1 /usr/bin/google-chrome |
| cp myCA.crt /usr/share/pki/ca-trust-source/anchors | |
| update-ca-trust extract |
| #!/usr/bin/perl | |
| # vim: expandtab ts=2 sw=2 | |
| =pod | |
| =head1 Docker Inspect utility | |
| usage: | |
| docker inspect I<container_name> | di I<todo> |