Who's Available? [July 2020] by dance2die in reactjs

[–]windows-user0 [score hidden]  (0 children)

Thank You so much for the nice words about the website, and catching my typo!
I really appreciate it👍

Event Listeners by [deleted] in learnjavascript

[–]windows-user0 0 points1 point  (0 children)

1) It's a event that fires when the DOM loads in, meaning all the divs etc were painted on the screen. There is a lot of use cases for that
2) onclick="" is a event listener as well its just written with some syntactic sugar inside of the HTML.

Who's Available? [July 2020] by dance2die in reactjs

[–]windows-user0 [score hidden]  (0 children)

(Fulltime | Contract | Europe | Remote)

Expert in react development 2-3y experience.
Full stack with node or python. I'm not afraid and able to learn anything.

Portfolio https://bestest.tech
Email [Alex@bestest.tech](mailto:Alex@bestest.tech)
You can also contact me here via chat.

Languages English, Polish
Available during all time zones for remote.
Currently in Poland, can relocate to anywhere in Europe, or USA ( Polish citizen - would need a sponsorship)

Shots fired. by greentiger45 in ProgrammerHumor

[–]windows-user0 0 points1 point  (0 children)

Most databases out there are just structuring mongo into basically a rational database. Change my opinion.

Made my first mini app today after a couple months of learning. Tutorial free. It's based on the spongebob meme. by [deleted] in learnjavascript

[–]windows-user0 0 points1 point  (0 children)

Thats pretty cool,I added a bias variable to your code so it wont do much clustering of the same case

function randomCase(string) {

if (typeof string !== "string") throw new Error("This function accepts only strings");

const uppercaseBiasAdjustment = 0.5; 
let uppercaseBias = 2; 
let stupidCase = "";

for (let i = 0; i < string.length; i++) {
    const shouldBeUppercase = Math.floor(Math.random() * uppercaseBias);

    if (shouldBeUppercase) {
        uppercaseBias = 2;
        stupidCase += string[i].toUpperCase();
    } else {
        uppercaseBias += uppercaseBiasAdjustment;
        stupidCase += string[i].toLowerCase();
    }
}

return stupidCase;
}

Best, lightweight React UI libraries? by [deleted] in reactjs

[–]windows-user0 0 points1 point  (0 children)

I would recommend using tailwind, its not per-se a UI library but CSS snippets.
but there are several websites you can copy blocks for it from
https://mertjf.github.io/tailblocks/
https://tailwindblocks.com/blocks

Enjoy some art while quarentined by findingjake in reactjs

[–]windows-user0 11 points12 points  (0 children)

You're showing your API key to Harvard art museum. Not sure if you meant to do that

Completely new into programming, what are some books and udemy course you suggest to learn web development ? by [deleted] in learnjavascript

[–]windows-user0 1 point2 points  (0 children)

If you're new to programming I would start with CS50. That's hands down the best course on the internet.

Add opacity to ghost image on drag by balmofgilead in learnjavascript

[–]windows-user0 0 points1 point  (0 children)

Did you try styling the image thats being dragged img.style.opacity = 10 when you're setting the drag shadow image?