转发微博
- 转发 @Simon_阿文 : 给大家推荐一个特别特别特别好用的免费开源雕塑资源库:Scan the World
这里收录了超多世界著名雕塑,大卫、米洛的维纳斯、哀悼基督……全部都是用3D扫描技术建的模型。
而最可怕的是,可以免费下载!
▶ 下载地址:www.myminifactory.com/scantheworld
模型格式是兼容性极强的 stl 格式,这不仅意味着你可以在 3D工具里搭建各种场景(图5&6),还可以直接拖拽进PPT为所欲为(图7&8),你甚至可以用来3D打印!
▶ 作品授权:由于这个资源库有很多提供者,每个模型的开源授权都不一样,有的需要署名,有的禁止商用等等……大家下载的时候记得看清楚条款哈(图9)
QNotified,一个旨在使 QQ 变得更好用的开源 Xposed 模块。
支持防撤回、被删好友通知、聊天字数统计、批量撤回消息、屏蔽更新提醒等功能。
GitHub:github.com/ferredoxin/QNotified
互动抽奖 #坎公骑冠剑
坎公快讯!公测200日即将到来之际,11月11日维护结束后,《坎公骑冠剑》将开启【200天纪念签到 免费礼包】!14日共计可获得【钻石*6000+超凡突破锤*1+体力*100+经验结晶*140000+金币*100000】,关注并转发本条动态,我们将于11月14日抽取5名守护者送出坎公骑冠剑周边礼包一份,感谢各位守护者对我们的支持~
==============
(一)活动时间
11月11日维护完成后~11月25日停机维护前领取
(二)活动条件
在探险中通关“世界1”后,可前往卡马逊商店开启【200天纪念签到 免费礼包】;该礼包仅限开启1次。
(三)活动奖励一览
开启【200天纪念签到 免费礼包】后,活动时间内14天共计可领取【钻石*6000+超凡突破锤*1+体力*100+经验结晶*140000+金币*100000】奖励!
封装了一个vue 的 navigation hook:
import type { AxiosResponse } from 'axios'
import { reactive } from 'vue'
import { ElMessage } from 'element-plus'
import type { Pagination, PaginationModel } from '@/model/rootObject'
import type { PaginationRequestBase } from '@/apis/requestType'
export const usePagination = <Q extends PaginationRequestBase, T>(
AxiosRequest: (query: Q) => Promise<AxiosResponse<PaginationModel<T>, any>>,
queryOptions: Parameters<typeof AxiosRequest>[0]
) => {
const state = reactive({
fetchingError: false,
fetching: true,
list: [] as T[],
pagination: { current: queryOptions.current || 1, pages: NaN, total: NaN, size: queryOptions.size || 10 } as Pagination
})
const fetchList = async () => {
// @ts-ignore
delete queryOptions.current
// @ts-ignore
delete queryOptions.size
AxiosRequest({
...queryOptions,
current: state.pagination.current,
size: state.pagination.size
})
.then((res) => {
state.list = res.data.data.records as typeof state.list
state.pagination.current = res.data.data.current
state.pagination.pages = res.data.data.pages
state.pagination.total = res.data.data.total
state.pagination.size = res.data.data.size
state.fetchingError = false
})
.catch((err) => {
state.fetchingError = true
ElMessage.error(err.message)
})
.finally(() => {
state.fetching = false
})
}
const handlePageSizeChange = (val: number) => {
state.pagination.size = val
fetchList()
}
const handlePageCurrentChange = (val: number) => {
state.pagination.current = val
fetchList()
}
const handlePagePrevClick = () => {
state.pagination.current--
state.pagination.current = Math.max(state.pagination.current, 0)
fetchList()
}
const handlePageNextClick = () => {
state.pagination.current++
state.pagination.current = Math.min(state.pagination.current, state.pagination.pages)
fetchList()
}
return { state, methods: { fetchList, handlePageSizeChange, handlePageCurrentChange, handlePagePrevClick, handlePageNextClick } }
}
//转发自: @谭乔: 【谭sir与大爷】过 命 之 交
明日之后第四季:生存之战三部曲之《末日无间》
“你是为了我学会三轮车漂移的吗?”
“只能,漂一点点……“
https://api.2heng.xin/bilibili/og.php?av=719117504&high_quality=1&danmaku=0
https://t.bilibili.com/590775234063080405
今天才发现以前写的自动备份脚本忘记写密码了,于是每次pg dump实际都没有执行成功,这一年多一直就是备份了个寂寞,也幸亏今年没出现什么意外
然而真的今天跑了一次pg dumpall,发现性能开销极大(8GB的数据库,把其他所有服务停了也得20分钟才能dump完),打算以后备份策略改为直接停机压缩打包所有PostgreSQL文件
分享动态
//转发自: @eee花凋零: 【原神】新功能?待机动画竟能互动了
视频整了不少时间了 好兄弟点个赞吧
这是对UP主最大的动力,,Ծ‸Ծ,,
投币 收藏 我直接好耶 ヾ(✿゚▽゚)ノ
(EDG好样的)
https://api.2heng.xin/bilibili/og.php?av=379046340&high_quality=1&danmaku=0
https://t.bilibili.com/590691203025001479
Chinese 🇨🇳 / Dictatorial Admin / Mastodon Code Contributor / 摸鱼技术布道师
Steam: https://steamcommunity.com/id/MashiroBest
Epic: https://store.epicgames.com/en-US/u/d211c824cbd94aaeba898db6bb823ff7
原批交流群:966322309