honeynebula - Forevermore a Humanist Romantic
Forevermore a Humanist Romantic

studyblr • stemblr • codeblr • progblr • swiftie • writer • computer science & computer engineering

75 posts

A Great Reminder :D

a great reminder :D

I Rlly Like This One

i rlly like this one <333

(pls don’t repost to pinterest ! )

  • pumpkinpatchmary
    pumpkinpatchmary liked this · 7 months ago
  • cerealmix
    cerealmix reblogged this · 7 months ago
  • mathamota
    mathamota liked this · 7 months ago
  • cerealsnail
    cerealsnail liked this · 7 months ago
  • taraiha
    taraiha liked this · 7 months ago
  • draxums
    draxums reblogged this · 7 months ago
  • wildlyfriedprince
    wildlyfriedprince liked this · 7 months ago
  • ferrashi
    ferrashi reblogged this · 7 months ago
  • talkingtravesties
    talkingtravesties liked this · 7 months ago
  • tophatdoggo
    tophatdoggo liked this · 7 months ago
  • masternurauwu
    masternurauwu liked this · 7 months ago
  • mariamestre2002
    mariamestre2002 liked this · 7 months ago
  • humansohuman
    humansohuman liked this · 7 months ago
  • sereath
    sereath liked this · 7 months ago
  • who-the-actual-fuck
    who-the-actual-fuck liked this · 7 months ago
  • saturncard
    saturncard reblogged this · 7 months ago
  • honeywheaty
    honeywheaty reblogged this · 7 months ago
  • aliminalhauntingofghostgirls
    aliminalhauntingofghostgirls liked this · 7 months ago
  • milkyway-and-honeymoon
    milkyway-and-honeymoon reblogged this · 7 months ago
  • milfclaw
    milfclaw liked this · 7 months ago
  • elarth
    elarth reblogged this · 7 months ago
  • elarth
    elarth liked this · 7 months ago
  • nervousangelpoetry
    nervousangelpoetry liked this · 7 months ago
  • thehumanmaiden22
    thehumanmaiden22 liked this · 7 months ago
  • alesbiancalledflorence
    alesbiancalledflorence liked this · 7 months ago
  • laceyc0bwebs
    laceyc0bwebs liked this · 7 months ago
  • patchworkofficial
    patchworkofficial liked this · 7 months ago
  • crazycherub
    crazycherub liked this · 7 months ago
  • pssssre
    pssssre liked this · 7 months ago
  • rifftybark
    rifftybark liked this · 7 months ago
  • blossomnightshade
    blossomnightshade liked this · 7 months ago
  • mummifiedraven
    mummifiedraven liked this · 7 months ago
  • never-ending-glitter
    never-ending-glitter liked this · 7 months ago
  • 1loveprettygirls
    1loveprettygirls liked this · 7 months ago
  • rec-c
    rec-c reblogged this · 7 months ago
  • rec-c
    rec-c liked this · 7 months ago
  • your-local-shy-boy
    your-local-shy-boy liked this · 7 months ago
  • anticlimatteo
    anticlimatteo liked this · 7 months ago
  • grrrly2
    grrrly2 reblogged this · 7 months ago
  • carnet-d-inspiration
    carnet-d-inspiration reblogged this · 7 months ago
  • impatiensdesigns
    impatiensdesigns liked this · 7 months ago
  • bloodyfemme
    bloodyfemme liked this · 7 months ago
  • corbytheking
    corbytheking liked this · 7 months ago
  • alllstarr
    alllstarr liked this · 7 months ago

More Posts from Honeynebula

1 year ago
Ive Been With Myself For So Long Now, I Like It. Im Not Willing To Give Up That Independence For Anyone.
Ive Been With Myself For So Long Now, I Like It. Im Not Willing To Give Up That Independence For Anyone.
Ive Been With Myself For So Long Now, I Like It. Im Not Willing To Give Up That Independence For Anyone.
Ive Been With Myself For So Long Now, I Like It. Im Not Willing To Give Up That Independence For Anyone.

I’ve been with myself for so long now, I like it. I’m not willing to give up that independence for anyone. Basically, there’s the tiniest, tiniest, tiniest chance you might find someone you can have a real and long-lasting relationship with. In my teenage years, I was enamoured by the idea of romance because I thought it was going to be this ‘happily ever after’ situation. Taylor Swift for Wonderland Magazine | November 17, 2014


Tags :
11 months ago

twilight and rarity are my favorites 💜🤍

A Twilight Sparkle Moodboard

A Twilight Sparkle Moodboard 🦄


