Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TE
TechCodex @programming.dev
Posts 54
Comments 33
Raising awareness of Ransomware
  • They will demand payment in cryptocurrency, usually bitcoin, which is untraceable. There's no guarantee that they will really keep their word; since it's completely anonymous, there's nothing you can do. If you get infected, you just have to accept that your files are gone. The best thing you can do is backup while you still can.

  • Javascript can create atomic bombs
  • CSS is coloring and styling in programming, Ma'am.. It fits to describe the Barbie movie because of its vibrant colors

    JS is about logic and calculations.. More like science in Oppenheimer

  • CSS: Chaos-Soothe-Shake
  • In HTML:

    div class="hands">

    In CSS:

    .hands

    A dot in CSS means you're referring to an HTML Class. Note that this is different from the OOP Class in scripting languages. Think of HTML classes as classrooms. You can have multiple divs with the same class name, each will be affected when you style that class name. Just like students follow the same rule when applied to a classroom.

    In some specific instances, ID is used instead of class. # is used in CSS instead of a dot. The only difference is that in ID, each element should have a unique ID.

    div id="right-arm"

    CSS: #right-arm