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
{ lib | |
, runtimeShell | |
, stdenvNoCC | |
}@p: | |
{ pname | |
, lib ? p.lib | |
, runtimeShell ? p.runtimeShell | |
, stdenv ? stdenvNoCC | |
, version ? null | |
, critical ? false |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{ | |
"400": "Requisição inválida. O servidor não pode processar a solicitação devido a um erro do cliente.", | |
"401": "Não autorizado. O acesso requer autenticação ou as credenciais fornecidas são inválidas.", | |
"402": "Pagamento necessário. O pagamento é necessário para acessar o recurso solicitado.", | |
"403": "Proibido. O servidor entende a solicitação, mas se recusa a atendê-la. O acesso é proibido.", | |
"404": "Não encontrado. O servidor não pôde encontrar o recurso solicitado.", | |
"405": "Método não permitido. O método de solicitação não é permitido para o recurso solicitado.", | |
"406": "Não aceitável. O servidor não é capaz de fornecer uma representação adequada para o recurso solicitado.", | |
"407": "Autenticação de proxy necessária. O cliente deve autenticar-se com o proxy antes de acessar o recurso.", | |
"408": "Tempo limite de solicitação. O servidor encerrou a conexão devido à solicitação levar muito tempo.", |
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
{ pkgs, ... }: | |
{ | |
environment.etc."cni/net.d/87-podman-bridge.conflist".source = | |
let | |
cfgExtraPlugins = [{ | |
type = "dnsname"; | |
domainName = "dns.podman"; | |
capabilities.aliases = true; | |
}]; | |
cfgPackage = pkgs.podman; |
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
diff --git a/pkgs/tools/networking/airgeddon/default.nix b/pkgs/tools/networking/airgeddon/default.nix | |
index c364d56a5df..07f0f5cad06 100644 | |
--- a/pkgs/tools/networking/airgeddon/default.nix | |
+++ b/pkgs/tools/networking/airgeddon/default.nix | |
@@ -1,7 +1,7 @@ | |
{ lib | |
, stdenv | |
, fetchFromGitHub | |
-, makeWrapper | |
+, resholve |
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
/* ==UserStyle== | |
@name GitHub Review | Hide Paack Schemas | |
@namespace https://gist.github.com/PedroHLC/d58d608fa9be8f1fe869862e1f617417 | |
@homepageURL https://gist.github.com/PedroHLC/d58d608fa9be8f1fe869862e1f617417 | |
@updateURL https://gist.githubusercontent.com/PedroHLC/d58d608fa9be8f1fe869862e1f617417/raw/hide-paack-generated-file.user.css | |
@version 0.1.0 | |
@license Other | |
@description Hide files which are machine-generated from reviews. | |
@author PedroHLC (https://pedrohlc.com) | |
==/UserStyle== */ |
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
module AlphanumericSorter exposing (AlphanumericSortConfig, alphanumericSort) | |
type alias AlphanumericSortConfig item = | |
{ retrieve : item -> String | |
, smallerFirst : Bool | |
, emptyOnTail : Bool | |
, numbersFirst : Bool | |
} |
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
module AnyDict exposing | |
( AnyDict, isContentEqual | |
, empty, singleton, insert, update, remove | |
, isEmpty, member, get, getMin, findl, findr, size | |
, keys, values, toList, fromList | |
, map, foldl, foldr, filter, partition | |
, union, intersect, diff, merge | |
) | |
{-| Fork of [elm-core's Dict](/packages/elm/core/1.0.5/Dict), removing the limitation of the keys' types. |
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
/* ==UserStyle== | |
@name Full Width for Crunchyroll | |
@namespace https://gist.github.com/PedroHLC/443557557d1f83bbe4813d7de4b96b29 | |
@homepageURL https://gist.github.com/PedroHLC/443557557d1f83bbe4813d7de4b96b29 | |
@updateURL https://gist.githubusercontent.com/PedroHLC/443557557d1f83bbe4813d7de4b96b29/raw/fullwidth-crunchyroll.user.css | |
@version 0.1.3 | |
@license Other | |
@description I like it taking the display's full width... | |
@author PedroHLC (https://pedrohlc.com) | |
==/UserStyle== */ |
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
--- a/kernel/locking/lockdep_internals.h 2021-04-08 20:34:48.244594696 -0300 | |
+++ b/kernel/locking/lockdep_internals.h 2021-04-08 20:35:08.554843178 -0300 | |
@@ -95,13 +95,13 @@ | |
* conflicts and deadlocks. | |
*/ | |
#define MAX_LOCKDEP_ENTRIES 16384UL | |
-#define MAX_LOCKDEP_CHAINS_BITS 15 | |
+#define MAX_LOCKDEP_CHAINS_BITS 17 | |
#define MAX_STACK_TRACE_ENTRIES 262144UL | |
#define STACK_TRACE_HASH_SIZE 8192 |