Pyotr Ilyich Tchaikovsky, From A Letter Featured In The Life & Letters Of Pyotr Ilyich Tchaikovsky

Pyotr Ilyich Tchaikovsky, From A Letter Featured In The Life & Letters Of Pyotr Ilyich Tchaikovsky

Pyotr Ilyich Tchaikovsky, from a letter featured in The Life & Letters of Pyotr Ilyich Tchaikovsky

More Posts from Atomicqueenheart and Others

1 year ago

waiting💅🥰

i’m such a “i want your attention” but “won’t bother you” kinda person

1 year ago

Tum atom or mai tumhara nucleus

Mai to tumhara apna hu na 🫰

Of course tum mere ho😭💞

1 year ago

"Stop saying 15 year olds with weird interests are cringe, they're 15" this is true however you should also stop saying adults with weird interests are cringe because who gives a shit

1 year ago

i do not pity israel. never have, and never will.

each night that gaza experiences is deadlier than the last, as idf soldiers record propaganda tiktoks, make rave parties and grwms and fit checks, gloat over having food and water, and film themselves deriving sadistic pleasure from torturing their hostages and victims and desecrating the dead.

Palestinians have to display their martyred before the camera for you to believe the atrocities that the zionist entity has subjected them to. they cannot even mourn in private. the apartheid entity murders them in cold blood, and you deliver the killing blow by doubting them.

babies whose families have been killed will never get to know their own name.

i can't reshare a tenth of the videos and photos that cross my timeline. i have seen more dead children in the past month than i have known death my entire life.

israeli settlers burn olive trees, bomb bakeries and fishing boats, shower white phosphorus and earthquake bombs on the captive civilians of gaza. you already know about the disastrous effects of white phosphorus, but earthquake bombs were last used during ww2 to wipe out entire cities.

how holy is the land that seeks to be built over the mass graves of thousands of children? is it holier than the miracle of a child being born in this hypocritical world?

all 11 universities in gaza have been bombed. academics should be agitating right now, especially those who call themselves "decolonial thinkers." destruction of universities is a sinisterly deliberate act to sabotage the Palestinians who will survive this great catastrophe.

the act of cleansing your hands before prayer is extremely important to muslims. no part of us can remotely comprehend the grief of the mother who refused to wash her hands from the blood of her children after losing them in a zionist airstrike over gaza. "I swear I won't wash them, I won't wash my hands, how else am I supposed to sleep near my kids."

it is only both moral and right when one side defends itself. the other side are the price of war, no better than insects and cattle and sheep left to die within the four walls of the slaughterhouse.

this situation should not be up for debate, but let me finish with one final thing : do your research about Palestine. HOWEVER. you do not need a degree in middle east studies to object to an ongoing genocide. if someone outwits you in a debate about historical details and every nuance of a subject, you were and will remain entirely correct in objecting to a genocide.

may those martyred rest in peace and be reunited again with their loved ones in heaven's eternal vastness.

DO NOT STOP TALKING ABOUT PALESTINE.

glory to Palestinian resistance. from the river to the sea, Palestine will be free.

1 year ago

ohhh how i wish you would look at me the way i look at you....


Tags
1 year ago

Coding A Simple Firefox Extension

Coding A Simple Firefox Extension

Hiya! Today I want to share my experience creating a simple Firefox extension. I was a bit intimidated by the idea of creating an extension, but I was determined to give it a try! Been on my 'projects to-do' list for a long time! 😅

I found that the process was actually quite straightforward, and with some guidance from a couple of YouTube videos, I was able to create a working (temporary) extension in just an hour. My hope is that this post will serve as a helpful guide for anyone who is interested in creating their own Firefox extension~!

Coding A Simple Firefox Extension

What exactly are we making?

Coding A Simple Firefox Extension
Coding A Simple Firefox Extension

We will be making a simple temporary extension - an extension that only you have access to e.g. end-users will not be able to use the extension. This is a way to test if your extension works and find issues. I might make another post on how to actually upload it for other people to use, but for now, this method is for you to use the extension.

