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
#!/bin/bash | |
set -euxo pipefail | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install --cask alacritty | |
brew install --cask iterm2 | |
brew install --cask visual-studio-code | |
brew install --cask cyberduck |
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
#!/usr/bin/env python3 | |
# pip3 install pathvalidate | |
# pip3 install pillow | |
# brew install libffi libheif | |
# pip3 install pyheif | |
import sqlite3 | |
import base64 | |
import io |
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 com.example.demo.fp; | |
import io.vavr.control.Try; | |
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; | |
import org.springframework.transaction.support.TransactionTemplate; | |
import java.util.List; | |
import java.util.Objects; | |
import java.util.Optional; | |
import java.util.function.*; |
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 com.github.toastshaman.json.reader; | |
import io.vavr.Function0; | |
import io.vavr.Function1; | |
import io.vavr.Function2; | |
import io.vavr.Function3; | |
import io.vavr.Function4; | |
import org.json.JSONObject; | |
import java.util.Arrays; |
OlderNewer