uuid is a PHP module for generating UUIDs. It can be installed from PECL with the following command:
sudo pecl install uuid| import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
| import 'package:logging/logging.dart'; | |
| /// Usage: | |
| /// | |
| /// ```dart | |
| /// ProviderScope( | |
| /// observers: kDebugMode ? [RiverpodDebugObserver()] : [], | |
| /// child: MyApp(), | |
| /// ) |
| <?php | |
| class Service | |
| { | |
| /** @var Psr\Http\Client\ClientInterface */ | |
| private $client; | |
| /** @var Psr\Http\Message\RequestFactoryInterface */ | |
| private $requestFactory; |
| // ==UserScript== | |
| // @name HipSlack | |
| // @namespace http://domarkas.lt/ | |
| // @version 0.1 | |
| // @description HipChat-like theme for Slack | |
| // @author Tadas Domarkas | |
| // @match https://*.slack.com/* | |
| // @grant none | |
| // ==/UserScript== |
| git clean -xfd | |
| git submodule foreach --recursive git clean -xfd | |
| git reset --hard | |
| git submodule foreach --recursive git reset --hard | |
| git submodule update --init --recursive |
| #!/bin/bash | |
| ### Install PHP 7.1 on OPenSUSE 42.2 64Bits | |
| ### https://build.opensuse.org/package/view_file/devel:languages:php/php7/php7.spec?expand=1 | |
| ### https://www.howtoforge.com/tutorial/how-to-install-php-7-on-debian/ | |
| ### http://www.shaunfreeman.name/compiling-php-7-on-centos/ | |
| zypper in openssl-devel | |
| zypper in gcc gcc-c++ libxml2-devel pkgconfig libbz2-devel curl-devel libwebp-devel |
| DELIMITER $$ | |
| CREATE FUNCTION InterruptQuery(connection_id INT) RETURNS INT DETERMINISTIC | |
| BEGIN | |
| KILL QUERY connection_id; | |
| RETURN 0; | |
| END | |
| $$ | |
| SELECT InterruptQuery(CONNECTION_ID()) $$ |
| ; Sample supervisor config file. | |
| [unix_http_server] | |
| file=/tmp/supervisor.sock ; (the path to the socket file) | |
| ;chmod=0700 ; sockef file mode (default 0700) | |
| ;chown=nobody:nogroup ; socket file uid:gid owner | |
| ;username=user ; (default is no username (open server)) | |
| ;password=123 ; (default is no password (open server)) | |
| ;[inet_http_server] ; inet (TCP) server disabled by default |
| var gulp = require('gulp'), | |
| concat = require('gulp-concat'), | |
| less = require('gulp-less'), | |
| uglify = require('gulp-uglify'); | |
| var files = { | |
| copyCss: [ | |
| 'bower_components/animate.css/animate.min.css', | |
| 'bower_components/suit-components-arrange/lib/arrange.css' | |
| ], |