V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  rabbbit  ›  全部回复第 37 页 / 共 131 页
回复总数  2603
1 ... 33  34  35  36  37  38  39  40  41  42 ... 131  
2023-07-22 16:52:43 +08:00
回复了 nyxsonsleep 创建的主题 问与答 交接对方摆烂能解决吗?
他为啥宁愿拖一个月也要摆烂,而领导在隔岸观火不管?
2023-07-22 14:21:12 +08:00
回复了 crazyTanuki 创建的主题 程序员 前端转后端应该怎么转?
一般都是 java 或者 go
java 需要学的 Spring Redis MySQL MyBatis RabbitMQ
2023-07-05 20:32:48 +08:00
回复了 aChrisByte0r 创建的主题 职场话题 前端现在情况如何 能够入行吗
3 万...只能说祝好运了,高薪不太可能,几千块解决温饱也许有戏吧.
2023-07-04 19:37:25 +08:00
回复了 Exception615 创建的主题 杭州 和媳妇准备办个少儿美术画室,大佬们有无建议
@Exception615
可以先慢慢来,别花大钱搞装修?
我这边的画室好多都是在居民楼里。一般都只要整洁就够了,不会搞得很豪华。
2023-07-04 19:20:42 +08:00
回复了 Exception615 创建的主题 杭州 和媳妇准备办个少儿美术画室,大佬们有无建议
艺考才挣钱,不过现在都让大机构垄断了。
还想问下,这个“320 排 /640 层” 指的是 320 排 CT 对应的是 640 层吗? 还是 320 排或 640 层?
@wdlth
对于需要定期复查的人选 320 是不是吃的辐射更少一些?
@xiaofan305 扫胸要用高分辨 CT 才能看到一些细节,但是小城市一般不给你开。而且就算开了也要用电脑看 DICM 原片才行,看胶片啥都看不出来。
@xiaofan305 但还是没想到价格差距能如此之大,我猜有价格分摊的因素在里面,上海某市医院的 CT 平均 3 分钟一个,都快转冒烟了。黑龙江某市医院的 CT 根本没人,都不用排队。
确定 200 和 700 的,都不带腹腔
@murmur 重新翻了下诊断,上海的 CT 平扫+重建 320 排 CT 螺旋扫描
@murmur 刚才用 Radiant 看了下,200 的 350 张片子,700 的 360 张片子。带不带腹腔就看不懂了。
@murmur 上海的也带 3d 重建,是否是螺旋不清楚,但是速度挺快的。
用 img 标签,浏览器会自动缓存
可以从头像大小入手,以 Github 为例 48x48 的头像可以处理到 4kb 以下
2023-06-16 23:19:42 +08:00
回复了 idealhs 创建的主题 程序员 🐒: if (a == 2) return true else return false
🐶
interface Is2Interface {
is2(a: number): boolean;
}

abstract class AbstractIs2 implements Is2Interface {
is2(a: number): boolean {
return a === 2;
}
}

class Is2 extends AbstractIs2 {
is2(a: number): boolean {
if (a === 2) {
return true
} else {
return false
}
}
}

interface Is2FactoryInterface {
getIs2(): AbstractIs2;
}

abstract class AbstractIs2Factory implements Is2FactoryInterface {
getIs2(): AbstractIs2 {
return new Is2();
};
}

class Is2Factory extends AbstractIs2Factory {
private is2: AbstractIs2 = new Is2();
getIs2(): AbstractIs2 {
return this.is2;
};
}

class Main {
public static main(): void {
const is2Factory = new Is2Factory();
const is2 = is2Factory.getIs2();
const a = 2;
console.log(is2.is2(a));
}
}

Main.main();
@zurmokeeper
exceljs 的 column.width 这个转成 px 是咋计算的?
我抄的这里,不过感觉这个也有问题。https://github.com/gitbrent/xlsx-js-style/blob/48ad46f7d349fed24ba4313ff1d9e53db52875bc/src/xlsx.js#L10023
1 ... 33  34  35  36  37  38  39  40  41  42 ... 131  
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   2839 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 49ms · UTC 13:35 · PVG 21:35 · LAX 05:35 · JFK 08:35
♥ Do have faith in what you're doing.