redis-server --version
redis-cli --version
apt-get install build-essential
#!/bin/bash | |
IPT="/sbin/iptables" | |
# Server IP | |
SERVER_IP="$(ip addr show eth0 | grep 'inet ' | cut -f2 | awk '{ print $2}')" | |
# Your DNS servers you use: cat /etc/resolv.conf | |
DNS_SERVER="8.8.4.4 8.8.8.8" | |
# Allow connections to this package servers |
I am trying to create a svg file from a truetype font with freetype-py
and svgpathtools
. I have a working python code which generates the svg file but unfortunately there are some corners and edges where instead should be smooth curves. Here in this example I try to render an special char which does not look good at all.
Question
What do I need to change in order to get curve symbols redered correctly?
Prerequisites
[global_config] | |
window_state = fullscreen | |
borderless = True | |
extra_styling = False | |
title_transmit_fg_color = "#729fcf" | |
title_transmit_bg_color = "#002b36" | |
title_receive_fg_color = "#eeeeec" | |
title_inactive_bg_color = "#002b36" | |
[keybindings] | |
[profiles] |
hashcat --benchmark --optimized-kernel-enable
hashcat (v6.1.1) starting in benchmark mode...
CUDA API (CUDA 11.0)
====================
* Device #1: GeForce GTX 1070 Ti, 7730/8118 MB, 19MCU
OpenCL API (OpenCL 1.2 CUDA 11.0.228) - Platform #1 [NVIDIA Corporation]
{ | |
"type": "fulltext-index", | |
"name": "fulltext_idx", | |
"sourceType": "couchbase", | |
"sourceName": "leakz", | |
"planParams": { | |
"maxPartitionsPerPIndex": 171, | |
"indexPartitions": 6 | |
}, | |
"params": { |
CREATE INDEX `md5_idx` ON `leakz`(`md5`); | |
CREATE INDEX `sha1_idx` ON `leakz`(`sha1`); | |
CREATE INDEX `sha224_idx` ON `leakz`(`sha224`); | |
CREATE INDEX `sha256_idx` ON `leakz`(`sha256`); | |
CREATE INDEX `sha384_idx` ON `leakz`(`sha384`); | |
CREATE INDEX `sha512_idx` ON `leakz`(`sha512`); | |
CREATE PRIMARY INDEX `primary_idx` ON `leakz`; |
<template> | |
<div> | |
<div class="bg-white rounded shadow overflow-hidden"> | |
<div class="flex items-center justify-between py-2 px-6"> | |
<div> | |
<span class="text-lg font-bold text-gray-800">{{ monthNames[month] }}</span> | |
<span class="ml-1 text-lg text-gray-600 font-normal">{{ year }}</span> | |
</div> | |
<div class="border rounded-lg px-1" style="padding-top: 2px;"> | |
<button type="button" class="leading-none rounded-lg transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 items-center" :class="{'cursor-not-allowed opacity-25': month == 0 }" |