V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  rabbbit  ›  全部回复第 16 页 / 共 110 页
回复总数  2181
1 ... 12  13  14  15  16  17  18  19  20  21 ... 110  
312 天前
回复了 aChrisByte0r 创建的主题 职场话题 前端现在情况如何 能够入行吗
3 万...只能说祝好运了,高薪不太可能,几千块解决温饱也许有戏吧.
@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 以下
330 天前
回复了 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
搭车问个问题,楼主知道 xlsx 的 width 转 px 用的是哪个公式吗?找了好几个都对不上。
最近正好在写 xlsx 文件显示,搞得脑袋都大了。
1 ... 12  13  14  15  16  17  18  19  20  21 ... 110  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3029 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 34ms · UTC 12:56 · PVG 20:56 · LAX 05:56 · JFK 08:56
Developed with CodeLauncher
♥ Do have faith in what you're doing.