NOTE: commands and UI are deprecated
- Negative Engineering
- What is workflow orchestration?
- Introduction to Prefect 2.0
- First Prefect flow and Basics
// https://cses.fi/problemset/task/1688/ | |
#include <bits/stdc++.h> | |
using namespace std; | |
typedef long long ll; | |
const ll MAXLOG = 18; | |
void preCalc(vector<vector<ll>>& parent) { |
# cmake version to be used | |
cmake_minimum_required( VERSION 3.0 ) | |
# message("system: ${CMAKE_LIBRARY_PATH}") | |
# project name | |
project(helloworld) | |
# target |
#include <Eigen/Dense> | |
#include <iostream> | |
#include <cmath> | |
#include <vector> | |
#include <Eigen/QR> | |
void polyfit( const std::vector<double> &t, | |
const std::vector<double> &v, | |
std::vector<double> &coeff, | |
int order |
This tutorial shows the result of testing I did of a regular expression (regex) that I found in the following stackoverflow.com question https://stackoverflow.com/questions/2370015/regular-expression-for-password-validation
The user asked for a regular expression for validating a password with the following condition: "Password must contain 8 characters and at least one number, one letter and one unique character such as !#$%&? "
The proposed regex (which will only work with the Latin alphabet) is
#!/usr/bin/env bash | |
set -euo pipefail | |
create_bridge() { | |
local nsname="$1" | |
local ifname="$2" | |
echo "Creating bridge ${nsname}/${ifname}" |
# -------------------------------------------------- | |
function (build_external_project target file_name) | |
set(CMAKELIST_CONTENT " | |
cmake_minimum_required(VERSION ${CMAKE_MINIMUM_REQUIRED_VERSION}) | |
project(build_external_project) | |
file(MD5 \"${file_name}\" FILE_HASH) |
# For more options and information see | |
# http://rpf.io/configtxt | |
# Some settings may impact device functionality. See link above for details | |
# uncomment if you get no picture on HDMI for a default "safe" mode | |
#hdmi_safe=1 | |
# uncomment this if your display has a black border of unused pixels visible | |
# and your display can output without overscan | |
#disable_overscan=1 |
# A rare scenario: Communicate to a child process that's running an event loop | |
import asyncio | |
from asyncio import StreamReader, StreamReaderProtocol | |
from multiprocessing import Process | |
import os | |
class Worker: | |
def __init__(self): | |
self.read_fd, self.write_fd = os.pipe() |
""" | |
LICENSE: MIT | |
Example of using unix socket in SOCK_DGRAM mode. | |
""" | |
import socket | |
import socketserver | |
import time |