Itna Toh Expect Kar Sakti Hu Na??😭😭

itna toh expect kar sakti hu na??😭😭

Gajra 🪷
Gajra 🪷
Gajra 🪷
Gajra 🪷
Gajra 🪷
Gajra 🪷

Gajra 🪷

More Posts from Atomicqueenheart and Others

11 months ago

I wish we were pressed flowers on the same page.

-Unknown

I Wish We Were Pressed Flowers On The Same Page.
I Wish We Were Pressed Flowers On The Same Page.

Ab ke ham bichhde to shayad kabhi khvabo me mile

jis tarah sukhe hue phuul kitabo me mile.

-Ahmed Faraz

I Wish We Were Pressed Flowers On The Same Page.
I Wish We Were Pressed Flowers On The Same Page.
11 months ago

Tum atom or mai tumhara nucleus

Mai to tumhara apna hu na 🫰

Of course tum mere ho😭💞

1 year ago
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀
Oh Look! Your Dashboard Has Been Visited By The Good Luck Kittens. Reblog To Claim Your Luck 🍀

Oh look! Your dashboard has been visited by the good luck kittens. Reblog to claim your luck 🍀

1 year ago
I Can Do This

I can do this

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

Hi! I’m a student currently learning computer science in college and would love it if you had any advice for a cool personal project to do? Thanks!

Personal Project Ideas

Hi! I’m A Student Currently Learning Computer Science In College And Would Love It If You Had Any Advice

Hiya!! 💕

It's so cool that you're a computer science student, and with that, you have plenty of options for personal projects that can help with learning more from what they teach you at college. I don't have any experience being a university student however 😅

Someone asked me a very similar question before because I shared my projects list and they asked how I come up with project ideas - maybe this can inspire you too, here's the link to the post [LINK]

However, I'll be happy to share some ideas with you right now. Just a heads up: you can alter the projects to your own specific interests or goals in mind. Though it's a personal project meaning not an assignment from school, you can always personalise it to yourself as well! Also, I don't know the level you are, e.g. beginner or you're pretty confident in programming, if the project sounds hard, try to simplify it down - no need to go overboard!!

Hi! I’m A Student Currently Learning Computer Science In College And Would Love It If You Had Any Advice

But here is the list I came up with (some are from my own list):

Personal Finance Tracker

A web app that tracks personal finances by integrating with bank APIs. You can use Python with Flask for the backend and React for the frontend. I think this would be great for learning how to work with APIs and how to build web applications 🏦

Online Food Ordering System

A web app that allows users to order food from a restaurant's menu. You can use PHP with Laravel for the backend and Vue.js for the frontend. This helps you learn how to work with databases (a key skill I believe) and how to build interactive user interfaces 🙌🏾

Movie Recommendation System

I see a lot of developers make this on Twitter and YouTube. It's a machine-learning project that recommends movies to users based on their past viewing habits. You can use Python with Pandas, Scikit-learn, and TensorFlow for the machine learning algorithms. Obviously, this helps you learn about how to build machine-learning models, and how to use libraries for data manipulation and analysis 📊

Image Recognition App

This is more geared towards app development if you're interested! It's an Android app that uses image recognition to identify objects in a photo. You can use Java or Kotlin for the Android development and TensorFlow for machine learning algorithms. Learning how to work with image recognition and how to build mobile applications - which is super cool 👀

Social Media Platform

(I really want to attempt this one soon) A web app that allows users to post, share, and interact with each other's content. Come up with a cool name for it! You can use Ruby on Rails for the backend and React for the frontend. This project would be great for learning how to build full-stack web applications (a plus cause that's a trend that companies are looking for in developers) and how to work with user authentication and authorization (another plus)! 🎭

Text-Based Adventure Game

If you're interested in game developments, you could make a simple game where users make choices and navigate through a story by typing text commands. You can use Python for the game logic and a library like Pygame for the graphics. This project would be great for learning how to build games and how to work with input/output. 🎮

Weather App

Pretty simple project - I did this for my apprenticeship and coding night classes! It's a web app that displays weather information for a user's location. You can use Node.js with Express for the backend and React for the frontend. Working with APIs again, how to handle asynchronous programming, and how to build responsive user interfaces! 🌈

Online Quiz Game

A web app that allows users to take quizzes and compete with other players. You could personalise it to a module you're studying right now - making a whole quiz application for it will definitely help you study! You can use PHP with Laravel for the backend and Vue.js for the frontend. You get to work with databases, build real-time applications, and maybe work with user authentication. 🧮

Chatbot

