Tumgik
#webdeveloper
digital-chance · 7 months
Text
Neocities Websites for Decor (& Other Resources)
9/4 2:10pm
i've been working on my neocities website and wanted to compile a bunch of places where one can find decor. this is not an extensive list, but rather a bunch of places where you can start finding resources.
please note that various pages could strain the eyes, including flashing lights or colors. pages called 'blinkies' usually have flashing colors throughout. [* = prominent flashing lights]
all websites, resources, and thoughts are beneath the cut
decor
effects for mouse cursors, text, and sites - https://www.mf2fm.com/rv/
assorted decor, images, and more - https://shishka.neocities.org/shishka/toybox
* random gifs from the internet archive - https://gifcities.org
https://pinkukingdom.neocities.org/toybox
http://whimsical.heartette.net/material [has tos you need to follow]
https://cinni.net/?z=/toybox/ [love this website so much]
* assorted early internet graphics - https://www.glitter-graphics.com
https://graphic.neocities.org
https://strawberry-gashes.gensoukai.net/v2/
archived images - https://web.archive.org/web/20100211160439/http://neskaya.net/pixels.php
* https://kawaiiness.net/home.php [potential eye strain]
https://www.asterism-m.com/item/ [japanese site]
https://pixelsafari.neocities.org
https://foollovers.com/mat/index.html [japanese site. has tos]
* https://gothiclolita.neocities.org/materials
https://sozai.pooftie.me [pastels. very low contrast, hard to read warning]
https://scripted.neocities.org
https://arunyi.art/#goodies
https://nonkiru.art/resources
* https://animatedglittergraphics-n-more.tumblr.com / @animatedglittergraphics-n-more
https://drive.google.com/drive/folders/1eQx_UiPvEvI4ZZECoPOuRrLhIE_6XbBy [content guide here... 4k+ gifs and graphics by @topadie]
* https://cutewebgraphics.tumblr.com/directory / @cutewebgraphics
https://pngfarm.tumblr.com / @pngfarm
https://lostsozai.tumblr.com / @lostsozai
decor directories
https://directory.cinni.net/sozai/
https://pixelsafari.neocities.org/links/directory/
https://www.tumblr.com/gender444/680981849679511552/favorite-sozaiblog-materials-sites-fool-lovers
definitions
(for those who don't know and/or are just getting into website creation)
webmaster: person who coded/created the website
favicons: small icons or graphics, usually 16x16 pixels.
pixels: graphics either custom-made or found. i've seen this term used for favicons, adoptables, and other graphics.
emoticons: old term for emojis. typically custom emoji expressions
* blinkies: thin flashing or sparkling banners, usually with text, an image, and flashing lights. collectible.
toybox: collections of favicons, stamps, blinkies, buttons, and more. all up to the webmaster's discretion and preferences
* glitters: glittering or shimmering text or images
stamps: collectible rectangular images, usually 99x56px
buttons: images that are hyperlinked to other websites. often custom-made for one particular webmaster or site.
avatars: typically 100x100 pixel images
other websites
beginner's guide to html and css - https://webguide.neocities.org
dnd style character generator - https://harlekine.neocities.org
templates/themes - https://neothemes.neocities.org
photo editor - https://photomosh.com
rainbow text maker - https://www.glitter-graphics.com/generators/rainbow.php
various other resources - https://scripted.neocities.org
learn more about websites & neocities - https://sadgrl.online
assorted resources - https://www.tumblr.com/punkwasp/725206601551773696/neocitiesindie-webmastery-resources
get started with website creation - https://www.tumblr.com/oddmerit/685644129978499072/note-cause-im-getting-sick-and-tired-of-terfs
all types of resources - https://punkwasp.leprd.space/resources/
* = prominent flashing lights/colors
Tumblr media
i suggest not linking back (aka hotlinking) to the resources on the website. instead upload it yourself onto either neocities or an image hosting site and include credit. this way, if the person hosting the image deletes their page or loses the image somehow, your website will still be fine. (i didn't do this and had to find everything all over again... )
i have found that the best websites to use as companions to neocities are w3schools, pinterest, tumblr, and any image hosting site. w3schools for coding tutorials. pinterest for inspiration or for graphics. tumblr for any type of decor and advice. to edit my code and have a live preview, i use codepen.io.
since you read through all this, maybe take a look at my neocities site and follow me! <3
723 notes · View notes
linuxtldr · 1 year
Text
Tumblr media
Anyone else, or is this just me?
150 notes · View notes
codewithishraq · 2 years
Text
Application Programming Interface (API)
What is API?
API is the acronym for Application Programming Interface, which is a software intermediary that allows two applications to talk to each other. It is a way for computers to share data or functionality, but computers need some kind of interface to talk to each other.
When you use an application on your mobile phone, the application connects to the Internet and sends data to a server. The server then retrieves that data, interprets it, performs the necessary actions and sends it back to your phone. The application then interprets that data and presents you with the information you wanted in a readable way. This is what an API is - all of this happens via API.
Building Blocks of API
There are three building blocks of an API. These are:
dataset
requests
response
Let’s elaborate these blocks a bit.
An API needs a data source. In most cases, this will be a database like MySQL, MongoDB, or Redis, but it could also be something simpler like a text file or spreadsheet. The API’s data source can usually be updated through the API itself, but it might be updated independently if you want your API to be “read-only”.
An API needs a format for making requests. When a user wants to use an API, they make a “request”. This request usually includes a verb (eg: “GET”, “POST”, “PUT”, or “DELETE”), a path (this looks like a URL), and a payload (eg: form or JSON data). Good APIs offer rules for making these requests in their documentation.
An API needs to return a response. Once the API processes the request and gets or saves data to the data source, it should return a “response”. This response usually includes a status code (eg: “404 - Not Found”, “200 - Okay”, or “500 - Server Error”) and a payload (usually text or JSON data). This response format should also be specified in the documentation of the API so that developers know what to expect when they make a successful request.
Types of API
Open APIs - Also known as Public APIs. These APIs are publicly available and there are no restrictions to access them.
Partner APIs - These APIs are not publicly available, so you need specific rights or licenses to access them.
Internal APIs - Internal or private. These APIs are developed by companies to use in their internal systems. It helps you to enhance the productivity of your teams.
Composite APIs - This type of API combines different data and service APIs.
SOAP - It defines messages in XML format used by web aplications to comunicate with each other.
REST - It makes use of HTTP to GET, POST, PUT or DELETE data. It is basically used to take advantage of the existing data.
JSON-RPC - It uses JSON for data transfer and is a light-weight remote procedural call defining few data structure types.
XML-RPC - It is based on XML and uses HTTP for data transfer. This API is widely used to exchange information between two or more networks.
Features of API
It offers a valuable service (data, function, audience).
It helps you to planabusiness model.
Simple, flexible, quickly adopted.
Managed and measured.
Offers great developer support.
Examples of API
Razorpay API
Google Maps API
Spotify API
Twitter API
Weather API
PayPal API
PayTm API
HubSpot API
Youtube API
Amazon's API
Travel Booking API
Stock Chart API
API Testing Tools
Postman - Postman is a plugin in Google Chrome, and it can be used for testing API services. It is a powerful HTTP client to check web services. For manual or exploratory testing, Postman is a good choice for testing API.
Ping API - Ping API is API testing tool which allows us to write test script in JavaScript and CoffeeScript to test your APIs. It will enable inspecting the HTTP API call with a complete request and response data.
VREST - VREST API tool provides an online solution for automated testing, mocking, automatic recording and specification of REST/HTTP APIS/RESTful APIs.
When to create an API and when not to
Its very important to remember when to create and when not to create an API. Let’s start with when to create an API…
You want to build a mobile app or desktop app someday
You want to use modern front-end frameworks like React or Angular
You have a data-heavy website that you need to run quickly and load data without a complete refresh
You want to access the same data in many different places or ways (eg: an internal dashboard and a customer-facing web app)
You want to allow customers or partners limited or complete access to your data
You want to upsell your customers on direct API access
Now, when not to create an API…
You just need a landing page or blog as a website
Your application is temporary and not intended to grow or change much
You never intend on expanding to other platforms (eg: mobile, desktop)
You don’t understand the technical implications of building one.
A short 30 second clip to understand it
instagram
Word of advice for newbies
Please don’t wait for people to spoon-feed you with every single resource and teachings because you’re on your own in your learning path. So be wise and learn yourself.
About Me
I am Ishraq Haider Chowdhury from Bangladesh, currently living in Bamberg, Germany. I am a fullstack developer mainly focusing on MERN Stack applications with JavaScript and TypeScript. I have been in this industry for about 9 years and still counting. If you want to find me, here are some of my social links....
Instagram
TikTok
YouTube
Facebook
Twitter
GitHub
179 notes · View notes
vpublicationsworld · 3 months
Text
Tumblr media
Attention, growth-hungry businesses! Is your online presence stuck in neutral while your competitors zoom past? V Publications is your turbo boost, propelling you to brand stardom with meticulous planning and timely action.
V Publications isn't just a marketing agency; we're your growth architects. We craft meticulous plans, execute with precision, and analyze with laser focus attention.
We tailor strategies that resonate with your unique brand voice and target audience.
Contact us for a free consultation and discover how we can tailor a growth strategy that's uniquely you! Let's make your brand the talk of the online town!
Mobile : 093914 44449
Website : https://vpublicationss.in
7 notes · View notes
pressplaytech · 5 months
Text
Is cPanel on Its Deathbed? A Tale of Technology, Profits, and a Slow-Moving Train Wreck
Ah, cPanel. The go-to control panel for many web hosting services since the dawn of, well, web hosting. Once the epitome of innovation, it’s now akin to a grizzled war veteran, limping along with a cane and wearing an “I Survived Y2K” t-shirt. So what went wrong? Let’s dive into this slow-moving technological telenovela, rife with corporate greed, security loopholes, and a legacy that may be hanging by a thread.
Chapter 1: A Brief, Glorious History (Or How cPanel Shot to Stardom)
Once upon a time, cPanel was the bee’s knees. Launched in 1996, this software was, for a while, the pinnacle of web management systems. It promised simplicity, reliability, and functionality. Oh, the golden years!
Chapter 2: The Tech Stack Tortoise
In the fast-paced world of technology, being stagnant is synonymous with being extinct. While newer tech stacks are integrating AI, machine learning, and all sorts of jazzy things, cPanel seems to be stuck in a time warp. Why? Because the tech stack is more outdated than a pair of bell-bottom trousers. No Docker, no Kubernetes, and don’t even get me started on the lack of robust API support.
Chapter 3: “The Corpulent Corporate”
In 2018, Oakley Capital, a private equity firm, acquired cPanel. For many, this was the beginning of the end. Pricing structures were jumbled, turning into a monetisation extravaganza. It’s like turning your grandma’s humble pie shop into a mass production line for rubbery, soulless pies. They’ve squeezed every ounce of profit from it, often at the expense of the end-users and smaller hosting companies.
Chapter 4: Security—or the Lack Thereof
Ah, the elephant in the room. cPanel has had its fair share of vulnerabilities. Whether it’s SQL injection flaws, privilege escalation, or simple, plain-text passwords (yes, you heard right), cPanel often appears in the headlines for all the wrong reasons. It’s like that dodgy uncle at family reunions who always manages to spill wine on the carpet; you know he’s going to mess up, yet somehow he’s always invited.
Chapter 5: The (Dis)loyal Subjects—The Hosting Companies
Remember those hosting companies that once swore by cPanel? Well, let’s just say some of them have been seen flirting with competitors at the bar. Newer, shinier control panels are coming to market, offering modern tech stacks and, gasp, lower prices! It’s like watching cPanel’s loyal subjects slowly turn their backs, one by one.
Chapter 6: The Alternatives—Not Just a Rebellion, but a Revolution
Plesk, Webmin, DirectAdmin, oh my! New players are rising, offering updated tech stacks, more customizable APIs, and—wait for it—better security protocols. They’re the Han Solos to cPanel’s Jabba the Hutt: faster, sleeker, and without the constant drooling.
Conclusion: The Twilight Years or a Second Wind?
The debate rages on. Is cPanel merely an ageing actor waiting for its swan song, or can it adapt and evolve, perhaps surprising us all? Either way, the story of cPanel serves as a cautionary tale: adapt or die. And for heaven’s sake, update your tech stack before it becomes a relic in a technology museum, right between floppy disks and dial-up modems.
This outline only scratches the surface, but it’s a start. If cPanel wants to avoid becoming the Betamax of web management systems, it better start evolving—stat. Cheers!
12 notes · View notes
why-tap · 1 year
Text
Tumblr media
Interested in Full stack developer? Click here
69 notes · View notes
csailorsrobin · 16 hours
Text
Do you want to Develop your Business? We are CSailors the best digital marketing agency. We will take you business into next level through social media marketing.
Please Contact us. Visit : www.csailors.com mail : [email protected] Call now : +8801977669848
Tumblr media
4 notes · View notes
avengingseo · 1 month
Text
From Tradition to Trends: Your Partner for Creative Digital Marketing in Jaipur
Tumblr media
In the heart of Rajasthan, Jaipur stands as a city that seamlessly blends tradition with modernity. With its rich cultural heritage and vibrant atmosphere, Jaipur offers a unique canvas for businesses to showcase their products and services. In this era of digital transformation, the transition from traditional marketing methods to contemporary digital strategies has become imperative. For businesses seeking to make their mark in the Pink City, creative digital marketing agency in Jaipur serves as the key to unlocking new opportunities and reaching a wider audience.
Embracing Digital Transformation in Jaipur
Jaipur, with its historical charm and modern infrastructure, has become a hub for various industries. From traditional crafts to tech startups, the city's business landscape is diverse and dynamic. To thrive in this competitive environment, businesses must adapt to the evolving preferences of their target audience. This is where creative digital marketing comes into play.
The shift towards digital marketing in Jaipur is not just a trend but a necessity. With the increasing internet penetration and the rise of smartphone usage, consumers are actively engaging with brands online. Traditional methods like print ads and local events, while still relevant, may not suffice in capturing the attention of the tech-savvy Jaipurites. Creative digital marketing acts as a bridge between tradition and trends, ensuring that your brand resonates with the roots of the city while embracing modern communication channels.
Crafting a Digital Identity
Establishing a strong digital presence is paramount in the digital age. Your brand's online identity is often the first point of contact with potential customers. A creative digital marketing strategy involves crafting a compelling narrative that reflects the essence of your brand while resonating with the digital-savvy audience in Jaipur.
From visually appealing social media campaigns to engaging website content, every aspect of your online presence should tell a story that captivates and converts. This narrative should be an ode to Jaipur's rich cultural heritage, seamlessly integrated with the contemporary lifestyle of its residents.
Leveraging Social Media for Jaipur's Dynamic Audience
Jaipur, like any other city, has a diverse population with varied interests and preferences. Social media platforms provide a dynamic space to engage with this audience. From Instagram's visual appeal to Facebook's community-driven atmosphere, understanding the nuances of each platform is crucial for a successful digital marketing strategy in Jaipur.
Creative content tailored to the local tastes and preferences can go a long way in establishing a meaningful connection with the audience. Whether it's showcasing the intricate details of traditional crafts or highlighting the buzzing food scene in Jaipur, social media platforms offer endless opportunities to showcase your brand's personality.
SEO Strategies for Local Visibility
In a city like Jaipur, where local businesses play a significant role, optimizing for local search is imperative. A robust SEO strategy tailored to the local context ensures that your business appears in relevant searches, driving foot traffic to your physical location or increasing online visibility.
Incorporating local keywords, creating location-specific content, and managing online reviews are essential components of a local SEO strategy. By aligning your digital marketing efforts with the specific needs and interests of the Jaipur audience, you can enhance your brand's discoverability and credibility.
Jaipur's Digital Landscape: A Canvas for Innovation
Jaipur's unique blend of tradition and modernity creates a fertile ground for innovative digital marketing campaigns. From interactive virtual tours of historical sites to AR-powered experiences that showcase traditional art in a contemporary light, the possibilities are endless.
Collaborating with local influencers and artisans can add an authentic touch to your digital campaigns, resonating with the community on a deeper level. By staying attuned to the pulse of Jaipur's digital landscape, businesses can continuously evolve their creative digital marketing strategies to stay ahead of the curve.
Conclusion
As Jaipur continues to evolve, businesses must embrace the power of creative digital marketing to connect with the city's diverse and dynamic audience. From weaving a compelling narrative that pays homage to tradition to leveraging cutting-edge technologies for innovative campaigns, the journey from tradition to trends is a transformative one.
In this digital era, the success of businesses in Jaipur hinges on their ability to seamlessly blend tradition with contemporary digital strategies. By partnering with a creative digital marketing agency in Jaipur that understands the nuances of Jaipur's market, businesses can embark on a journey that not only captures the essence of the Pink City but also propels their brand into the digital spotlight. Embrace the future with a nod to the past – let your brand's story unfold in the vibrant tapestry of Jaipur's digital landscape.
4 notes · View notes
brightnewsbeat · 2 months
Text
4 notes · View notes
myrtillus · 7 months
Text
Tumblr media
8 notes · View notes
rinkipaney · 2 months
Text
Tumblr media
"Unlock your business's full potential with a professional website. Elevate your online presence and reach a wider audience. Our expert team crafts visually stunning and functional websites tailored to your brand. Drive growth, connect with customers, and stay ahead in the digital era. Take the leap into the online marketplace – let your business thrive with a cutting-edge website." Call Us Now: 8085234234,9340526595 📨Email Address: [email protected] 🌐 Website: https://dmrinki.in/
4 notes · View notes
davidfjones9999 · 1 year
Text
3 types of Web designing
There are many various types of web designing when it comes to the creation of websites. All of them have special qualities and advantages that a company or person can use to increase their online presence. Here are a few different web designing styles to assist you choose the one that would work best for your company.
Static web designing
A static design is ideal when you only require a few pages on your site and don't need the data to update. A static website's information remains constant over time and does not alter. Created using HTML, CSS, and Javascript, static webpages.
2) Dynamic web designing or CMS
The design of a dynamic website can convey dynamic facts. This suggests relying on changes taking place because the site's data are updated automatically based on a few factors. A content management system (CMS), such as WordPress, Joomla, and others, was used to create its design.
3) E-commerce web designing
You require an eCommerce website or e-store if you run a business that involves sales. A good ecommerce platform encourages you to manage the technical aspects of your website. You can design your e-commerce website on various platforms such as Opencart, Woocommerce, Zencart, Magento, OsCommerce.
If you want to learn web designing through a very interactive, visual process, you can always hope on to aspirecoding.ca
44 notes · View notes
linuxtldr · 1 year
Text
Tumblr media
Throwback 2022 🤣
39 notes · View notes
codewithishraq · 2 years
Text
Null Stack to Full Stack
OVERVIEW
Full stack technology refers to the entire depth of a computer system application, and full stack developers straddle two separate web development domains: the front end and the back end.
The front end includes everything that a client, or site viewer, can see and interact with. By contrast, the back end refers to all the servers, databases, and other internal architecture that drives the application; usually, the end-user never interacts with this realm directly. 
The easiest way to put the full stack into perspective is to imagine a restaurant. The front end encompasses the well-decorated, comfortable seating areas where visitors enjoy their food. The kitchen and pantry make up the “back end” and are typically hidden away from the customer’s view. Chefs (developers) gather permanently stored materials from the pantry (the database) and perform operations on it in the kitchen (the server), and then serve up fully-prepared meals (information) to the user. 
ADVANTAGES OF LEARNING FULLSTACK DEVELOPMENT
You can master all the techniques involved in a development project
You can make a prototype very rapidly
You can provide help to all the team members
You can reduce the cost of the project
You can reduce the time used for team communication
You can switch between front and back end development based on requirements
You can better understand all aspects of new and upcoming technologies
SKILLS NEEDED
In this case, you might find various things in the internet. They all might vary. But I am keeping things simple. Among the things I am going to share, you need to focus on one stack instead of all of them. So, here are some of the skills needed to be a fullstack developer.
Front-end programming technologies: HTML, CSS, JavaScript, Angular, ReactJS, Bootstrap, jQuery, SASS, Tailwind etc.
Back-end programming technologies:Python, NodeJS, Django, Express etc.
Database: PostgreSQL, MongoDB, MySQL, etc. 
Version Control System: git, GitHub, GitLab, etc
HTTPS and REQUEST Methods (GET, POST, PUT, DELETE, OPTIONS)
Now, it iis important to understand that, the basics are same for all stacks but then the technologies vary. For example the frontend can be built with either React, Angular or Vue or any other framework/library. On the other hand, the backend can be built with either of Node.js, Django (Python) or Spring Boot (Java) or any other framework. I will go to that in the coming lines.
ROADMAP / PLAN FOR THE FIRST SIX MONTHS
About this, there might be multiple other roadmaps that you can follow on your path to become a fullstack developer. I came up with the idea that this path, that I am about to share, can be a planned start to your journey with all the content structured at the right time. So, let's see the plan for the first six months.
🔵 Month 1: HTML, CSS, Javascript
The basic skills required to create a website in HTML and CSS. Javascript adds functionalities to a website and makes the project responsive. HTML is for structure and CSS for Styling. DOM Manipulation and Responsive Web Design are important to practice. Learn about these from W3Schools.
🔵 Month 2: Web Design and Frameworks, Git, HTTPs
Work on Open Source Projects. Once you have good practice with HTML and CSS you can use frameworks like Bootstrap or Material CSS which makes it easy to create websites. Alongside that, it is very important to learn about version control systems (preferrably git) so that you can save and manage your code at GitHub, GitLab, BitBucket or any other similar tool. Also, it is important to learn about HTTPS and REQUEST METHODS (GET, POST, PUT, DELETE and OPTIONS).
🔵 Month 3: Javascript Programming Language
The most important skill and most asked in Interviews and Job portals for Web Development are Javascript. You can expect a lot of interview questions from Javascript, So it's important to learn how javascript works, data structures, and asynchronous javascript.
🔵 Month 4 & 5: Frontend and Backend
Once you are thorough with the above concepts then you can take your skills to the next level by learning Javascript frameworks/libraries like React and Node JS. Point to be noted, I am a big fan of MERN (Mongo, Express, React, Node) stack, so I am always talking about React and Node. But there are other options as well.
Other options:
Frontend: Angular, Vue or any other frontend technology
Backend: Django, Flask, Spring Boot, ASP.Net or any other backend technology
Please do some research in google about the 'FULLSTACK TECH STACKS' and choose the one that you are the most comfortable with. Just a reminder, if you want to be a Java Fullstack Developer, then you need to have Java knowledge before stepping on to learning Fullstack development. Same case goes for Python, C# or any other technologies.
Most importantly, when you start learning a new technology, please start by learning from the official documentation of each individual technology. Then maybe go for other resources from the internet.
🔵 Month 6: Database and Projects
In the final month, create a portfolio and create projects using frontend and backend technologies you’ve learnt. Also, an important skill to have is knowledge of Database Management Systems like PostgreSQL, MySQL and MongoDB. Also, you need to understand how to connect the Database to Server using the backend Framework.
LEARNING RESOURCES OF FULLSTACK DEVELOPMENT
In the internet today, you can find various courses and tutorials on Fullstack development. But I know for sure that Freecodecamp website as well as YouTube channel covers all stack, so you can easily learn from them. On the other hand, there is The Odin Project. You can learn about JavaScript Fullstack Developer or Ruby on Rails Fullstack Developer. Here are the links to them.
Freecodecamp Website
Freecodecamp YouTube Channel
The Odin Project
Of course, as I said, you can look for courses in other websites as well. Here are some of the best platforms to look for courses.
Codecademy
Coursera
EdX
PROJECT IDEAS
Here are some projects that you can try when you are learning or after you have gone through all the things needed.
E-commerce website
Food delivery app
Social media app
Chat messaging app
Content management system
Project management app
Gym Tracking System
Real-time Chat App
Bug Report App
Hotel Booking App
Staff Management System
Online Store
INTERVIEW PREPS AND RESOURCES
Remember that a fullstack developer job is a vast space and thus there are many things that you need to keep focus on to ace the interviews. Here are some points where you need to take special care of for the interviews.
Javascript Programming Language and Data Structures
CSS Concepts like Flexbox, Grid, Inheritance, Specificity, etc.
React JS and new features e.g: Context API and Hooks
REST API’s and SQL and DBMS
HTTPS, Requests, Response, Servers.
Of course there are more things to focus as well, so research about the most important topics from the internet and then take special care in preparing for those questions.
Here are a few links to resources which will help you preparing for the interviews.
Coding Interview University
Interview Cake
Interview Bit
Tech Interview Handbook
Fullstack Cafe
Word of advice for newbies
Please don’t wait for people to spoon-feed you with every single resource and teachings because you’re on your own in your learning path. So be wise and learn yourself.
About Me
I am Ishraq Haider Chowdhury from Bangladesh, currently living in Bamberg, Germany. I am a fullstack developer mainly focusing on MERN Stack applications with JavaScript and TypeScript. I have been in this industry for about 9 years and still counting. If you want to find me, here are some of my social links....
Instagram
TikTok
YouTube
Facebook
Twitter
GitHub
71 notes · View notes
openprogrammer · 1 year
Photo
Tumblr media
technique of the day Ternary operator Javascript #javascript #html #programming #css #coding #java #python #developer #programmer #webdeveloper #webdevelopment #code #coder #php #webdesign #software #softwaredeveloper #computerscience #codinglife #reactjs #technology #frontend #development #programmers #js #web #softwareengineer #programmingmemes #linux #javascriptdeveloper https://www.instagram.com/p/Cn3_ZP7PMwI/?igshid=NGJjMDIxMWI=
27 notes · View notes
niraltech · 10 days
Text
Web Development Service
🤩"Innovative Web Solutions for the Digital Age: 😍Choose Our Agency"💭Imagine a web page so gorgeous, it's like a 🤔dreamy tropical vacation for your eyes. And guess what? This beauty doesn't discriminate based on screen size.😇 With responsive web design, it's like having a loyal sidekick 😎that adapts to any device like a pro⚡. No more🤏 pinching, zooming, or awkward scrolling😎. It's like having a personal genie👉 that makes all your web design wishes come true! 🤙Reach us now Your Dreams 💭comes true in🤩 NiralTech - Contact Number - 09940250148
Tumblr media
3 notes · View notes