for-coder
前往频道在 Telegram
Chat for yapping the latest topics and some project show case @FORCODERR 👥 @firaflash 👨💻 curious dev
显示更多472
订阅者
无数据24 小时
-27 天
+930 天
帖子存档
472
"You want to hear a joke about a recursive function?"
"You want to hear a joke about a recursive function?"
472
I was working on this project for school with my team members, and apparently we had been using the old version,
"expo": "~54.0.35", of Expo for development. We stuck with the old version because the updated one was unstable for iOS at the time, which caused us to struggle a bit. I just found out that Expo has fixed this issue and released version 57.0.9 for iOS, so we can now upgrade our package that runs Expo Go for the app. FYI, we were working on React Native in TypeScript.
Anyway, enough yapping. If you guys are in the same situation as us, update the dev Expo package of the new version472
Hot take 🔥
There should be a standard way to embed Audio and Video directly inside a PDF. Imagine reading something and being able to play an 🎧 audio explanation or 🎥 video right there on the page. And ik ik, PDFs technically support multimedia through things like Adobe Acrobat But I'm talking about universal support open the PDF normally in Chrome, Firefox, your phone's PDF viewer, whatever, and it just works.Why isn't this a normal thing yet? 🤔
472
let status = "admin";
switch (status) {
case "user":
let message = "Welcome, user!";
console.log(message);
break;
case "admin":
const message = "Welcome, admin!";
console.log(message);
break;
case "guest":
var message = "Welcome, guest!";
console.log(message);
break;
default:
console.log("No match");
}