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
# *** The trekking profile is for slow travel | |
# *** and avoiding car traffic, but still with | |
# *** a focus on approaching your destination | |
# *** efficiently. | |
# | |
# *** Unikaj wszystkich dróg samochodowych. | |
# *** W pierwszej kolejności wybierz drogi | |
# *** rowerowe, a w drugiej piesze. | |
# *** Unikaj miękkiej nawierzchni. | |
# |
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
# *** The trekking profile is for slow travel | |
# *** and avoiding car traffic, but still with | |
# *** a focus on approaching your destination | |
# *** efficiently. | |
# | |
# *** Ta modyfikacja unika dróg z ograniczeniem | |
# *** prędkości powyżej 50 km/h oraz leśnych ścieżek | |
# *** niedostosowanych do ruchu rowerowego. | |
# *** | |
# *** |
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
# *** The trekking profile is for slow travel | |
# *** and avoiding car traffic, but still with | |
# *** a focus on approaching your destination | |
# *** efficiently. | |
# | |
# *** Prędkość dostosowana do niewytrenowanego | |
# *** rowerzysty MTB. Nawigacja wybiera jak | |
# *** najłagodniejsze podjazdy. Lubi prowadzić | |
# *** drogami z przeciętnym ruchem samochodowym. | |
# *** Unika dróg "pomarańczowych" i "czerwonych". |
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
gm convert *.pnm output.pdf |
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 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:get/get.dart'; | |
import 'package:intl/intl.dart'; | |
class Home extends StatelessWidget { | |
const Home({Key? key}) : super(key: key); | |
@override |
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
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object | |
<object type="application/pdf" | |
data="/media/examples/In-CC0.pdf" | |
width="250" | |
height="200"> | |
</object> |
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
# cat /templates/_product.liquid | |
ABC |
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
class MainActivity : ComponentActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
val context: Context = this | |
val isWordPressKnew = runBlocking { context.settingsDataStore.data.first().websiteUrl } | |
setContent { | |
if(isWordPressKnew.isNullOrEmpty()){ |
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 io.github.onliniak.qr_scanner | |
import android.os.Bundle | |
import android.util.Log | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.rememberLauncherForActivityResult | |
import androidx.activity.compose.setContent | |
import androidx.activity.result.contract.ActivityResultContracts | |
import androidx.activity.result.launch | |
import androidx.compose.material.Button |