- Open Automator
- Create a new document
- Select Quick Action
- Set “Service receives selected” to
files or folders
inany application
- Add a
Run Shell Script
action- your default shell should already be selected, otherwise use
/bin/zsh
for macOS 10.15 (”Catalina”) or later - older versions of macOS use
/bin/bash
- your default shell should already be selected, otherwise use
- if you're using something else, you probably know what to do 😉
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.thomaskuenneth.sandbox | |
import android.graphics.Bitmap | |
import android.graphics.Canvas | |
import android.os.Bundle | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.compose.foundation.Image | |
import androidx.compose.foundation.layout.* | |
import androidx.compose.material.MaterialTheme |
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
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.CompositionLocalProvider | |
import androidx.compose.runtime.RememberObserver | |
import androidx.compose.runtime.remember | |
import androidx.compose.runtime.saveable.rememberSaveable | |
import androidx.compose.ui.platform.LocalContext | |
import androidx.lifecycle.ViewModelStore | |
import androidx.lifecycle.ViewModelStoreOwner | |
import androidx.lifecycle.viewmodel.compose.LocalViewModelStoreOwner | |
import timber.log.Timber |
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
EDBEngineError-Network Initialization Failed | |
Permission Denied | |
File C:\PDOXUSERS.NET | |
Directory: c:\ | |
1. Create a new directory such as C:\BDEShare or use an existing folder (like My Documents). | |
2. Start the BDE Administration utility, located in: C:\Program Files (x86)\Common Files\Borland Shared\BDE\BDEADMIN.EXE | |
3. Click Configuration -> Drivers -> Native -> Paradox | |
4. Cick on the path next to NET DIR | |
5. Click the browse button to the right of the path |
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
services: | |
mssql2022: | |
image: mcr.microsoft.com/mssql/server:2022-latest | |
environment: | |
ACCEPT_EULA: Y | |
MSSQL_SA_PASSWORD: <YourStrong@Passw0rd> | |
MSSQL_COLLATION: Turkish_CI_AS | |
ports: | |
- 1433:1433 | |
volumes: |
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
services: | |
mssql2019: | |
image: mcr.microsoft.com/mssql/server:2019-latest | |
environment: | |
ACCEPT_EULA: Y | |
MSSQL_SA_PASSWORD: <YourStrong@Passw0rd> | |
MSSQL_COLLATION: Turkish_CI_AS | |
ports: | |
- 1433:1433 | |
volumes: |
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
services: | |
mssql2017: | |
image: mcr.microsoft.com/mssql/server:2017-latest | |
environment: | |
ACCEPT_EULA: Y | |
MSSQL_SA_PASSWORD: <YourStrong@Passw0rd> | |
MSSQL_COLLATION: Turkish_CI_AS | |
ports: | |
- 1433:1433 | |
volumes: |
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
services: | |
sqlserver: | |
image: mcr.microsoft.com/mssql/server:2022-latest | |
environment: | |
ACCEPT_EULA: Y | |
MSSQL_SA_PASSWORD: <YourStrong@Passw0rd> | |
MSSQL_COLLATION: Turkish_CI_AS | |
ports: | |
- 1433:1433 |
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
services: | |
sqlserver: | |
image: mcr.microsoft.com/mssql/server:2019-latest | |
environment: | |
ACCEPT_EULA: Y | |
MSSQL_SA_PASSWORD: <YourStrong@Passw0rd> | |
MSSQL_COLLATION: Turkish_CI_AS | |
ports: | |
- 1433:1433 |
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
services: | |
sqlserver: | |
image: mcr.microsoft.com/mssql/server:2017-latest | |
environment: | |
ACCEPT_EULA: Y | |
MSSQL_SA_PASSWORD: <YourStrong@Passw0rd> | |
MSSQL_COLLATION: Turkish_CI_AS | |
ports: | |
- 1433:1433 |
NewerOlder