📝 企業を調べる時のメモ書きです。
- https://www.wantedly.com/
- https://jobs.forkwell.com/
- https://jp.indeed.com/
- 日本だとあんまり使ってる企業がいないけど、グローバルよりで日本でもやってる面白いものがたまに見つかる
- などの各種求人サイトを見る
- Note: 📝
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>IncompatiblePaths</key> | |
<array> | |
<dict> | |
<key>Application Name</key> | |
<string>Sxs Memory Card Driver</string> | |
<key>Blurb</key> |
const emailVerifier = require("verifier-node"); | |
module.exports = function (user, context, cb) { | |
var response = {}; | |
emailVerifier.verify(user.email, context.webtask.secrets.VERIFIER_APIKEY) | |
.then(response => { | |
if (!response.valid()) return cb(new Error('Disposable email!')); | |
response.user = user; |
version: '2' | |
services: | |
openldap: | |
image: osixia/openldap:1.2.3 | |
container_name: openldap | |
environment: | |
LDAP_LOG_LEVEL: "256" | |
LDAP_ORGANISATION: "Example Inc." | |
LDAP_DOMAIN: "example.org" | |
LDAP_BASE_DN: "" |
from docutils import languages, nodes | |
from docutils.parsers.rst.states import Struct | |
from sphinx.writers.latex import LaTeXTranslator | |
def quote_role(typ, rawtext, text, lineno, inliner, options={}, content=[]): | |
language = languages.get_language(inliner.document.settings.language_code, | |
inliner.document.reporter) | |
memo = Struct(document=inliner.document, | |
reporter=inliner.document.reporter, |
📝 企業を調べる時のメモ書きです。
// 1. Open the browser developper console on the network tab | |
// 2. Start the video | |
// 3. In the dev tab, locate the load of the "master.json" file, copy its full URL | |
// 4. Run: node vimeo-downloader.js "<URL>" | |
// 5. Combine the m4v and m4a files with mkvmerge | |
const fs = require('fs'); | |
const url = require('url'); | |
const https = require('https'); |
#!/usr/bin/env bash | |
set -e | |
VOLUME_PATH=/Volumes/installer | |
while getopts ":d:h" opts; do | |
case $opts in | |
d) | |
VOLUME_PATH=$OPTARG | |
;; |
[Unit] | |
Description=Some description | |
After=network.target | |
[Service] | |
Type=simple | |
User=user | |
WorkingDirectory=/home/user/somedir | |
Environment=PYTHONPATH=/home/user/somedir | |
ExecStart=/home/user/venv/bin/python script.py |
import asyncio | |
import aiohttp | |
import async_timeout | |
from aiohttp import ClientError | |
async def _fetch(session, url, coro): | |
"""HTTPリソースからデータを取得しコルーチンを呼び出す |