Using /usr/share/dict/words
on macOS Sonoma 14.2.1
180 results
$ grep -i '.*a.*e.*i.*o.*u.*' /usr/share/dict/words
#!/usr/bin/env python3 | |
from __future__ import annotations | |
import argparse | |
import random | |
from functools import reduce | |
from typing import Any |
If Torch 2.1.0 is used as a dependency with Bazel and rules_python, _preload_cuda_deps
fails with OSError: libcufft.so.11: cannot open shared object file: No such file or directory
.
Torch 2.1 works fine if you install it and its CUDA dependencies into a single site-packages
(e.g., in a virtualenv). It doesn't work with Bazel, as it installs each dependency into its own directory tree, which is appended to PYTHONPATH
.
$ bazel test //...
#!/usr/bin/env python3 | |
import random | |
def lcg(a, c, m): | |
def _lcg(a, c, m): | |
x = random.randint(0, m-1) | |
for _ in range(m): | |
yield x |
# Generated automatically from Makefile.pre by makesetup. | |
# Top-level Makefile for Python | |
# | |
# As distributed, this file is called Makefile.pre.in; it is processed | |
# into the real Makefile by running the script ./configure, which | |
# replaces things like @spam@ with values appropriate for your system. | |
# This means that if you edit Makefile, your changes get lost the next | |
# time you run the configure script. Ideally, you can do: | |
# | |
# ./configure |
#!/usr/bin/env python | |
from __future__ import unicode_literals, absolute_import, print_function | |
import argparse | |
import codecs | |
from collections import OrderedDict | |
import json | |
import os | |
import re |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="description" content="sqltap profile"> | |
<meta name="author" content="inconshreveable"> | |
<title>SQLTap Profiling Report</title> |
@REM adapted from http://stackoverflow.com/a/20092578 | |
if ["%VIRTUAL_ENV%"]==[""] echo Must run under a Virtualenv && goto :error | |
set SRCDIR=c:\Python27\Lib\site-packages | |
pushd "%VIRTUAL_ENV%\Lib\site-packages" | |
xcopy /ydfsi %SRCDIR%\MySQLdb MySQLdb | |
xcopy /ydfsi %SRCDIR%\_mysql* . | |
xcopy /ydfsi %SRCDIR%\MySQL_python-1.2.3-py2.7.egg-info MySQL_python-1.2.3-py2.7.egg-info | |
popd | |
goto :eof |
/* This is cloudflare.min.js, beautified, with minor logging changes in the addEventListener callback */ | |
/*! CloudFlareJS-0.1.5 Wed Oct 09 2013 14:04:33 | |
*/ | |
CF_msg_buffer = []; | |
! function (a, b) { | |
function c(a) { | |
if (!(this instanceof c)) return new c(a); | |
if (!a || !m.isElement(a)) throw new Error("A DOM element reference is required"); | |
return this.element = a, this.tokens = a.classList, this |