https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
/* | |
De repente pensei: pq não ordenar números usando índices? Nào tornaria mais | |
rápido se cada numero fosse para sua devida posição? | |
E então escrevi esse algoritmo que possui complexidade linear O(n) | |
É ainda mais perfeito para números sequenciais que não possuem repetição, a única | |
desvantagem é que pra ser mais eficiente você deve saber quantos itens tem | |
o seu array e qual número entre eles é o menor possível para evitar desperdício de memória. |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
#!/bin/bash | |
echo | |
NOTE=" ONLY use scanModem downloaded as: http://linmodems.technion.ac.il/packages/scanModem.gz" | |
UPDATE="2005_Oct_23" | |
cat<<END>/dev/null | |
Just working notes and URLs | |
http://linmodems.technion.ac.il/packages/smartlink/ | |
mirror http://phep17.technion.ac.il/linmodems |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
On tests where where have been trying to use the Kernel isolcpus
parameter, and other techniques, to perform CPU isolation to split the cores into:
This is a RHEL based Kernel, in which CONFIG_NO_HZ_FULL
is not set, meaning are unable to use the nohz_full parameter to be able to turn the application CPUs into adaptive-ticks CPUs.
/********************************************************************* | |
* | |
* Name: user.js | brainfucksec | |
* Date: 2024-10-20 | |
* Version: 0.23.0 | |
* Descr.: Mozilla Firefox configuration file: `user.js` | |
* URL: https://gist.github.com/brainfucksec/68e79da1c965aeaa4782914afd8f7fa2 | |
* Maintainer: brainf+ck | |
* | |
* INFO: |
/** | |
* Moved to a new repository. | |
* https://github.com/intrnl/firefox-revert-proton | |
*/ | |
:root { | |
--tab-min-height: 28px !important; | |
--toolbarbutton-inner-padding: 6px !important; | |
--toolbarbutton-outer-padding: 1px !important; | |
--toolbar-start-end-padding: 1px !important; |
#define _POSIX_C_SOURCE 199309L | |
//#define DEBUG | |
#include <Imlib2.h> | |
#include <X11/Xatom.h> | |
#include <X11/Xlib.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> |
-- lista infinita dos primos | |
primes :: [Integer] | |
primes = 2 : 3 : 5 : filter isPrime [7, 9 ..] | |
where isPrime n = null $ filter (divides n) (potentialDivisors n) | |
potentialDivisors n = takeWhile (<= isqrt n) primes | |
-- raiz quadrada inteira, aproximada para cima | |
isqrt :: Integer -> Integer | |
isqrt = ceiling . sqrt . fromIntegral |