mike163 最近的时间轴更新
mike163

mike163

V2EX 第 20630 号会员,加入于 2012-05-11 15:41:05 +08:00
129.29.29.29 是个大坑货,千万别用
DNS  •  mike163  •  12 天前  •  最后回复来自 hackhp
64
一种快速编程的方法,推荐给大伙。
程序员  •  mike163  •  25 天前  •  最后回复来自 nekoharuya
36
发布一下 rss new reader 手机版本更新.
分享创造  •  mike163  •  84 天前  •  最后回复来自 mike163
2
发布一下 rss news reader 更新
分享创造  •  mike163  •  105 天前  •  最后回复来自 mike163
5
chatgpt 和老师,谁是对的?
问与答  •  mike163  •  115 天前  •  最后回复来自 68467897
33
gpt-4o-mini 和阿里 qwen2-7b-instruct 对比
OpenAI  •  mike163  •  115 天前  •  最后回复来自 mike163
19
写了一个 rss 新闻聚合站点,欢迎大家来玩
分享创造  •  mike163  •  75 天前  •  最后回复来自 mike163
19
出一个 vmiss US.LA.BGP.Core 优化线路的 vps
VPS  •  mike163  •  359 天前  •  最后回复来自 mike163
1
一个超级简单的 dns 分类查询,类似 mosdns,但简单的多。。。
DNS  •  mike163  •  2022-08-01 19:46:48 PM  •  最后回复来自 mike163
12
mike163 最近回复了
用 mlx 是不是比 ollama 性能更好?
19 天前
回复了 mike163 创建的主题 DNS 129.29.29.29 是个大坑货,千万别用
@winterbells 是的,119.29.29.29 ,写错了
28 天前
回复了 mike163 创建的主题 程序员 一种快速编程的方法,推荐给大伙。
一个具体的例子,用 ruby 写一个一个 自动生成 图片压缩的服务, 然后 转换成 go

require 'sinatra'
require 'open-uri'
require 'rmagick'
require 'time'


# Initialize cache
$image_cache = {}

# Cleanup task to remove stale cache entries
Thread.new do
loop do
sleep 8 * 60 * 60 # Sleep for 24 hours
current_time = Time.now
$image_cache.delete_if do |url, entry|
current_time - entry[:last_accessed] > 24 * 60 * 60
end
end
end

get '/' do
# Get the URL parameter
url = params['url']

# Ensure the URL is provided
halt 400, 'URL parameter is missing' if url.nil?

# Check cache for the image
if $image_cache.key?(url)
entry = $image_cache[url]
entry[:last_accessed] = Time.now
content_type 'image/jpeg'
return entry[:image_data]
end

# Fetch the image from the URL
begin
image_data = URI.open(url).read
rescue => e
halt 500, "Failed to fetch image: #{e.message}"
end

# Read the image data using RMagick
begin
image = Magick::Image.from_blob(image_data).first
rescue => e
halt 500, "Failed to read image: #{e.message}"
end

# Resize the image while maintaining the aspect ratio
begin
resized_image = image.change_geometry("360") do |cols, rows, img|
img.resize(cols, rows)
end
rescue => e
halt 500, "Failed to resize image: #{e.message}"
end

# Convert the resized image to a blob
resized_image_data = resized_image.to_blob

begin
# Convert the resized image to a blob
resized_image_data = resized_image.to_blob
rescue Magick::ImageMagickError => e
puts "Error: #{e.message}"
puts "Backtrace: #{e.backtrace.join("\n")}"
end

# Store the resized image in the cache
$image_cache[url] = {
image_data: resized_image_data,
last_accessed: Time.now
}

# Send the resized image data to the user
content_type 'image/jpeg'
resized_image_data
end%

转换后的代码,

package main

import (
"bytes"
"fmt"
"image"
"image/jpeg"
"log"
"net/http"
"sync"
"time"

"github.com/nfnt/resize"
)

