China Share markets Background I am not good at investment. But hedge funds which sell China markets will be afraid of loss through the roof. Big short cover will happen… Exclusive: China to issue $284 billion of sovereign debt this year to help revive economy https://www.reuters.com/markets/asia/china-issue-284-bln-sovereign-debt-this-year-help-revive-economy-sources-say-2024-09-26/ Conclusion Hedge funds might think Chinese economy would ends. China gov betrayed their expectations in good meaning for Chinese people. Additional thought In this situation, big medias will publish bad stories about China’s economy. This is because big medias’ friends and advertisers are/were in short position for China markets.
2020/2/16. The Timer with Swift I was suffering about how to use timer with swift… import SwiftUI struct ContentView: View { @State var count = 0 func timerStart() { _ = Timer.scheduledTimer(withTimeInterval: 1, repeats: true , block:{ timer in self .count += 1 }) } var body: some View { VStack{ Button(action:{ self .timerStart()}) { Text("Timer Start") } Text(String(count)) } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } Above code is very easy, but reaching to it, I was very suffered… Xcode prints too much errors…