for-coder
Kanalga Telegramβda oβtish
Chat for yapping the latest topics and some project show case @FORCODERR π₯ @firaflash π¨βπ» curious dev
Ko'proq ko'rsatish472
Obunachilar
Ma'lumot yo'q24 soatlar
-27 kun
+930 kun
Postlar arxiv
472
Repost from Bytephilosopher
α·αα 1 2018
α₯αα΅
ααα«α α°αα α΅π
@byte_philosopher
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");
}