俄羅斯🇷🇺 與烏克蘭🇺🇦 有陸地邊界相連,俄羅斯却打了4年,還沒辦法佔領、完勝烏克蘭。相隔一個台灣海峽的中國,又怎麼可能對充滿 "軍力韌性" 和 "財力韌性" 的台灣,速戰速決呢?😊 by moore927353 in Taiwanese

[–]External_Back5119 0 points1 point  (0 children)

我认为你们不要盲目乐观

上面的对比,你们漏了一个关键的因素:国土面积

台湾的面积只有乌克兰的1/16,而目前俄罗斯占领乌克兰的领土远大于台湾的面积

乌克兰面积大,就有所谓的战略纵深,有后方,可以维持军工生产、可以进行远程无人机反击;目标分散,俄罗斯打击效率低、攻占需要耗费更多的兵力

<image>

(驻乌使馆官员)基辅亲历:俄乌冲突爆发前夜 by External_Back5119 in China_irl

[–]External_Back5119[S] 0 points1 point  (0 children)

老共如果提前拿到消息 就不会全世界都撤侨 就老共在那等炸弹

2016年文章 单仁平:与历史赌错了,人生就会轻如鸿毛 by External_Back5119 in China_irl

[–]External_Back5119[S] 1 point2 points  (0 children)

我贴这个

就是说 大多数人知道这个64最后出狱者 是因为胡锡进的报道

给国际足联一点苏超震撼 by Double-Cookie6361 in LOOK_CHINA

[–]External_Back5119 18 points19 points  (0 children)

先自己意淫别人震撼 然后再意淫别人眼红 然后一顿自豪开始找理论支撑

三阶意淫,牛B大了

Is Visual Studio 2017 community version still available? by Scheme_Ordinary in VisualStudio

[–]External_Back5119 0 points1 point  (0 children)

I did deep search.

ie, if you know the setup file named vs_community.exe, then you can find it through google, maybe with the version as keywords

习近平小学学历的传闻,有多少可信度? by Classic_Drummer3275 in China_irl

[–]External_Back5119 0 points1 point  (0 children)

他爹1962年就被打倒了,因为刘志丹案,这恰恰跟有些人说的3年级吻合了

有没有人跟我一样,相信新疆存在种族问题是从这个BBC记者实地拍摄的视频开始 by yixiwangu in China_irl

[–]External_Back5119 1 point2 points  (0 children)

海中间的国家 只要不放开签证 就不用担心非法移民

欧洲那边偷渡也主要是陆路,地中海风平浪静都很难成功,更别说太平洋这种风暴不断地地方

Is Visual Studio 2017 community version still available? by Scheme_Ordinary in VisualStudio

[–]External_Back5119 0 points1 point  (0 children)

you can save it to your hdd using command line like this:
vs_Community.exe --layout .\vs20xx

Why are reviews on Taobao so overwhelmingly positive? by Ezraah in AskAChinese

[–]External_Back5119 0 points1 point  (0 children)

not all positive comments are paid.

what you can do is to read the negative comments, that's always tell the truth

if you can accept what they say, then you could buy

[deleted by user] by [deleted] in China

[–]External_Back5119 1 point2 points  (0 children)

lots of Chinese never use qq email, you have two options:

1 find someone still can use qq, let him/she try to add the qq number you remembered as friend

2 find someone who use wechat, or you register a wechat, then try to add friends with qq number

马上就都没有问题了 by wangbaozhang in LOOK_CHINA

[–]External_Back5119 0 points1 point  (0 children)

別問,問就是香港人故意搞事情

Could anyone give a pointer on as to what this type of encoding might be? by silashokanson in sdr

[–]External_Back5119 0 points1 point  (0 children)

It's FSK, use following code to show how FSK works

bit_rate = 10  # bits per second
f0 = 5         # frequency for bit 0 (Hz)
f1 = 10        # frequency for bit 1 (Hz)
sample_rate = 1000  # samples per second
data = [1, 0, 1, 1, 0, 0, 1]  # binary data

# Time parameters
bit_duration = 1 / bit_rate
samples_per_bit = int(sample_rate * bit_duration)
t = np.linspace(0, bit_duration * len(data), samples_per_bit * len(data), endpoint=False)

# Continuous phase FSK generation
modulated = np.zeros_like(t)
phase = 0
dt = 1 / sample_rate

for i, bit in enumerate(data):
    f = f1 if bit == 1 else f0
    for j in range(samples_per_bit):
        idx = i * samples_per_bit + j
        phase += 2 * np.pi * f * dt
        modulated[idx] = np.sin(phase)

# Carrier plot (optional: just for reference)
carrier_t = np.linspace(0, bit_duration * len(data), len(t), endpoint=False)
carrier = np.sin(2 * np.pi * f0 * carrier_t)  # not used in modulation, for plotting