This is a very simple HTTP server for Unix, using fork(). It's very easy to use
- include header
httpd.h
- write your route method, handling requests.
- call
serve_forever("12913")
to start serving on port 12913
#!/usr/bin/env bash | |
# | |
# Author: Stefan Buck | |
# License: MIT | |
# https://gist.github.com/stefanbuck/ce788fee19ab6eb0b4447a85fc99f447 | |
# | |
# | |
# This script accepts the following parameters: | |
# | |
# * owner |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <X11/Xlib.h> | |
#include <X11/Xutil.h> | |
int main(int argc, char *argv[]) | |
{ | |
unsigned long value; | |
char *terminatedAt; |
import argparse | |
parser = argparse.ArgumentParser() | |
### Positional | |
parser.add_argument('positional1') | |
parser.add_argument('positional2', help="positional argument 2") | |
parser.add_argument('positional3', help="positional argument 3 type int", type=int) | |
### Optional | |
parser.add_argument("--optional1", help="optional argument 1") | |
parser.add_argument("--optional2", help="optional argument 2", action="store_true") |
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> | |
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> | |
Include file (Java) | |
<%@ include file="/WEB-INF/jsp/common/date.jsp" %> | |
Include file (JSP) | |
<jsp:include page="/WEB-INF/jsp/common/date.jsp"> |
unittest2
jq -r '["List", "Card"], ((reduce .lists[] as $list ({}; .[$list.id] = $list.name)) as $lists | .cards[] | select(.closed != true) | [$lists[.idList],.name]) | @csv' <nw3RUeLl.json |
#!/usr/bin/env python | |
from datetime import datetime | |
from json import loads | |
from time import gmtime, mktime, strptime | |
# LevelDict é um wrapper usando dicionário para LevelDB | |
# https://github.com/maurobaraldi/leveldict | |
from leveldict import LevelJsonDict | |
from requests import get |
by xero updated 10.29.24