https://github.com/lima-vm/lima を試してみたけど、READMEとセットアップが違ったのでメモ
- macOS Sequoia 15.0 24A335
- brewインストール済み
- brew install lima済み
- version
- lima: limactl version 0.23.2
- docker: Docker version 27.3.1, build ce1223035a
https://github.com/lima-vm/lima を試してみたけど、READMEとセットアップが違ったのでメモ
#TabsToolbar { visibility: collapse !important; } | |
#sidebar-header { display: none; } |
body { | |
background: rgba(255, 255, 255, 1.0); | |
} | |
* { | |
font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
color: rgba(0, 0, 0, 1.0); | |
font-size: 16px; | |
line-height: 115%; |
import os | |
from chardet.universaldetector import UniversalDetector | |
def check_encode(file_path): | |
detector = UniversalDetector() | |
with open(file_path, mode='rb') as f: | |
for binary in f: | |
detector.feed(binary) | |
if detector.done: |
この記事のあの画像を見てビビッと来てしまったので, 周りにいる人とErgodoxの購入検討をはじめました(随時更新)
➜ FalbaTech
選んでいくスタイル。
dev: | |
restart: always | |
build: . | |
ports: | |
- "5000:5000" | |
- "8080:8080" | |
- "8888:8888" | |
- "2222:22" | |
links: | |
- mysql |
# | |
# Base | |
# | |
FROM ubuntu:14.04 | |
MAINTAINER yymm [email protected] | |
RUN apt-get update -y | |
RUN chmod go+w,u+s /tmp |
# -*- coding: utf-8 -*- | |
import sys | |
import math | |
def getcolor(colorname): # {{{ | |
colors = { | |
'clear': '\033[0m', | |
'black': '\033[30m', | |
'red': '\033[31m', | |
'green': '\033[32m', |
import markdown | |
from markdown import Extension | |
from markdown.postprocessors import Postprocessor | |
import re | |
import requests | |
GIST_RE = r"^http(?:s)?://gist\.github\.com/.+$" | |
class EmbedExtension(Extension): | |
def extendMarkdown(self, md, md_globals): |