This is the link to the official Mozilla Firefox 'Temporary installation' Guide' for extenisions - LINK

Now, for the steps into making the extension:

Setting up the development environment

Creating a manifest file

Adding a pop-up window

Attaching JavaScript functionality to a button

Load your extension in Firefox

Let's get started~!

Coding A Simple Firefox Extension

Step 1 - Setting up the development environment

Coding A Simple Firefox Extension
Coding A Simple Firefox Extension

Obviously, you will need to have Firefox installed on your computer. You will also need a code editor, such as Visual Studio Code or Sublime Text, to write your code. I'm going to use VS Code.

In your code editor, create a new folder where you will store your extension files. You can name this folder whatever you like. For this example, I will call it 'Firefox Extension'. I also recommend adding the following files in the folder:

index.html (or in this case popup.html file)

icon image in .png or .jpg or similar formats

manifest.json - talked about in the next step

script.js

Step 2 - Creating a manifest file

Coding A Simple Firefox Extension

The most important file I believe when creating an extension is the manifest JSON file. This file will contain metadata about your extension, including its name, version, and permissions. In your new folder, create a new file called "manifest.json".

This is the general structure of the file. The icon size you need to have is 48x48 pixel size image and then you can have others to be responsive to screensizes, I just added one extra. The 'browser_action' part includes the default icon image that will display an icon in the Firefox toolbar and the popup html file. In 'scripts', that is where we will add the JavaScript code to run.

Step 3 - Adding a pop-up window

Coding A Simple Firefox Extension

The code simply displays the text "Hello World" and a button in the center of the window. I assume you're good at your HTML and CSS so I won't go into too much detail here but the CSS is in the style tags within the head tags and what we can see also is what is between the body tags - the 'Hello World' and the 'Click me!' button.

Don't forget to include the script tag at the end of the body tag so it'll link to the script.js file in your folder AND include "scripts": ["script.js"] in the manifest.json for the javascript code.

Step 4 - Attaching JavaScript functionality to a button

Coding A Simple Firefox Extension

Again, I hope you very basic JavaScript. This code basically adds an event listener to the button with the ID "myBtn" (which is the button with 'Click me!' on it). When the button is clicked, it changes the heading 1 text from 'Hello World' to 'The button was clicked!'.

And that it! Done with all the coding part and now to upload it for you to use~!

Step 5 - Load your extension in Firefox

Coding A Simple Firefox Extension

Open Firefox and type "about:debugging" in the address bar. This will open the Firefox Developer Tools page. Click the "This Firefox" section to the left of the page, then click "Load Temporary Add-on". Navigate to your extension folder and select the manifest.json file.

The extension is now loaded in Firefox! Click the icon in the toolbar to see your pop-up window!

Coding A Simple Firefox Extension

Whenever you make changes to the extension, back on the Firefox Developer Tools page, click the 'Reload' button on your extension section and changes should show up!

Coding A Simple Firefox Extension

I hope that this post has been helpful to you and that it has inspired you to create your own Firefox extension! 👩🏾‍💻💗 Remember, the most important thing is to have fun and experiment with different ideas - play with the colours or sizes or the javascript code! Don't be afraid to try new things and explore!!

Extra links that helped me learn:

How to build an extension for Firefox in less than 5 minutes [video]

Temporary installation in Firefox [webpage]

Thanks for reading 🥰💗

1 year ago

true af😭

i’m such a “i want your attention” but “won’t bother you” kinda person


Tags
2 years ago

I will never get over how weird it feels to have tragic and emotional chapters of your life where you just also still go to work, and the grocery store, and see funny videos online all while feeling such paralyzing fear and heartache

life just goes on no matter what

1 year ago

Day 4/100

Was feeling off since past two days so i didn't post anything much. However got my work done , started on my assignments and completed a presentation. The feeling continues into the next day as well, anyway it will go away. Was prepping for the presentation in the cafe . Hopefully I will deliver it good.

Today's to do list:

-complete my practical record

- complete Chem assignment

-complete my duolingo test