Tags :
7 months ago

Convert HTML to Image: A Step-by-Step Guide ✨

Convert HTML To Image: A Step-by-Step Guide

Do you want to turn some HTML code you've made that's on your website and have a way to convert it into an image for you to save?

Well, look no further! I too wanted to do the same thing but funny enough, there weren't any straightforward tutorials out there that could show you how! After hours of searching, I finally discovered the solution~!

This is an old tutorial I made 🐼

Convert HTML To Image: A Step-by-Step Guide

💛 Set your environment

Before we dive into the conversion process, I'll assume you already have your HTML code ready. What you want to learn is how to turn it into an image file. You should have a good grasp of HTML and JavaScript. For this tutorial, we'll use the following HTML code example:

Convert HTML To Image: A Step-by-Step Guide

We won't include the CSS code, as it doesn't affect this tutorial. The JavaScript file (script.js) at the bottom of the body element is where we'll add the functionality for the conversion.

Your page should resemble the following:

Convert HTML To Image: A Step-by-Step Guide

As you can see, the "Click me" button will handle the conversion. We aim to convert everything within the div.info-div into an image.

💛 Using the html2canvas JavaScript Library

The html2canvas library allows you to take screenshots of webpages and target specific elements on a screen. Here are the steps to include the library in your project:

The steps to put the library in your project:

Visit the html2canvas website for more information.

Copy the CDN link from here

Convert HTML To Image: A Step-by-Step Guide

and include it in a script tag in your project's head tag in the HTML file:

Convert HTML To Image: A Step-by-Step Guide

That's it for including the library on the HTML side. Now, let's move on to the JavaScript code.

💛 JavaScript Functionality

Here's the JavaScript code to handle the conversion:

Convert HTML To Image: A Step-by-Step Guide

In this code, I want to turn the whole div.info-div into an image, I put it into a variable in const div = document.querySelector(".info-div");.

I also put the button into a variable in const button = document.querySelector("button");

I added a click event listener to the button so when the user clicks the button, it will follow the code inside of the event listener!

You can find similar code like this in the documentation of the html2canvas library:

Convert HTML To Image: A Step-by-Step Guide

What is happening here is:

We add the div (or what the element we want to take an image of) into the html2canvas([element]).then((canvas)

Added the image file type url to a variable = const imageDataURL = canvas.toDataURL("image/png"); - You can replace the png to other image file types such as jpg, jpeg etc

Created an anchor/link tag, added the href attribute to imageDataURL

The download attribute is where we will give the default name to the image file, I added "dog.png"

Perform the click() function to the anchor tag so it starts to download the image we created

And that's it!

💛 The End

And that's it! You've successfully learned how to turn your HTML into an image. It's a great way to save and share your web content in a unique format.

Convert HTML To Image: A Step-by-Step Guide

If you have any questions or need further clarification, please comfortable to ask. Enjoy converting your HTML into images! 💖🐼

Convert HTML To Image: A Step-by-Step Guide

Tags :
7 months ago

me after bombing my calc midterm 😭

.

the retake is soon, but I've lost all confidence :(

Engineering Hell Continues To Engineering Hell Wouldnt Have It Any Other Way
Engineering Hell Continues To Engineering Hell Wouldnt Have It Any Other Way

engineering hell continues to engineering hell ‼️ wouldn’t have it any other way

7 months ago

Invasion of the Body Snatchers (1956)

I've watched this film for the first time the other day and I loved it! It had romance, action, and horrors that made one think what is really to be human.

I need more 1950's movie recommendations right now. This film had me feeling so many emotions like: ❤️😸😿.

Invasion Of The Body Snatchers (1956)

I watched the film during lab and I learned a couple of things like:

French critics were the ones to originally name these types of movies as the 'Film Noir' genre. Before that, it was simply known as a horror/thriller.

And French critics took B-level films and made them really popular since they didn't have prior access to them due to WWII occupation.

Day for Night scenes: night scenes that were filmed during the day. It was also called American Night, or what the French critics would call it 'La Nuit Américaine'.

Dutch Angle (mistranslated from German Angle): the technique where you tilt the camera angle in a scene; I believe it's 15 degrees.

Spoiler Warning:

I was so upset Becky got lost to the pod people. I wanted her to end up with Dr.Bennell so badly, I genuinely thought it was going to be a 1950's love story trope.

Even though this story had an ambiguous ending, which usually I'm not a fan of, but it was executed very well where I was satisfied that the problem is bigger than what can be captured in one film. So overall, great movie.

I need to watch more films since I'm so uncultured lol.


Tags :