TGTGInsighttelegram intelligenceLIVE / telegram public index
← GitHub Trends

TGINSIGHT SIMILAR POSTS

Find similar content

Source channel @githubtrending · Post #15522 · Feb 25

#javascript#ai#algorithm#artificial_intelligence#chatgpt#claude#cursor#deep_learning#deepseek#gemini#generative_ai#gpt#llm#mcp#openai#python#rag#vibe_coding#vibecoding#vue#vuepress 鱼皮的 AI知识库 offers a free Vibe Coding tutorial for beginners, teaching AI-powered programming with natural language prompts to build and monetize apps fast—no coding skills needed. It covers tools, projects, tips, and paths like making your first work in 10 minutes, plus AI guides on DeepSeek, Cursor, and more. You benefit by quickly creating profitable products, breaking tech barriers, and enjoying AI perks to improve life and work. Start at ai.codefather.cn/vibe. https://github.com/liyupi/ai-guide

Results

2 similar posts found

Search: #endif

当前筛选 #endif清除筛选
мобилки at home

@apphomie · Post #100 · 03/13/2018, 09:00 AM

Пока сообщество (точнее, хэйтеры) занято обсуждением метода toggle для Bool, в Swift 4.1 появились две директивы: canImport и targetEnvironment, предложенные Эрикой Садун. Попробовать их можно уже сейчас в Xcode 9.3 beta 4. Первая будет полезна для кроссплатформенных решений и позволяет определить, можно ли импортировать тот или иной модуль. #if canImport(UIKit) // UIKit-based code #elseif canImport(Cocoa) // OSX code #elseif // Workaround/text, whatever #endif Вторая директива с единственно возможным аргументом simulator позволяет выполнить условную компиляцию для симулятора или реального девайса. Теперь не нужно перечислять все любимые нам архитектуры и ОС (arch(i386) || arch(x86_64)) && (!os(macOS)), а достаточно будет этого: // Test for a simulator destination #if targetEnvironment(simulator) print("Simulator") #else print("Device") #endif http://ericasadun.com/2018/03/05/new-to-swift-in-xcode-9-3-beta-4-se-0075-and-se-0190-allow-better-configuration-testing/