- get started on my online course

Day 4/100
Day 4/100


Tags
  • sweetfairyyy
    sweetfairyyy liked this · 3 weeks ago
  • carlos-tk
    carlos-tk liked this · 3 weeks ago
  • j073fv
    j073fv liked this · 3 weeks ago
  • loversnight
    loversnight reblogged this · 3 weeks ago
  • sinfully078
    sinfully078 liked this · 3 weeks ago
  • heythereokaybye
    heythereokaybye liked this · 3 weeks ago
  • yvesdivine
    yvesdivine liked this · 3 weeks ago
  • uglyteen
    uglyteen liked this · 3 weeks ago
  • lavendersandpanthers
    lavendersandpanthers liked this · 3 weeks ago
  • ajlalala
    ajlalala liked this · 3 weeks ago
  • vorstadthalunkin
    vorstadthalunkin reblogged this · 3 weeks ago
  • coffeeworld-862
    coffeeworld-862 liked this · 3 weeks ago
  • kyuuley
    kyuuley reblogged this · 3 weeks ago
  • oscarwildesblood
    oscarwildesblood liked this · 3 weeks ago
  • levellinlows
    levellinlows reblogged this · 3 weeks ago
  • sugahoneyicetae
    sugahoneyicetae reblogged this · 3 weeks ago
  • sugahoneyicetae
    sugahoneyicetae liked this · 3 weeks ago
  • cherryycigarettes
    cherryycigarettes liked this · 3 weeks ago
  • rigisblog
    rigisblog liked this · 3 weeks ago
  • xo-westcoast
    xo-westcoast reblogged this · 3 weeks ago
  • xo-westcoast
    xo-westcoast liked this · 3 weeks ago
  • crepuscular-archive
    crepuscular-archive reblogged this · 3 weeks ago
  • itskindafunnytheperksiwrotethis
    itskindafunnytheperksiwrotethis reblogged this · 3 weeks ago
  • what-a-catch-george
    what-a-catch-george reblogged this · 3 weeks ago
  • what-a-catch-george
    what-a-catch-george liked this · 3 weeks ago
  • meonisme
    meonisme liked this · 3 weeks ago
  • 116006
    116006 liked this · 3 weeks ago
  • livingdead--beat-blog
    livingdead--beat-blog liked this · 3 weeks ago
  • zoedeep1
    zoedeep1 liked this · 3 weeks ago
  • thehorticaldon
    thehorticaldon liked this · 3 weeks ago
  • alittlechaotics-blog
    alittlechaotics-blog liked this · 3 weeks ago
  • dearkindfriend
    dearkindfriend liked this · 3 weeks ago
  • yourlocalpedophile00
    yourlocalpedophile00 liked this · 3 weeks ago
  • worsethannicotine6
    worsethannicotine6 liked this · 3 weeks ago
  • repentcore
    repentcore liked this · 3 weeks ago
  • djisatsu
    djisatsu reblogged this · 3 weeks ago
  • zaitonazeinona
    zaitonazeinona liked this · 3 weeks ago
  • sugaglos
    sugaglos reblogged this · 3 weeks ago
  • smormumu
    smormumu liked this · 3 weeks ago
  • evakyrteeva
    evakyrteeva liked this · 3 weeks ago
  • megggggggdotcom
    megggggggdotcom reblogged this · 3 weeks ago
  • doeisnotforever
    doeisnotforever reblogged this · 3 weeks ago
  • faeriesaurus
    faeriesaurus liked this · 3 weeks ago
  • inbeautiful-trauma
    inbeautiful-trauma reblogged this · 3 weeks ago
  • evilcest
    evilcest liked this · 3 weeks ago
  • dqllz
    dqllz liked this · 3 weeks ago
  • timeluu
    timeluu reblogged this · 3 weeks ago
  • timeluu
    timeluu liked this · 3 weeks ago
  • melancholykatt
    melancholykatt liked this · 3 weeks ago

asi, she/her, living

44 posts

Explore Tumblr Blog
Search Through Tumblr Tags