(My favourite, I'm currently planning for this one!) A chatbot that can answer user questions and provide information. You can use Python with Flask for the backend and a natural language processing library like NLTK for the chatbot logic. If you want to mauke it more beginner friendly, you could use HTML, CSS and JavaScript and have hard-coded answers set, maybe use a bunch of APIs for the answers etc! This project would be great because you get to learn how to build chatbots, and how to work with natural language processing - if you go that far! 🤖

Hi! I’m A Student Currently Learning Computer Science In College And Would Love It If You Had Any Advice

Another place I get inspiration for more web frontend dev projects is on Behance and Pinterest - on Pinterest search for like "Web design" or "[Specific project] web design e.g. shopping web design" and I get inspiration from a bunch of pins I put together! Maybe try that out!

I hope this helps and good luck with your project!

Hi! I’m A Student Currently Learning Computer Science In College And Would Love It If You Had Any Advice
10 months ago

I want to be someone's first priority at least once

  • miraeism
    miraeism reblogged this · 1 week ago
  • nikblogs-stuff
    nikblogs-stuff liked this · 1 week ago
  • rosegold-08
    rosegold-08 liked this · 1 week ago
  • fuschiaflexxxxx
    fuschiaflexxxxx liked this · 1 week ago
  • rottingbvnnyheart
    rottingbvnnyheart liked this · 1 week ago
  • septemberdove
    septemberdove reblogged this · 1 week ago
  • springeneticist
    springeneticist liked this · 1 week ago
  • cottonbunnifluff
    cottonbunnifluff reblogged this · 1 week ago
  • jj-pines
    jj-pines liked this · 1 week ago
  • cheapot
    cheapot reblogged this · 1 week ago
  • futuristicmakerbattoad
    futuristicmakerbattoad reblogged this · 1 week ago
  • rahul-pb
    rahul-pb liked this · 2 weeks ago
  • flamingo-flop
    flamingo-flop reblogged this · 2 weeks ago
  • flamingo-flop
    flamingo-flop liked this · 2 weeks ago
  • nature-fair2021
    nature-fair2021 liked this · 2 weeks ago
  • crumbledwr3pper
    crumbledwr3pper liked this · 2 weeks ago
  • sanctimoniously-pious
    sanctimoniously-pious liked this · 2 weeks ago
  • theanonymousscop
    theanonymousscop liked this · 2 weeks ago
  • pavixx
    pavixx reblogged this · 2 weeks ago
  • sillygothpartykid
    sillygothpartykid liked this · 2 weeks ago
  • softaslove
    softaslove liked this · 2 weeks ago
  • goddessdiviinee
    goddessdiviinee liked this · 2 weeks ago
  • djoher213
    djoher213 liked this · 2 weeks ago
  • private-pickle
    private-pickle liked this · 2 weeks ago
  • scubadubada
    scubadubada liked this · 2 weeks ago
  • rjsstuff
    rjsstuff liked this · 2 weeks ago
  • billa05
    billa05 liked this · 2 weeks ago
  • dayaar-e-ishq
    dayaar-e-ishq liked this · 2 weeks ago
  • countingsunflowerpetals
    countingsunflowerpetals liked this · 2 weeks ago
  • c-h-pictures
    c-h-pictures reblogged this · 2 weeks ago
  • c-h-pictures
    c-h-pictures liked this · 2 weeks ago
  • juiciee
    juiciee liked this · 2 weeks ago
  • andaaz-e-aafat
    andaaz-e-aafat reblogged this · 2 weeks ago
  • chocolateloml
    chocolateloml liked this · 2 weeks ago
  • nyxmahogany
    nyxmahogany reblogged this · 2 weeks ago
  • nyxmahogany
    nyxmahogany liked this · 2 weeks ago
  • konqurer
    konqurer liked this · 2 weeks ago
  • dustorange
    dustorange liked this · 2 weeks ago
  • naptimepng
    naptimepng liked this · 2 weeks ago
  • sirfetchd
    sirfetchd liked this · 2 weeks ago
  • tourniqitty
    tourniqitty liked this · 2 weeks ago
  • jaaaaneman
    jaaaaneman liked this · 2 weeks ago
  • worried
    worried reblogged this · 2 weeks ago
  • yeuls
    yeuls reblogged this · 2 weeks ago
  • acad3miawhore
    acad3miawhore liked this · 2 weeks ago
  • kharrisdawndancer
    kharrisdawndancer liked this · 2 weeks ago
  • sxoo
    sxoo liked this · 2 weeks ago
  • osajnire
    osajnire liked this · 3 weeks ago
  • tiktiktime007
    tiktiktime007 liked this · 3 weeks ago

asi, she/her, living

44 posts

Explore Tumblr Blog
Search Through Tumblr Tags