Skip to content

Instantly share code, notes, and snippets.

@mcmatrix
mcmatrix / horizontal.phtml
Created May 27, 2022 16:12 — forked from kkamkou/horizontal.phtml
Zend Navigation for the Twitter Bootstrap
<?php
/**
* @author Kanstantsin A Kamkou (2ka.by)
* History:
* - 21.08.2012 Bootstrap 2.1.0 corrections
* - 31.03.2013 Acl check added
*/
$html = array('<ul class="nav">');
@mcmatrix
mcmatrix / bootstrap.php
Created May 27, 2022 16:12 — forked from jeroenherczeg/bootstrap.php
Zend Navigation for the Twitter Bootstrap
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {
protected function _initNavigation() {
// make sure the layout is loaded
$this->bootstrap('layout');
// get the view of the layout
$layout = $this->getResource('layout');
$view = $layout->getView();
@mcmatrix
mcmatrix / Fix-Curl-SQLite3-in-PHP-7.4-under-Windows.md
Created November 25, 2021 15:24 — forked from alecos71/Fix-Curl-SQLite3-in-PHP-7.4-under-Windows.md
How to fix errors generated by PHP 7.4 related to CURL & SQLite3 under Windows

Fix for CURL & SQLite3 under Windows on PHP 7.4

If you have just downloaded and configured PHP 7.4 and you want to use CURL and SQLite3 you could run into a serious PHP-generated error for the reason that both CURL and SQlite3 make use of an external library located in the PHP directory. First SQLite3 was integrated into PHP but from version 7.4 no longer. The errors are these:

PHP Warning: PHP Startup: Unable to load dynamic library 'pdo_sqlite'

PHP Warning: PHP Startup: Unable to load dynamic library 'sqlite3'

PHP Warning: PHP Startup: Unable to load dynamic library 'php_curl'

@mcmatrix
mcmatrix / app.py
Created January 28, 2021 14:37 — forked from DmitryBe/app.py
Restful API with python flask
# https://blog.miguelgrinberg.com/post/designing-a-restful-api-with-python-and-flask
from flask import Flask, jsonify │ response = self.full_dispatch_request()
from flask import request, abort, make_response │ File "/home/dmitry/workspace/flask-api/env/lib/python2.7/site-packages/flask/app.py", line 1614, in full_dispatch_request
│ rv = self.handle_user_exception(e)
app = Flask(__name__) │ File "/home/dmitry/workspace/flask-api/env/lib/python2.7/site-packages/flask/app.py", line 1512, in handle_user_exception
@mcmatrix
mcmatrix / Unicode.md
Created January 21, 2021 09:53 — forked from gornostal/Unicode.md
Python 2.7. Unicode Errors Simply Explained

Python 2.7. Unicode Errors Simply Explained

I know I'm late with this article for about 5 years or so, but people are still using Python 2.x, so this subject is relevant I think.

Some facts first:

  • Unicode is an international encoding standard for use with different languages and scripts
  • In python-2.x, there are two types that deal with text.
    1. str is an 8-bit string.
  1. unicode is for strings of unicode code points.
@mcmatrix
mcmatrix / asciidecodeerror.py
Created January 21, 2021 09:51 — forked from miraculixx/asciidecodeerror.py
Tired of Python's UnicodeDeocodeError, ascii codec can't decode? Here's how to fix it, once and for all.
# Python ascii codec can't decode and unicode mess
#
# check this out https://pythonhosted.org/kitchen/unicode-frustrations.html
# and this http://www.joelonsoftware.com/articles/Unicode.html
#
# The short of it is this
# 1. If you can, always set PYTHONIOENCODING=utf8 before you start your python programs.
# 2. If you can't or you can't ensure this, always use the following lambda _u to get unicode text
# whereever you convert to strings (str.format, str % etc.)
#

This is a collection of code snippets for various features on the STM8S family microcontrollers (specifically the STM8S003F3). These are written against the STM8S/A SPL headers and compiled using SDCC.

Some of this controller's functions aren't particularly intuitive to program, so I'm dumping samples for future reference here. These are based on the STM8S documentation:

Run at 16MHz

#GPIO0 Long Press MCU
#GPIO14 Green LED
#GPIO1 UART TX
#GPIO3 UART RX
esphome:
board_flash_mode: dout
includes:
- custom/tuyadimmer_lightoutput.h
@mcmatrix
mcmatrix / tuyadimmer_lightoutput.h
Created July 13, 2020 12:15 — forked from placidorevilla/tuyadimmer_lightoutput.h
Prototype esphome component for Tuya Dimmer
#pragma once
#include "esphome.h"
using namespace esphome;
enum TuyaCmd : uint8_t {
HEARTBEAT = 0x00,
QUERY_PRODUCT = 0x01,
MCU_CONF = 0x02,
WIFI_STATE = 0x03,
@mcmatrix
mcmatrix / light.py
Created June 25, 2020 20:26 — forked from ybarigou/light.py
Flux_led corrected bugs related to hassio and Google Home/Alexa interactions - https://www.buymeacoffee.com/ybarigou
"""Support for Flux lights."""
import logging
import random
###
# Added for MagicLight hack
import time
from flux_led import BulbScanner, WifiLedBulb
import voluptuous as vol