Apple MacBook Pro M1, 32 GB, Ventura 13.2
Documentation based on comments in this Github Elasticsearch issue.
Install Homebrew
import os | |
import base64 | |
import streamlit as st | |
from openai import OpenAI | |
# 设置环境变量和OpenAI客户端 | |
token = os.environ["GITHUB_TOKEN"] | |
endpoint = "https://models.inference.ai.azure.com" | |
model_name = st.sidebar.selectbox("选择模型:", ["gpt-4o", "gpt-4o-mini"]) |
#!pip install torch | |
#!pip install transformers | |
#!pip install scikit-learn | |
#!pip install numpy | |
import json | |
from sklearn.model_selection import train_test_split | |
import random | |
from datetime import datetime | |
from transformers import BertTokenizer, BertModel | |
import torch |
<?php | |
namespace App\Support; | |
class Currency | |
{ | |
/** | |
* Required base currency | |
* | |
* @var null |
Apple MacBook Pro M1, 32 GB, Ventura 13.2
Documentation based on comments in this Github Elasticsearch issue.
#!/usr/bin/env bash | |
echo=echo | |
for cmd in echo /bin/echo; do | |
$cmd >/dev/null 2>&1 || continue | |
if ! $cmd -e "" | grep -qE '^-e'; then | |
echo=$cmd | |
break | |
fi | |
done |
This issue is caused while using the Wireguard in Ubuntu as the installation doesn't come with resolvconf or openresolv
Problem
sid@sid:~$ sudo wg-quick up /etc/wireguard/abc.conf
[sudo] password for sid:
[#] ip link add abc type wireguard
[#] wg setconf abc /dev/fd/63
VMWare Fusion 13 is now released. Read Vagrant and VMWare Fusion 13 Player on Apple M1 Pro for the latest.
This document summarizes notes taken while to make the VMWare Tech preview work on Apple M1 Pro, it originated
Tip
Use context.WithTimeout
when you need to enforce timeouts on internal operations like database queries or HTTP calls, especially when you want to propagate cancellation signals through the call stack to prevent resource leaks or manage goroutines. It's ideal for fine-grained control within a handler. In contrast, use http.TimeoutHandler
when you want a simple way to enforce a timeout on the entire HTTP handler response, particularly when you don’t control the handler logic or don’t need to cancel ongoing work—it only cuts off the response after the timeout but doesn’t stop the underlying processing.
Warning
Be careful when using http.TimeoutHander
. If automatically applied to all handlers (as part of a middleware pipeline) then it will not work when it comes to a streaming endpoint (see the relevant Cloudflare article linked in the NOTE below).
**Client Ti
server {
listen 443 ssl http2;
server_name $host;
rewrite ^/$ https://$host/_plugin/kibana redirect;
ssl_certificate /path/to/fullchain.pem;