1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
import inspect | |
from functools import wraps | |
import openai | |
def generate_code(signature, docstring): | |
init_prompt = "You are a Python expert who can implement the given function." | |
definition = f"def {signature}" | |
prompt = f"Read this incomplete Python code:\n```python\n{definition}\n```" |
#!/bin/bash | |
set -e | |
SSH_DIR="${HOME}/.ssh" | |
SSH_CONFIG_BASE64=`curl -s http://vault.in.ein.plus/keys/ein-ci` | |
mkdir -p "${SSH_DIR}" | |
chmod 0700 "${SSH_DIR}" |
__kubectl_init_completion() | |
{ | |
COMPREPLY=() | |
_get_comp_words_by_ref "$@" cur prev words cword | |
} | |
__kubectl_get_pod() | |
{ | |
if declare -F _init_completion >/dev/null 2>&1; then | |
_init_completion -s || return |
import csv | |
import os | |
import plistlib | |
def parse_safari_reading_list_plist(): | |
plist = plistlib.load( | |
open(os.path.expanduser('~/Library/Safari/Bookmarks.plist'), 'rb')) | |
items = [] |
1) Filter Table
Filter is default table for iptables. So, if you don’t define you own table, you’ll be using filter table. Iptables’s filter table has the following built-in chains.
#include <unistd.h> | |
#include <stdio.h> | |
#include <setjmp.h> | |
#include <signal.h> | |
jmp_buf j; | |
void try() | |
{ | |
printf("call try\n"); |
import math | |
from collections import Counter | |
def tf(word, doc): | |
word_counter = Counter(doc.split()) | |
return word_counter(word) / sum(word_counter.values()) | |
def idf(word, corpus): | |
return math.log(len(corpus) / (1 + sum(1 for doc in corpus if word in doc))) | |
on cuckoo() | |
set dateStr to time string of (current date) | |
set meow to POSIX path of (path to resource "meow.mp3") | |
display notification dateStr with title "Meow" | |
do shell script ("afplay " & meow) | |
end cuckoo | |
script main | |
cuckoo() | |
end script |
/var/log/mongodb/mongod.log { | |
hourly | |
missingok | |
rotate 5 | |
compress | |
delaycompress | |
notifempty | |
create 0640 mongodb mongodb | |
sharedscripts | |
postrotate |