For details see Quickstart: uploading, testing, pushing releases
Update C:\Users\username\pip\pip.ini on Windows 8/10, or ~/.config/pip/pip.conf on Linux
[global]
For details see Quickstart: uploading, testing, pushing releases
Update C:\Users\username\pip\pip.ini on Windows 8/10, or ~/.config/pip/pip.conf on Linux
[global]
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
# Set swiss-french keymap |
^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$
Rollup 0.48 introduces a few changes to the options
object, because the current options are confusingly different between the CLI and the options exported by your config file.
entry
is now input
sourceMap
and sourceMapFile
are now sourcemap
and sourcemapFile
(note casing)moduleName
is now name
useStrict
is now strict
The dest
and format
options are now grouped together as a single output: { file, format, ... }
object. output
can also be an array of { file, format, ... }
objects, in which case it behaves similarly to the current targets
. Other output options — exports
, paths
and so on — can be added to the output
object (though they will fall back to their top-level namesakes, if unspecified).
require "rubygems" | |
require "twitter" | |
# get these from apps.twitter.com | |
CONSUMER_KEY = "foo" | |
CONSUMER_SECRET = "bar" | |
OAUTH_TOKEN = "blee" | |
OAUTH_TOKEN_SECRET = "baz" | |
TWITTER_USER = "your_username" # needs to be the one associated with keys above |
Calculating magic hashes for https://www.whitehatsec.com/blog/magic-hashes/. These strings should probably be put into a blacklist preventing users from using them as passwords to mitigate PHP evaluating hashes starting with "0e" as floats.
import strformat | |
import karax / [karaxdsl, vdom] | |
# want to use this like so | |
# linkItem: | |
# a(href="/"): text "Main Page" | |
template linkItem(body: untyped): VNode = | |
buildHtml(li(class="hover:underline text-center")): | |
h4: | |
li: body |
#!/usr/bin/python | |
###################################################################### | |
# A proof of concept adding a svg path into a cadQuery Workspace | |
# object. | |
# | |
# This file is in the public domain. | |
# | |
# Dov Grobgeld <[email protected]> | |
# 2024-03-10 Sun |