"you look so pretty" , okay then carry a picture of me in your wallet 🥰😘
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.
"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
true af😭
i’m such a “i want your attention” but “won’t bother you” kinda person
I want to be someone's first priority at least once
Childhood trauma can have a deep and lasting impact on your development, some scenarios we would not even consider to be " trauma" but it comes down to how you as a child perceived the situation. To add to that, you could have had a great childhood factually, or by your understanding, because it is all you knew. I’ll give you an example, do you find yourself putting everyone else before you? Maybe when you were little you had an experience with a parent where they put someone else before you in a situation that was significant to you at the time, and that feeling got registered in your subconscious. Maybe you got rewarded for the experience or reprimanded. It could have been very harmless. You may not even remember unless you start to think about it. None the less the root of a lot of our triggers, habits and insecurities boil down to our childhood experiences, that stay buried in our subconscious and often manifesting in various ways during adulthood.
You have a have a hard time controlling your feelings. You might get super angry or not feel anything at all.
You are scared to fail.
You blame yourself for your mistakes and bad choices from your past and have a hard time forgiving yourself.
You worry about what other people think about you or in general and may feel scared a lot.
You are too clingy or too distant and cant find a balance.
You don't trust yourself to make decisions and need constant validation or someone else to make decisions for you.
You feel really sad and down most of the time.
You suffer from negative self talk, are very hard on yourself and really believe those things to be true.
You constantly criticize others.
You need external validation to feel accepted.
You are always anxious.
You are hypersensitive to criticism.
You are terrified of change.
You find it hard to take compliments and truly believe you are not worthy.
You find it hard to keep good relationships because you're scared of getting hurt and feel like you cant get close to others.
You try to be perfect and want to do everything perfectly because you think it will help avoid bad things from happening.
You might eat too much or too little because you are feeling bad or want to control things.
You can't stop thinking about bad stuff that happened before and might have nightmares or feel like they're living it again.
You may feel like they're not really in their body or like things around them aren't real because of what happened in the past.
You avoid things because they remind you of bad stuff that happened.
Sometimes people stay away from things that remind them of bad stuff that happened.
You might have more health problems like headaches or stomachaches.
You do things that hurt you or others, and you don't even realize it because you learned it from when you were young.
You might work extra hard to be successful because you want others to like you or because you don't feel good about yourself.
You rather be alone because you feel embarrassed or worried about what others think.
You try really hard to control everything in your life.
You water yourself down and put everyone else before you.
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~!
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~!
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
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.
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.
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~!
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!
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!
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 🥰💗
This is the problem with getting attached to someone. When they leave you, you just feel lost.
at some point it's just like. do they even fucking like the thing they're asking AI to make? "oh we'll just use AI for all the scripts" "we'll just use AI for art" "no worries AI can write this book" "oh, AI could easily design this"
like... it's so clear they've never stood in the middle of an art museum and felt like crying, looking at a piece that somehow cuts into your marrow even though the artist and you are separated by space and time. they've never looked at a poem - once, twice, three times - just because the words feel like a fired gun, something too-close, clanging behind your eyes. they've never gotten to the end of the movie and had to arrive, blinking, back into their body, laughing a little because they were holding their breath without realizing.
"oh AI can mimic style" "AI can mimic emotion" "AI can mimic you and your job is almost gone, kid."
... how do i explain to you - you can make AI that does a perfect job of imitating me. you could disseminate it through the entire world and make so much money, using my works and my ideas and my everything.
and i'd still keep writing.
i don't know there's a word for it. in high school, we become aware that the way we feel about our artform is a cliche - it's like breathing. over and over, artists all feel the same thing. "i write because i need to" and "my music is how i speak" and "i make art because it's either that or i stop existing." it is such a common experience, the violence and immediacy we mean behind it is like breathing to me - comes out like a useless understatement. it's a cliche because we all feel it, not because the experience isn't actually persistent. so many of us have this ... fluttering urgency behind our ribs.
i'm not doing it for the money. for a star on the ground in some city i've never visited. i am doing it because when i was seven i started taking notebooks with me on walks. i am doing it because in second grade i wrote a poem and stood up in front of my whole class to read it out while i shook with nerves. i am doing it because i spent high school scribbling all my feelings down. i am doing it for the 16 year old me and the 18 year old me and the today-me, how we can never put the pen down. you can take me down to a subatomic layer, eviscerate me - and never find the source of it; it is of me. when i was 19 i named this blog inkskinned because i was dramatic and lonely and it felt like the only thing that was actually permanently-true about me was that this is what is inside of me, that the words come up over everything, coat everything, bloom their little twilight arias into every nook and corner and alley
"we're gonna replace you". that is okay. you think that i am writing to fill a space. that someone said JOB OPENING: Writer Needed, and i wrote to answer. you think one raindrop replaces another, and i think they're both just falling. you think art has a place, that is simply arrives on walls when it is needed, that is only ever on demand, perfect, easily requested. you see "audience spending" and "marketability" and "multi-line merch opportunity"
and i see a kid drowning. i am writing to make her a boat. i am writing because what used to be a river raft has long become a fully-rigged ship. i am writing because you can fucking rip this out of my cold dead clammy hands and i will still come back as a ghost and i will still be penning poems about it.
it isn't even love. the word we use the most i think is "passion". devotion, obsession, necessity. my favorite little fact about the magic of artists - "abracadabra" means i create as i speak. we make because it sluices out of us. because we look down and our hands are somehow already busy. because it was the first thing we knew and it is our backbone and heartbreak and everything. because we have given up well-paying jobs and a "real life" and the approval of our parents. we create because - the cliche again. it's like breathing. we create because we must.
you create because you're greedy.