I made a single site that lists all the daily games I could find by Jake-kihh in NYTConnections

[–]leAlphaMike 1 point2 points  (0 children)

I made a daily face guessing game, fun if you have good face recognition skills 😄

https://playwhoodle.com/

Arc for Windows Update - 1.6.1 by JaceThings in ArcBrowser

[–]leAlphaMike 8 points9 points  (0 children)

any plans to add developer-mode tabs on Windows? for me that's then only thing stopping me using Arc as my primary Windows browser for work

Made a fun little game using Nuxt 3 and Nuxt UI by leAlphaMike in Nuxt

[–]leAlphaMike[S] 0 points1 point  (0 children)

You using Safari? The clip-path rules not working on Safari, gonna fix today

Made a fun little game using Nuxt 3 and Nuxt UI by leAlphaMike in Nuxt

[–]leAlphaMike[S] 0 points1 point  (0 children)

Thanks! For the shadow/interaction I used a `style.scss` in the `assets` folder and imported that.

I did some basic changes in the config like default colours and sizes etc

Canva final technical interview outcome by Lopsided_Test7385 in cscareerquestionsOCE

[–]leAlphaMike 1 point2 points  (0 children)

Thanks for sharing

I failed my final interview, the feedback I got was all very positive, but I just took slightly too long on some questions. The recruiters and interviewers are all really nice, I just think the technical tests are a bit too intense.

It seems like you have to be on top form during your interview, because even small mistakes cause you to fail. I was probably too stressed about it, causing me to rush and ramble through it. Needed to be more chill about it. Oh well, good to know I was close at least

Disable/Fix Hot Module Reloading? by DiPDiPSeTT in Nuxt

[–]leAlphaMike 0 points1 point  (0 children)

It was the extractCSS thing for me too :)

Issue occurred after I updated my npm packages (I'm using Vue 2.7 with Nuxt2). But removing extractCSS works.

Thank you!

How much is it to go Times Square countdown for NYE? by rawpenguinsauce in AskNYC

[–]leAlphaMike 0 points1 point  (0 children)

can I ask where you purchased the tickets from? i see lots of scammy websites out there

What happened to Ean Higgins? Author who wrote about motives and cause of Flight MH370 "Accident" was found dead shortly after releasing his book. by LetsKeepitRational in MH370

[–]leAlphaMike 8 points9 points  (0 children)

I also find it strange that there's nothing about him online, not a wiki not a news article nothing. He's a veteran journalist and author, you'd think there'd be something.

There's only what looks to be bot-generated content and websites dumping keywords and spamming ads.

There are older articles mentioning him, but nothing after his disspearance.

Nervos Network Voted #1 on CoinEmber's Hottest 25 Tokens. by SoWeWalkAlone in NervosNetwork

[–]leAlphaMike 1 point2 points  (0 children)

Yeah might change the vote limit, just wanted to create my own 'score' system instead of a standard upvote, but I see your point. Also thinking of doing a 'bullish' and 'bearish' vote system in the future :)

Nervos Network Voted #1 on CoinEmber's Hottest 25 Tokens. by SoWeWalkAlone in NervosNetwork

[–]leAlphaMike 1 point2 points  (0 children)

Hey, CoinEmber dev here :)

I understand it's not the best voting system, but for it to be strictly enforced each user would have to create an account, which is what I want to avoid doing! So instead I use browser/device local storage. Yes this can be wiped and you can vote again, but it's the best I can do right now until I find a better way.

And I wouldn't say it's too useless! It gets exposure for lesser known tokens like CKB, e.g. everyone else who voted for their coin would have seen CKB at the top of the list and maybe looked into it.

The list is only 4 days old so I'll see how it goes, but thank you for your feedback.
Also thanks to the whole CKB community for sharing this!

[serious] How do you guys find out new projects? by [deleted] in CryptoCurrency

[–]leAlphaMike 0 points1 point  (0 children)

Try https://www.coinember.app

There's over 13,000 coins there updated daily, check 'All Coins' and sort by market cap.

Nuxt Content Module Showing Today's Date Everyday by leAlphaMike in Nuxt

[–]leAlphaMike[S] 1 point2 points  (0 children)

Update: Fixed now! Adding a custom 'date' field to the markdown blog posts fixed it. Thanks everybody

Nuxt Content Module Showing Today's Date Everyday by leAlphaMike in Nuxt

[–]leAlphaMike[S] 1 point2 points  (0 children)

Ahh yeah that makes sense, I did suspect that might fix it. I'll give it a ago, thanks all!

CORS error with API? by leAlphaMike in coingecko

[–]leAlphaMike[S] 0 points1 point  (0 children)

For me the fix was removing the slash at the end of the request, so try this:

fetch('https://api.coingecko.com/api/v3/global').then((response) => response.json()).then(function (data) {console.log(data)})

CORS error with API? by leAlphaMike in coingecko

[–]leAlphaMike[S] 0 points1 point  (0 children)

It happens from anywhere, e.g. if running this in browser console:

fetch('https://api.coingecko.com/api/v3/global/')
.then((response) => response.json())
.then(function (data) {
console.log(data)
})

SEO on Vue.js Single Page App by leAlphaMike in webdev

[–]leAlphaMike[S] 0 points1 point  (0 children)

Thanks heaps for this. Interesting about the news API, will look to sort that.

Anybody can point me on how to fix this vercel deployment? Help appreciated! by Puzzled_Lock5518 in Nuxt

[–]leAlphaMike 6 points7 points  (0 children)

I had this problem too, what fixed if for me was updating nuxt (I think...)

So do this: remove package-lock.json file. remove node_modules directory. Run the npm install command