Disclaimer: The resources below may contain incomplete information, inaccuracies or errors. Use them wisely.
- https://cw.fel.cvut.cz/wiki/courses/b4b35osy/cviceni/material/bash (in Czech)
CTU FEL B4B35OSY course's Bash introduction
{ | |
"errors": [], | |
"warnings": [ | |
"asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).\nThis can impact web performance.\nAssets: \n index.99d683b7dda37d8c7c72.js (335 KiB)", | |
"entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.\nEntrypoints:\n index (349 KiB)\n style.b6d8d3b4988e14c04ad1.css\n index.99d683b7dda37d8c7c72.js\n", | |
"webpack performance recommendations: \nYou can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application.\nFor more info visit https://webpack.js.org/guides/code-splitting/" | |
], | |
"version": "4.44.1", | |
"hash": "83a734dae10b97851beb", |
cmake_minimum_required(VERSION 3.12) | |
project(fel_prp C) | |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pedantic -Wall -std=c99 -O3") | |
# no need to uncomment unless you need libs from that directory | |
# include_directories(/usr/local/include) | |
# build executable for hw01 | |
add_executable(hw01 |
Disclaimer: The resources below may contain incomplete information, inaccuracies or errors. Use them wisely.
import 'package:flutter/material.dart'; | |
class TestApp extends StatelessWidget { | |
TestApp({ | |
Key key, | |
}) : super(key: key); | |
@override |
"use strict"; | |
// ############# | |
// Basic example | |
// - example reading and writing data on from/to card | |
// - should work well with any compatible PC/SC card reader | |
// - tested with Mifare Ultralight cards but should work with many others | |
// - example authentication for Mifare Classic cards | |
// ############# |
http://tech.springcard.com/2013/scardcontrol-linux-and-java/
macOS:
/usr/libexec/SmartCardServices/drivers/ifd-ccid.bundle
<?php | |
die(); |