fa
Feedback
for-coder

for-coder

رفتن به کانال در Telegram

Chat for yapping the latest topics and some project show case @FORCODERR 👥 @firaflash 👨‍💻 curious dev

نمایش بیشتر
Buy Ad
472
مشترکین
اطلاعاتی وجود ندارد24 ساعت
-27 روز
+930 روز
آرشیو پست ها
What's the output of the above code?
Anonymous voting

print((1, 5) > (1, 3, 9))

Repost from Bytephilosopher
ጷግሜ 1 2018 እሁድ መልካም ሰንበት💛 @byte_philosopher
ጷግሜ 1 2018 እሁድ መልካም ሰንበት💛 @byte_philosopher

"You want to hear a joke about a recursive function?" 
"You want to hear a joke about a recursive function?"

Good morning peoples 😎 Have a nice last weekend 🍾 🥂

I was working on this project for school with my team members, and apparently we had been using the old version, "expo": "~54
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 version

Repost from YearProgressET
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ፺፰% (98%)

And just like that after a week we off to 2019 😭

▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ፺፰% (98%)

Repost from Dagmawi Babi
Robot fights back when pushed 😭

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? 🤔

Good morning jemaw ☀️ Cold morning init 🥶
Good morning jemaw ☀️ Cold morning init 🥶

I think I got the first bottle of @heniken lol Shout out to @reboot
I think I got the first bottle of @heniken lol Shout out to @reboot

Have a nice week jemaww💪💪

😆 after a long time @rophnan checked out my video
😆 after a long time @rophnan checked out my video

we back @manutd 💪

What's the output of the above code?
Anonymous voting

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");
}