Skip to content

Instantly share code, notes, and snippets.

View ljanecek's full-sized avatar

Ladislav Janeček ljanecek

View GitHub Profile
@ljanecek
ljanecek / wifi_ndef_record.dart
Created May 13, 2024 13:00
Flutter Dart NFC Wifi Record Type
import 'dart:typed_data';
import 'package:ndef/ndef.dart' as ndef;
class WifiNdefRecord {
static ndef.NDEFRecord createWifiRecord(String ssid, String password) {
Uint8List ssidByte = Uint8List.fromList(ssid.codeUnits);
Uint8List passwordByte = Uint8List.fromList(password.codeUnits);
Uint8List ssidLength = Uint8List.fromList([(ssid.length >> 8) & 0xFF, ssid.length & 0xFF]);
Uint8List passwordLength = Uint8List.fromList([(password.length >> 8) & 0xFF, password.length & 0xFF]);
<html>
<head>
<title>Test</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Koulen&family=Lato&family=Nunito&family=Playfair+Display:ital@1&family=Prata&family=Raleway:ital,wght@1,100&family=Roboto&family=Roboto+Condensed&family=Teko&display=swap');
.btn {
font-family: Roboto, sans-serif;
font-weight: 600;
@ljanecek
ljanecek / typography.js
Created July 18, 2021 08:54
Typography
const Typography = (str) => {
const quotes = {
singleQuotes: ["\u{201A}", "\u{2018}"],
doubleQuotes: ["\u{201E}", "\u{201C}"],
};
const pattern = 'A-Za-z\\x\{C0\}-\\x\{2FF\}\\x\{370\}-\\x\{1EFF\}';
var patterns = [{
configure: creating cache /Users/ladislavjanecek/.phpbrew/cache/config.cache
./configure: line 3188: /Users/ladislavjanecek/.phpbrew/cache/config.cache: No such file or directory
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking build system type... x86_64-apple-darwin19.4.0
checking host system type... x86_64-apple-darwin19.4.0
checking target system type... x86_64-apple-darwin19.4.0
checking for cc... cc
checking whether the C compiler works... yes
@ljanecek
ljanecek / gist:812b7f5c96c4aa77ffa81a609056d7fa
Created March 21, 2018 18:35
Mandrill, WP, wp_mail, How to Send Mandrill Email via wp_mail
add_action('phpmailer_init', function( PHPMailer $phpmailer ){
$phpmailer->isSMTP();
$phpmailer->Host = 'smtp.mandrillapp.com';
$phpmailer->SMTPAuth = true;
$phpmailer->Port = 587;
$phpmailer->Username = 'USERNAME';
$phpmailer->Password = 'APIKEY';
$phpmailer->SMTPSecure = 'tls';
$phpmailer->addCustomHeader('X-MC-Subaccount', 'SUBACCOUNT');
$phpmailer->setFrom('default@email.com', 'Default Title');
$file = __DIR__ . '/../data/twitter.json';
$tweets = array();
if(!file_exists($file) || (file_exists($file) && time()-filemtime($file) >= 3600)){
try {
$data = self::get_twitter_data();
} catch (Exception $e) {
$data = array();
}
#ctverec{
width: 200px;
height: 200px;
background-color: pink;
position: absolute;
top: 100px;
left: 100px;
border-radius: 100%;
var sviti = 0;
function rozsvit() {
var zarovka = document.getElementById('zarovka');
if (sviti == 0) {
zarovka.src = "zarovka_sviti.jpg";
sviti = 1;
} else {
@ljanecek
ljanecek / killhttpd.sh
Created February 7, 2017 11:16
Apach Ampps Kill Disable Restart
sudo killall httpd
sudo apachectl -k restart
sudo apachectl -k stop
sudo apachectl stop
ffmpeg -loop 1 -i img.jpg -t 30 output.mp4