const (
port = 8300
cacheCleanupInterval = 8 * time.Hour
cacheExpirationTime = 24 * time.Hour
)

type CacheEntry struct {
ImageData []byte
LastAccessed time.Time
}

var (
imageCache = make(map[string]*CacheEntry)
cacheMutex sync.RWMutex
)

func main() {
go cleanupCache()

http.HandleFunc("/", handleRequest)
log.Printf("Server starting on port %d", port)
log.Fatal( http.ListenAndServe(fmt.Sprintf(":%d", port), nil))
}

func cleanupCache() {
for {
time.Sleep(cacheCleanupInterval)
currentTime := time.Now()
cacheMutex.Lock()
for url, entry := range imageCache {
if currentTime.Sub(entry.LastAccessed) > cacheExpirationTime {
delete(imageCache, url)
}
}
cacheMutex.Unlock()
}
}

func handleRequest(w http.ResponseWriter, r *http.Request) {
url := r.URL.Query().Get("url")
if url == "" {
http.Error(w, "URL parameter is missing", http.StatusBadRequest)
return
}

cacheMutex.RLock()
if entry, ok := imageCache[url]; ok {
entry.LastAccessed = time.Now()
cacheMutex.RUnlock()
w.Header().Set("Content-Type", "image/jpeg")
w.Write(entry.ImageData)
return
}
cacheMutex.RUnlock()


log.Printf("Fetching image: %v\n", url)

resp, err := http.Get(url)
if err != nil {
http.Error(w, fmt.Sprintf("Failed to fetch image: %v", err), http.StatusInternalServerError)
return
}
defer resp.Body.Close()

img, _, err := image.Decode(resp.Body)
if err != nil {
http.Error(w, fmt.Sprintf("Failed to decode image: %v", err), http.StatusInternalServerError)
return
}

resizedImg := resize.Resize(360, 0, img, resize.Lanczos3)

var buf bytes.Buffer
if err := jpeg.Encode(&buf, resizedImg, nil); err != nil {
http.Error(w, fmt.Sprintf("Failed to encode resized image: %v", err), http.StatusInternalServerError)
return
}

cacheMutex.Lock()
imageCache[url] = &CacheEntry{
ImageData: buf.Bytes(),
LastAccessed: time.Now(),
}
cacheMutex.Unlock()

w.Header().Set("Content-Type", "image/jpeg")
w.Write(buf.Bytes())
}%
29 天前
回复了 mike163 创建的主题 程序员 一种快速编程的方法,推荐给大伙。
@alexhx 现代大语言模型可以自动 用目标语言合适的模块 替换。这是真正厉害的地方。
30 天前
回复了 mike163 创建的主题 程序员 一种快速编程的方法,推荐给大伙。
@nekoharuya 以前模型能力不行。新代码质量很差。现在大模型编程能力上来了,写的代码质量比较好。
30 天前
回复了 mike163 创建的主题 程序员 一种快速编程的方法,推荐给大伙。
@aizya 没看懂,我是直接把代码扔给大模型,让塔用目标语言写一份新的
30 天前
回复了 mike163 创建的主题 程序员 一种快速编程的方法,推荐给大伙。
@njylll 1 部署,性能,并发支持等。2 实现同样功能,ruby 代码量可以是 go 的一半还少。
30 天前
回复了 mike163 创建的主题 程序员 一种快速编程的方法,推荐给大伙。
@Mark24 我知道,就是不想用 asyncore ruby ,让大语言模型帮我转成 go 只花了 1 分钟。如果用 async ,至少折腾半天。 每个语言都有自己的优势。
30 天前
回复了 mike163 创建的主题 程序员 一种快速编程的方法,推荐给大伙。
@Hopetree 就是这个意思,用了就知道爽了。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2728 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 23ms · UTC 11:38 · PVG 19:38 · LAX 03:38 · JFK 06:38
Developed with CodeLauncher
♥ Do have faith in what you're doing.