- Auto Tab Discard: https://addons.mozilla.org/en-US/firefox/addon/auto-tab-discard/
- DuckDuckGo Privacy Essentials: https://addons.mozilla.org/en-US/firefox/addon/duckduckgo-for-firefox/
- Ghostery – Privacy Ad Blocker: https://addons.mozilla.org/en-US/firefox/addon/ghostery/
- Privacy Badger: https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/
- Privacy Possum: https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/
- Smart HTTPS: https://addons.mozilla.org/en-US/firefox/addon/smart-https-revived/
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
const CUSTOM_DELIMITER_PATTERN = "//"; | |
const DEFAULT_DELIMITER = ","; | |
const DELIMITIER_POSITION = 2; | |
const NUMBERS_START_POSITION = 4; | |
const parseInput = (input) => { | |
if (input.startsWith(CUSTOM_DELIMITER_PATTERN)) { | |
return { | |
delimiter: input[DELIMITIER_POSITION], | |
rawNumbers: input.substring(NUMBERS_START_POSITION, input.length) |
- Why the pattern Client-Response might cause some troubles?
- What are distributed objects?
- How we can solve this problem?
- How many calls do you do between services before replying a syncronous call to the end user?
- Which pattern is more common in your application? Remote calls or messages?
I hereby claim:
- I am aleixmorgadas on github.
- I am aleixmorgadas (https://keybase.io/aleixmorgadas) on keybase.
- I have a public key ASB5kmXGYTA_TqclOqV7nMvPgFn8yxWUfYOQJ5DMe_CKTAo
To claim this, I am signing this object:
How to enable function keys
echo 0 | sudo tee /sys/module/hid_apple/parameters/fnmode
https://blog.colinwaddell.com/keychron-function-keys-configuration/
- Download the next netinst.iso https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/bullseye_di_alpha2/amd64/iso-cd/ or newer.
I'm using the bullseye because it has the latest kernel, and it seems required for this laptop. Also, the link might breake because the alpha2 it's no longer available because Debian Bullseye has already a beta version or it's released as stable distribution. In that case, check the root directory https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/
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
package dev.aleixmorgadas; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; | |
import org.springframework.boot.test.context.SpringBootTest; | |
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; | |
import org.springframework.test.web.servlet.MockMvc; | |
import org.testcontainers.containers.PostgreSQLContainer; | |
import org.testcontainers.junit.jupiter.Testcontainers; |
OlderNewer