Skip to content

Instantly share code, notes, and snippets.

View pokusew's full-sized avatar

Martin Endler pokusew

  • Czech Republic
  • 16:46 (UTC +02:00)
  • LinkedIn in/pokusew
View GitHub Profile
This file has been truncated, but you can view the full file.
{
"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",
"time": 2675,
@pokusew
pokusew / CMakeLists.txt
Created October 3, 2019 20:57
simple CMake config to make CLion usable (advanced syntax highlighting and code analysis) with Makefile based projects
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
@pokusew
pokusew / useful-links.md
Last active October 3, 2019 18:30
Useful info and links for Bash, shell, regex and more
@pokusew
pokusew / test.dart
Last active September 11, 2019 22:14
import 'package:flutter/material.dart';
class TestApp extends StatelessWidget {
TestApp({
Key key,
}) : super(key: key);
@override
@pokusew
pokusew / index.js
Last active June 16, 2021 13:23
Modified basic example (https://github.com/pokusew/nfc-pcsc/examples/index.js) of reading and writing NFC cards with nfc-pcsc lib
"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
// #############
@pokusew
pokusew / nfc.md
Last active January 26, 2017 17:00
pcsclite usage
@pokusew
pokusew / test
Created August 13, 2014 17:57
test
<?php
die();