#News Script PHP
Explore tagged Tumblr posts
Text
1 note
·
View note
Text
Tuesday, November 28th, 2023
🌟 New
We’ve created a guide to writing a PHP script to access Tumblr, with an example of creating a way to list your mutuals and sort your followed blogs by last posting time. Check it out here.
The flow for Blazing a post on Android has been redesigned to be easier to use.
On web, using an old keyboard shortcut (ALT+C, ALT+R, or ALT+Q) no longer triggers a notification about what the new shortcut is. As a final reminder, the shortcut to create a new post is now just C, while the shortcuts to instantly reblog or queue the post in view are SHIFT+R and SHIFT+Q, respectively.
🛠 Fixed
Dashboard feeds and blogs weren’t showing posts for a little while earlier today, but we’ve fixed the issue. Reach out to Support if you’re still experiencing any trouble.
On web, we fixed an issue where the Explore page would not reload properly after logging in.
On web, we’ve fixed the timestamps on instant messages so that “Today” actually means “Today”, and not “under 24 hours ago”. Alternate description: The timestamps on instant messages no longer perform time travel.
🚧 Ongoing
The iOS app is crashing for some folks (specifically those using older devices). We’ve fixed the issue in an app update, which is currently under review. It’ll be released as soon as we get the green light from Apple.
🌱 Upcoming
Nothing to share here today.
Experiencing an issue? File a Support Request and we’ll get back to you as soon as we can!
Want to share your feedback about something? Check out our Work in Progress blog and start a discussion with the community.
Wanna support Tumblr directly with some money? Check out the new Supporter badge in TumblrMart!
411 notes
·
View notes
Text
I currently have my latest blogpost for my website displayed on my front page. If you click on the title, it will take you to the post. I essentially grab the Title, which is a class of h1, and the article, using javascript, and then replace it. However, right now, this is done by manually replacing the href of the javascript. This works; I just create a post, copy the link, and paste it into the script in my home page.
Problem; I am already maintaining my rss feed manually. Why should I do *this* manually? I kind of want to not do either manually.
Solution: Javascript can be used to parse a xml doc. This includes rss feeds. I can simply make a script that, when you load up the webpage, it will request the most recent version of the .xml file associated with my file, then find the one with the most recent pubDate, it will then grab the link from that, and use my existing script to display it on my homepage.
As for updating my rss feed? I may need to create a php script for that. I just need two forms, and a submit button. One will take a link, and the other would be the password. So, I create a new blogpost, upload it, and then copy the link into the form. The password field will be used to create a cryptographic hash, and if it matches the provided one, then it will create a timestamp, and add the item, complete with links, to the html file. I could add in a hidden description to the blogpost, and the script can rip the description from there. Its pretty simple, and I wouldn't trust this authentication process... except that it is extremely limited in scope. All it does is accept a link already part of my blog, and updates an xml document - one I regularly back-up.
I also want to make a script that would get the previous and next posts on the blog, based on the info already in the xml document, rather than manually updating the existing blogposts. It doesn't take long, but it would be one less thing I have to worry about. I just have to match the current link to one in the xml file, get the timestamp, and find the item with the previous and next timestamp, then inject the links into the previous/next buttons. I can use a span element that will be updated to show up once a new document is found by the script.
If I was making one that actually allowed you to write a blogpost - complete with html - then I would want better security - like some form of 2 factor authentication. My authentication script would work. I would also want it limited to posting based on the time (like 1 post per x minutes). I may actually do that later. It would be nice to just go to my site, use my passkey+password authenticator, and then just post to my blog. It would have a form for the title, short description, and the main post. Then, it takes that info, and essentially pastes it into a provided template.
I could also make a similar system for the site-updates and little blurb on the top. Currently, I just edit the html for that. But I could also make an xml document, and just have the posts contained in items like an rss feed, then have the javascript read from there. Use a php script to add new entries to it. They could even be in the same file, just have to use two different elements.
Finally, on the main page, you can click on the title of the blog post to link there. This is done via script, so there is no mouseover indication that you can do this. I want to make the title element change a bit when you mouseover it - perhaps make it a little paler on mouseover?
9 notes
·
View notes
Text
webdev log uhhhh... 6?
Haven't worked on my site in a bit because I think I fucked up somewhere in during the deployment phase so now it's hard to host it locally.... only the index page works and the css is half broken anyways, presumably because of laravel breeze's tailwind coming preinstalled. I DID have to jump through hoops to get it going during deployment.. just don't know which hoops so it's stuck that way >_>;; so now I can't host it locally for development......... I'll have to make things and just hope it shows up when I deploy them I think
Failed to listen on 127.0.0.1:8000 (reason: ?)
cool, cool. thanks. very helpful debugging message..
anyways, coded up a little php doohicky and updated my site! WANNA PEEK?
I wanted to migrate my fridge page (art others have done of my characters) to my site, but I didn't want to implement another table because YUCK I'm so done with that.
I wanted something more automatic because I'm lazy and I also wanted it to not look like it's from 2003 like my neocities to match with my new site. too much trouble!!!! including the stuff previously mentioned.. so I left it untouched for a while.
then I was talking with someone and wanted to try making this with php.....
it's pretty basic. finished the code for the script in like an hour maybe, and then later it was mostly just tinkering with the html/css itself to make it display all nice and grid-like.
all it does is take all images from a specified folder and spits them out.
it creates a DirectoryIterator object to iterate through the specified folder (at least, I think that's how DirectoryIterator works.... dunno) then for each individual file it checks if it's an image, gets the time the file was modified, then stores the file path and modified time in an array. then that array gets sorted via modified time (newest first), and then iterated through and BAM...
I'd prefer a better time system such as organize when the file was actually created, but if you paste a file into a new folder, "created time" gets changed to when you pasted it.. using file modified time is the only way when you aren't using a database and just want this to be all done automatically I think. unless I'M STUPID and someone has a better idea.. then please enlighten me.
ANYWAYS added The Fridge to my site using my lil code! :>
updated my About to include a link too...
also, I was looking up things and found this funny example code on stack overflow
let's all randomize our racism images.....
6 notes
·
View notes
Text
The Evolution of PHP: Shaping the Web Development Landscape
In the dynamic world of web development, PHP has emerged as a true cornerstone, shaping the digital landscape over the years. As an open-source, server-side scripting language, PHP has played a pivotal role in enabling developers to create interactive and dynamic websites. Let's take a journey through time to explore how PHP has left an indelible mark on web development.
1. The Birth of PHP (1994)
PHP (Hypertext Preprocessor) came into being in 1994, thanks to Rasmus Lerdorf. Initially, it was a simple set of Common Gateway Interface (CGI) binaries used for tracking visits to his online resume. However, Lerdorf soon recognized its potential for web development, and PHP evolved into a full-fledged scripting language.
2. PHP's Role in the Dynamic Web (Late '90s to Early 2000s)
In the late '90s and early 2000s, PHP began to gain prominence due to its ability to generate dynamic web content. Unlike static HTML, PHP allowed developers to create web pages that could interact with databases, process forms, and provide personalized content to users. This shift towards dynamic websites revolutionized the web development landscape.
3. The Rise of PHP Frameworks (2000s)
As PHP continued to grow in popularity, developers sought ways to streamline and standardize their development processes. This led to the emergence of PHP frameworks like Laravel, Symfony, and CodeIgniter. These frameworks provided structured, reusable code and a wide range of pre-built functionalities, significantly accelerating the development of web applications.
4. PHP and Content Management Systems (CMS) (Early 2000s)
Content Management Systems, such as WordPress, Joomla, and Drupal, rely heavily on PHP. These systems allow users to create and manage websites with ease. PHP's flexibility and extensibility make it the backbone of numerous plugins, themes, and customization options for CMS platforms.
5. E-Commerce and PHP (2000s to Present)
PHP has played a pivotal role in the growth of e-commerce. Platforms like Magento, WooCommerce (built on top of WordPress), and OpenCart are powered by PHP. These platforms provide robust solutions for online retailers, allowing them to create and manage online stores efficiently.
6. PHP's Contribution to Server-Side Scripting (Throughout)
PHP is renowned for its server-side scripting capabilities. It allows web servers to process requests and deliver dynamic content to users' browsers. This server-side scripting is essential for applications that require user authentication, data processing, and real-time interactions.
7. PHP's Ongoing Evolution (Throughout)
PHP has not rested on its laurels. It continues to evolve with each new version, introducing enhanced features, better performance, and improved security. PHP 7, for instance, brought significant speed improvements and reduced memory consumption, making it more efficient and appealing to developers.
8. PHP in the Modern Web (Present)
Today, PHP remains a key player in the web development landscape. It is the foundation of countless websites, applications, and systems. From popular social media platforms to e-commerce giants, PHP continues to power a significant portion of the internet.
9. The PHP Community (Throughout)
One of PHP's strengths is its vibrant and active community. Developers worldwide contribute to its growth by creating libraries, extensions, and documentation. The PHP community fosters knowledge sharing, making it easier for developers to learn and improve their skills.
10. The Future of PHP (Ongoing)
As web technologies continue to evolve, PHP adapts to meet new challenges. Its role in serverless computing, microservices architecture, and cloud-native applications is steadily increasing. The future holds exciting possibilities for PHP in the ever-evolving web development landscape.
In conclusion, PHP's historical journey is interwoven with the evolution of web development itself. From its humble beginnings to its current status as a web development powerhouse, PHP has not only shaped but also continues to influence the internet as we know it. Its versatility, community support, and ongoing evolution ensure that PHP will remain a vital force in web development for years to come.
youtube
#PHP#WebDevelopment#WebDev#Programming#ServerSide#ScriptingLanguage#PHPFrameworks#CMS#ECommerce#WebApplications#PHPCommunity#OpenSource#Technology#Evolution#DigitalLandscape#WebTech#Coding#Youtube
30 notes
·
View notes
Text
PHP Update to 8.1, Site Down
Hi, everyone!
If you tried visiting any of the devlogs, you may have noticed that the site is down currently. This is due to some expected changes!
My hosting provider recently gave me the notification that I needed to update the website from PHP 7.4 to 8.1+, or I would be charged additional each month for older version support. So, to avoid this unneeded charge, I updated the PHP version, hoping there wouldn't be too many compatibility issues.
Unfortunately, that obviously wasn't the case, haha! The entire site is broken. Nothing has been too challenging to fix - it's only been some particular PHP functions that are no longer available (which I used heavily...).
However, this has been time-consuming to go through, fix, and test. I have to go through every page and update almost every single database query - over 40 pages - which is almost 9,000 lines of code to go through at the moment.
Just know that I am working on this presently, and the site should be good as new soon enough! I've already fixed 11 pages that were essential to being able to navigate other parts of the site (login page, page header, utility scripts, etc.). I will try to fix the forums before other non-essential pages, so you all can view the devlogs without issue (and I can post an update there, as well)!
Please avoid the site for the time being, you may see some crazy PHP errors, haha. I'll make an update as soon as the forums are back up, and then another when the entire site is restored. As always, thank you for your patience, it is deeply appreciated!
3 notes
·
View notes
Text
Best IT Courses In Bhubaneswar:- seeree services pvt ltd.
Introduction:- seeree is one of the best IT training institute and Software industry, features completely Industrial training on Python , PHP , .NET , C Programming,Java , IOT , AI , GD PI , ORACLE and ALL CERTIFICATION COURSES as well as provides seminar,cultural activity and jobs
Courses we provided:- 1) Java Fullstack 2) Python Fullstack 3) PHP Fullstack 4) Preplacement Training & Sp. Eng 5) .NET Fulstack 6) SEO/Digital Marketing 7) SAP 8) MERN 9) Software Testing 10)Data Analyst 11)Data Science 12)Data Engineering 13)PGDCA 14)Tally 15)Graphics Design
Course1:- Java Fullstack

A Class in Java is where we teach objects how to behave. Education at seeree means way to success. The way of teaching by corporate trainers will bloom your career. We have the best java training classes in Bhubaneswar. 100% Placement Support. Job Support Post Training. This course will give you a firm foundation in Java, commonly used programming language. Java technology is wide used currently. Java is a programming language and it is a platform. Hardware or software environment in which a program runs, known as a platform. Since Java has its own Runtime Environment (JRE) and API, it is called platform. Java programming language is designed to meet the challenges of application development in the context of heterogeneous, network-wide distributed environment. Java is an object-oriented programming (OOP) language that uses many common elements from other OOP languages, such as C++. Java is a complete platform for software development. Java is suitable for enterprise large scale applications.]
Course2:- Python Fullstack

Seeree offers best python course in Bhubaneswar with 100% job assurance and low fee. Learn from real time corporate trainers and experienced faculties. Groom your personality with our faculty. Seeree helps to build confidence in students to give exposure to their skills to the company.
Python is dynamically typed , compiled and interpreted , procedural and object oriented , generalized , general-purpose , platform independent programming language. Python is a high-level, structured, open-source programming language that can be used for a wide variety of programming tasks.
Course3:- PHP Fullstack

seeree is the best training institute which provide PHP Training courses in bhubaneswar and all over odisha We aim the students to learn and grow altogether with the need of IT firms.
PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages. PHP is a widely-used, free, and efficient alternative to competitors such as Microsoft's ASP.
Course4:- Preplacement Training & Sp. Eng

Welcome to SEEREE Institute, where excellence meets opportunity. At SEEREE, we are dedicated to providing a transformative learning experience that empowers students to achieve their goals and contribute to a brighter future.
Our institute offers cutting-edge courses designed to meet the needs of the ever-evolving global landscape. With a team of highly qualified instructors and state-of-the-art facilities, we ensure a supportive and inspiring environment for learning and growth.
Whether you're here to develop new skills, explore innovative fields, or pursue personal and professional success, SEEREE Institute is the perfect place to begin your journey. Thank you for choosing us, and we look forward to being a part of your success story.
Course5:- .NET Fullstack

Seeree offers best .NET course in Bhubaneswar with 100% job assurance and low fee. Learn from real time corporate trainers and experienced faculties. Groom your personality with our faculty. Seeree helps to build confidence in students to give exposure to their skills to the company.
Course6:- SEO/Digital Marketing

In today's fast-paced digital world, businesses thrive on visibility, engagement, and strategic online presence. At SEEREE, we empower you with the skills and knowledge to master the art of Search Engine Optimization (SEO) and Digital Marketing.
Our comprehensive program is designed for beginners and professionals alike, covering everything from keyword research, on-page and off-page SEO, and content marketing, to social media strategies, PPC campaigns, and analytics.
With hands-on training, real-world projects, and guidance from industry experts, we ensure you're equipped to drive measurable results and excel in this dynamic field.
Join us at SEEREE Institute and take the first step towards becoming a leader in the digital marketing landscape!"
Course7:- SAP

SAP refers to Systems, Applications, and Products in Data Processing. Some of the most common subjects covered in these courses include human resource software administration, database management, and business training. Obtaining SAP certification can be done on a stand-alone basis or as part of a degree program.
Course8:- MERN

Seeree offers the best MERN course in Bhubaneswar with 100% job assurance and low fees. Learn from real-time corporate trainers and experienced faculty. Seeree helps students build confidence and gain skills to excel in company roles.
Are you ready to step into the exciting world of web development? At SEEREE, we bring you a comprehensive MERN Stack course that equips you with the skills to build modern, dynamic, and responsive web applications from start to finish.
The MERN Stack—comprising MongoDB, Express.js, React.js, and Node.js—is one of the most sought-after technologies in the web development industry. Our program is designed to help you master each component of the stack, from creating robust backends and managing databases to crafting dynamic frontends and seamless APIs.
Course9:- Software Testing

Seeree offers best Testing course in Bhubaneswar with 100% job assurance and low fee. Learn from real time corporate trainers and experienced faculties. Groom your personality with our faculty. Seeree helps to build confidence in students to give exposure to their skills to the company.
In the fast-paced world of software development, ensuring the quality and reliability of applications is crucial. At SEEREE, we offer a comprehensive Software Testing course designed to equip you with the skills and techniques needed to excel in this essential field.
Our program covers all aspects of software testing, from manual testing fundamentals to advanced automation tools and frameworks like Selenium, JIRA, and TestNG. You’ll learn to identify bugs, write test cases, execute test scripts, and ensure software meets high-quality standards.
With hands-on training, real-world scenarios, and guidance from experienced industry professionals, you’ll be prepared to take on roles like Quality Assurance Engineer, Test Analyst, and Automation Tester.
Join SEEREE Institute and gain the expertise to become a key player in delivering flawless software solutions. Your journey to a rewarding career in software testing starts here!"
Course10:- Data Analyst

Seeree offers the best Data Analyst course in Bhubaneswar with 100% job assurance and affordable fees. Our comprehensive curriculum is designed to cover all aspects of data analysis, from data collection and cleaning to advanced data visualization techniques. Learn from real-time corporate trainers and experienced faculty members who bring industry insights into the classroom. Enhance your analytical skills and boost your career prospects with hands-on projects and real-world case studies. Our faculty also focuses on grooming your personality and soft skills, ensuring you are well-prepared for interviews and workplace environments. Seeree is dedicated to building confidence in students, providing them with the necessary exposure to showcase their skills to top companies in the industry.
Course11:- Data Science

Seeree offers the best Data Science course in Bhubaneswar with 100% job assurance and affordable fees. Our comprehensive curriculum is designed to cover all aspects of data science, from data collection and cleaning to advanced data visualization techniques. Learn from real-time corporate trainers and experienced faculty members who bring industry insights into the classroom. Enhance your analytical skills and boost your career prospects with hands-on projects and real-world case studies. Our faculty also focuses on grooming your personality and soft skills, ensuring you are well-prepared for interviews and workplace environments. Seeree is dedicated to building confidence in students, providing them with the necessary exposure to showcase their skills to top companies in the industry.
Course12:- Data Engineering

In the era of big data, the ability to design, build, and manage scalable data infrastructure is one of the most in-demand skills in the tech industry. At SEEREE, we are proud to offer a comprehensive Data Engineering course that prepares you for a career at the forefront of data-driven innovation.
Our program covers essential topics such as data modeling, ETL processes, data warehousing, cloud platforms, and tools like Apache Spark, Kafka, and Hadoop. You’ll learn how to collect, organize, and transform raw data into actionable insights, enabling businesses to make smarter decisions.
With real-world projects, expert mentorship, and hands-on experience with the latest technologies, we ensure that you are industry-ready. Whether you’re starting fresh or upskilling, this program will empower you to unlock opportunities in the rapidly growing field of data engineering.
Join SEEREE Institute and take the first step toward building the data pipelines that power tomorrow’s technology!"
Course13:- PGDCA

Seeree offers the best MERN course in Bhubaneswar with 100% job assurance and low fees. Learn from real-time corporate trainers and experienced faculty. Seeree helps students build confidence and gain skills to excel in company roles.
In today’s digital age, computer applications are at the heart of every industry, driving innovation and efficiency. At SEEREE Institute, our Post Graduate Diploma in Computer Applications (PGDCA) program is designed to provide you with in-depth knowledge and hands-on skills to excel in the IT world.
This program offers a comprehensive curriculum covering programming languages, database management, web development, software engineering, networking, and more. Whether you aim to enhance your technical expertise or step into a rewarding career in IT, PGDCA at SEEREE equips you with the tools to succeed.
With expert faculty, state-of-the-art labs, and real-world projects, we ensure that you gain practical experience and a strong theoretical foundation. By the end of the program, you’ll be prepared for roles such as software developer, system analyst, IT manager, or database administrator.
Course14:- Tally

Seeree offers the best Tally course in Bhubaneswar with 100% job assurance and low fees. Learn from real-time corporate trainers and experienced faculty. Seeree helps students build confidence and gain skills to excel in company roles.
In today’s business world, efficient financial management is key to success, and Tally is one of the most trusted tools for accounting and financial operations. At SEEREE Institute, we offer a comprehensive Tally course designed to equip you with the skills needed to manage business finances effortlessly.
Our program covers everything from the basics of accounting and bookkeeping to advanced features like GST compliance, inventory management, payroll processing, and generating financial reports. With hands-on training and real-world applications, you’ll gain practical expertise in using Tally effectively for businesses of any scale.
Whether you're a student, a professional, or a business owner, our Tally program is tailored to meet your needs and enhance your career prospects in the fields of accounting and finance.
Course15:- Graphics Design

In the world of creativity and communication, graphic design plays a vital role in bringing ideas to life. At SEEREE Institute, our Graphic Design course is tailored to help you unlock your creative potential and master the art of visual storytelling.
Our program covers a wide range of topics, including design principles, color theory, typography, branding, and user interface design. You’ll gain hands-on experience with industry-standard tools like Adobe Photoshop, Illustrator, and InDesign, enabling you to create stunning visuals for print, digital media, and beyond.
Whether you're an aspiring designer or a professional looking to sharpen your skills, our expert trainers and real-world projects will provide you with the knowledge and confidence to excel in this competitive field.
Join SEEREE Institute and start your journey toward becoming a skilled graphic designer. Let’s design your future together!"
2 notes
·
View notes
Text
This day in history
I'm coming to DEFCON! On Aug 9, I'm emceeing the EFF POKER TOURNAMENT (noon at the Horseshoe Poker Room), and appearing on the BRICKED AND ABANDONED panel (5PM, LVCC - L1 - HW1–11–01). On Aug 10, I'm giving a keynote called "DISENSHITTIFY OR DIE! How hackers can seize the means of computation and build a new, good internet that is hardened against our asshole bosses' insatiable horniness for enshittification" (noon, LVCC - L1 - HW1–11–01).
#20yrsago EFF suing on JibJab’s behalf for “This Land is Your Land” parody https://web.archive.org/web/20040803063125/http://www.corante.com/copyfight/archives/005452.html
#5yrsago Man donates mother’s body to science, discovers it was sold to the military for “blast testing” https://web.archive.org/web/20190801175813/https://www.nydailynews.com/news/national/ny-arizona-man-moms-body-sold-military-blast-testing-20190801-pwqfc4mfvzfnjf7tocr6pkrbja-story.html
#5yrsago Paul Di Filippo on Radicalized: “Upton-Sinclairish muckraking, and Dickensian-Hugonian ashcan realism” https://locusmag.com/2019/08/paul-di-filippo-reviews-radicalized-by-cory-doctorow/
#5yrsago Open archive of 240,000 hours’ worth of talk radio, including 2.8 billion words of machine-transcription https://arxiv.org/pdf/1907.07073
#5yrsago Triple Chaser: a short documentary that uses machine learning to document tear gas use against civilians, calling out “philanthropist” Warren Kanders for his company’s war-crimes https://memex.craphound.com/2019/08/01/triple-chaser-a-short-documentary-that-uses-machine-learning-to-document-tear-gas-use-against-civilians-calling-out-philanthropist-warren-kanders-for-his-companys-war-crimes/
#5yrsago Data-mining reveals that 80% of books published 1924-63 never had their copyrights renewed and are now in the public domain https://www.crummy.com/2019/07/22/0
#5yrsago Amazon’s secret deals with cops gave corporate PR a veto over everything the cops said about their products https://gizmodo.com/everything-cops-say-about-amazons-ring-is-scripted-or-a-1836812538
#5yrsago Your massive surprise hospital bills are making bank for private equity https://www.nakedcapitalism.com/2019/08/private-equity-the-perps-behind-destructive-hospital-surprise-billing.html
#5yrsato Cisco’s failure to heed whistleblower’s warning about security defects in video surveillance software costs the company $8.6m in fines https://web.archive.org/web/20190801022718/https://www.sfgate.com/news/article/Cisco-to-pay-8-6-million-fine-for-selling-14271226.php
#5yrsago Teenaged girl becomes a resistance symbol for her peaceful reading of the Russian constitution to a Putin goon-squad (they beat her up later) https://www.independent.co.uk/news/world/europe/olga-misik-russia-protests-constitution-moscow-riot-police-putin-a9029816.html
Support me this summer on the Clarion Write-A-Thon and help raise money for the Clarion Science Fiction and Fantasy Writers' Workshop!
3 notes
·
View notes
Text
TPJet Desktop Application
TPJet (TPJet.com) is an innovative desktop application tailored for WordPress customization, designed to cater to the diverse needs of developers and designers. This comprehensive solution offers a wide range of tools to modify all aspects of WordPress Themes and Plugins, including texts, names, values, colors, scripts, images, and database elements. With its intuitive interface, users can effortlessly edit, develop, and create various derivatives to produce brand-new products by altering the base files of WordPress themes and plugins, all without the need for extensive coding skills.
Moreover, beyond theme and plugin customization, TPJet also provides assistant tools for source code development and facilitates the updating or altering of MySQL database data and structures. The application empowers users to define new file types, extending functionality and ensuring compatibility with other PHP-based CMS or projects, in addition to WordPress. This expandable functionality makes TPJet a versatile and powerful tool for WordPress professionals seeking to streamline and enhance their development processes.
3 notes
·
View notes
Text
A friend of mine asked me recently to detail my Linux setup, and after thinking about it for a bit, I realized that this is essentially a personality quiz for the Linux users I thought I would detail it here as well.
I no longer have a desktop computer at all. I have two older generation "gaming" laptops and three Raspberry Pis. I'm going to go through in the order I got them:
Laptop #1:
[Purchased New in 2016] Acer ROG 7th Gen i7, 16GB Ram, nVidia 1050Ti Mobile, Internal 1TB HDD, external 2TB HDD
This was originally a windows laptop when I got it back in 2016, but in 2021 I was tired of the long windows boot times on the the HDD and was much more familiar with Linux due to several years experience doing webserver admin work.
I use Ubuntu LTS as my base. It's easy, it's well supported, it's well documented, and the official repos have just about everything I could need. The only thing I've really had to add myself is the repo for i3, but we'll get to that in a bit. I also chose Ubuntu because I already had my first two Raspberry pis, and both were running Raspbian, so using a debian based kernal meant that it wouldn't be much of a change when ssh'ing into them.
That said, I've never really liked the default Ubuntu desktop. Gnome3 is slow and full of too many effects that don't look especially nice but are still heavy to execute. Instead I loaded up KDE plasma. You can download Kubuntu and have them to the setup for you, but I did it the hard way because I found out about Plasma after installing Ubuntu and didn't want to start from scratch.
My plasma desktop looks like this:
Of my two laptops, this one is in the best shape. It's the one that I usually take with me on trips. With the dedicated GPU it can do some light gaming (it did heavier gaming on windows, but due to emulation layers the performance is just a little worse these days, Linux gaming isn't perfect), the screen hinge has never been an issue, and it's on the lighter side of gaming laptops (which is not to say that it's light). For that reason, I often find myself actually using it on my lap, in airports, at people's houses, on my own couch typing this up.
For this reason, I started looking into ways to better keep my hands on the keyboard, rather than having to drift down to the track pad, which is my least favorite part of this laptop. During that research I discovered i3. If you're not familiar i3 is a Linux Desktop Environment that is entirely keyboard driven. https://i3wm.org/
To be fair, it's less of a desktop environment and more of a keyboard driven window manager, as it doesn't have a "desktop" per se. Instead when you log into it, you simply get a black status bar at the bottom of the screen. It doesn't even black out the login screen, so if you don't know what to look for, you might think the whole thing has hung. But, the big benefit of this is that the whole thing is lighting fast for a DE. It doesn't waste any resources on effects or really anything that you don't need. But it's really nice for window tiling and task switching without having to get the mouse involved. This is great for productivity (if you're into that), but it's also just convenient for working on a gaming laptop, which might be balanced such that if you take your hands off of it, it might topple off your lap.
This laptop is my primary project computer. It has all my git repos and scripts for doing things like renewing my website's ssl certs. I also run game servers on it for Minecraft. I'm probably going to spin up a Valheim server on it in the near future too. Especially now that the process has improved somewhat.
Raspberry Pi #1:
[Gifted New in 2016] Raspberry Pi 3b, 4GB RAM, 32GB SD card
This one is my oldest RPi. It's had a lot of roles through the years, including an early version of the vogon media server during initial development in 2020. It's run headless Raspbian for a good three or four years now. Currently it's configured as a web server/php scripted web crawler and a pi-hole DNS server. My router currently refuses to use it as a DNS server without bringing the whole network down, but I will on occasion manually switch devices to it when I'm running especially ad-ridden applications.
There's not too much to say about this one. It's stable, I almost never have problems with it. I frequently use it for things that I want running in the background because they'll take too long and I don't want them blocking up one of my other computers.
Laptop #2
[Gifted Used in 2020] Asus Predator 7th Gen i7, 16GB Ram, nVidia 1080 Mobile, 2 internal 256GB SSDs, External 2TB HDD
This one runs windows 10 still. I use this primarily for gaming. The screen hinge is an absolute joke, and replacing it involves replacing the entire screen bezel assembly, which I can absolutely do, but is such a pain that I haven't gotten around to it in the 3 years I've owned this laptop.
There's nothing really special about this one, other than that when both laptops are at my desk, I use a KVM switch to swap my external monitor, keyboard, and trackball between the two computers.
Raspberry Pi #2:
[Gifted New in 2020/21] Raspberry Pi 4b, 4GB Ram, 16GB SD card, 2 120GB USB Sticks, External 2TB HDD
This is my media server. I got it for Christmas 2020 (or 2021, I don't actually remember which because 2020 was a hard hard year). It runs Rasbian, the full OS, with the desktop environment disabled from booting via the command line. It runs PHP 8.2, MariaDB, Apache2, and MiniDLNA to serve the content via my Vogon Media Server.
If you can't tell from the above storage, I'm running the USB ports well past the power delivery they are rated for. The webserver and OS are on the internal storage, so functionally this just means that sometimes the media disappears. I need to build a migration script to put the contents of the two USB sticks on the external storage, as there is more than enough room, and if I can put the HDD in an enclosure with dedicated power, that will solve the issue. But that's at least a hundred dollars of expense, and since the server only has 1, maybe two users at a time, we've been limping along like this for a few years now.
Raspberry Pi #3:
[Purchased New in 2023] Raspberry Pi 4b, 8GB Ram, 16GB SD card
This is the newest Pi. Work gave me a gift card as a bonus for a project recently, so after weighing the pros and cons of getting a VR headset, I settled on setting up a retro gaming tv box. Currently it's running Batocero Linux and loaded up with classic game roms up through the PSX. Though, I would really like to use it as a tv client for the media server. I've upgraded the devices in the living room recently, and there's no longer a dedicated web browser we can use without hooking up one of our laptops. I've got a spare 128GB SD card in the office, so I'm strongly considering getting a wireless mouse and keyboard and setting it up to dual boot between Batocero (which is convenient because it can be navigated with just a controller), and Raspbian. I think I'd set Batocero as the default in Grub, and then if I want to use Raspbian I'd need to have the keyboard handy anyway.
Maybe I'll get one of those half-sized keyboards with the trackpad built in.
Speaking of controllers. I use an 8BitDo Pro 2 controller, and I've been super happy with it since purchase: https://www.8bitdo.com/pro2/
So that's the setup. I have entirely too many computers for any one person, but I included the dates when I got them to show that a number of these have been around for a long time, and that part of the reason I have so many now is that I've put a lot of time into ongoing maintenance and repurposing.
If you've read this far, I'd love to hear about your setups. You don't have to reblog this, but please tag me if you detail yours.
5 notes
·
View notes
Text
JavaScript Frameworks
Step 1) Polyfill
Most JS frameworks started from a need to create polyfills. A Polyfill is a js script that add features to JavaScript that you expect to be standard across all web browsers. Before the modern era; browsers lacked standardization for many different features between HTML/JS/and CSS (and still do a bit if you're on the bleeding edge of the W3 standards)
Polyfill was how you ensured certain functions were available AND worked the same between browsers.
JQuery is an early Polyfill tool with a lot of extra features added that makes JS quicker and easier to type, and is still in use in most every website to date. This is the core standard of frameworks these days, but many are unhappy with it due to performance reasons AND because plain JS has incorporated many features that were once unique to JQuery.
JQuery still edges out, because of the very small amount of typing used to write a JQuery app vs plain JS; which saves on time and bandwidth for small-scale applications.
Many other frameworks even use JQuery as a base library.
Step 2) Encapsulated DOM
Storing data on an element Node starts becoming an issue when you're dealing with multiple elements simultaneously, and need to store data as close as possible to the DOMNode you just grabbed from your HTML, and probably don't want to have to search for it again.
Encapsulation allows you to store your data in an object right next to your element so they're not so far apart.
HTML added the "data-attributes" feature, but that's more of "loading off the hard drive instead of the Memory" situation, where it's convenient, but slow if you need to do it multiple times.
Encapsulation also allows for promise style coding, and functional coding. I forgot the exact terminology used,but it's where your scripting is designed around calling many different functions back-to-back instead of manipulating variables and doing loops manually.
Step 3) Optimization
Many frameworks do a lot of heavy lifting when it comes to caching frequently used DOM calls, among other data tools, DOM traversal, and provides standardization for commonly used programming patterns so that you don't have to learn a new one Everytime you join a new project. (you will still have to learn a new one if you join a new project.)
These optimizations are to reduce reflowing/redrawing the page, and to reduce the plain JS calls that are performance reductive. A lot of these optimatizations done, however, I would suspect should just be built into the core JS engine.
(Yes I know it's vanilla JS, I don't know why plain is synonymous with Vanilla, but it feels weird to use vanilla instead of plain.)
Step 4) Custom Element and component development
This was a tool to put XML tags or custom HTML tags on Page that used specific rules to create controls that weren't inherent to the HTML standard. It also helped linked multiple input and other data components together so that the data is centrally located and easy to send from page to page or page to server.
Step 5) Back-end development
This actually started with frameworks like PHP, ASP, JSP, and eventually resulted in Node.JS. these were ways to dynamically generate a webpage on the server in order to host it to the user. (I have not seen a truly dynamic webpage to this day, however, and I suspect a lot of the optimization work is actually being lost simply by programmers being over reliant on frameworks doing the work for them. I have made this mistake. That's how I know.)
The backend then becomes disjointed from front-end development because of the multitude of different languages, hence Node.JS. which creates a way to do server-side scripting in the same JavaScript that front-end developers were more familiar with.
React.JS and Angular 2.0 are more of back end frameworks used to generate dynamic web-page without relying on the User environment to perform secure transactions.
Step 6) use "Framework" as a catch-all while meaning none of these;
Polyfill isn't really needed as much anymore unless your target demographic is an impoverished nation using hack-ware and windows 95 PCs. (And even then, they could possible install Linux which can use modern lightweight browsers...)
Encapsulation is still needed, as well as libraries that perform commonly used calculations and tasks, I would argue that libraries aren't going anywhere. I would also argue that some frameworks are just bloat ware.
One Framework I was researching ( I won't name names here) was simply a remapping of commands from a Canvas Context to an encapsulated element, and nothing more. There was literally more comments than code. And by more comments, I mean several pages of documentation per 3 lines of code.
Custom Components go hand in hand with encapsulation, but I suspect that there's a bit more than is necessary with these pieces of frameworks, especially on the front end. Tho... If it saves a lot of repetition, who am I to complain?
Back-end development is where things get hairy, everything communicates through HTTP and on the front end the AJAX interface. On the back end? There's two ways data is given, either through a non-html returning web call, *or* through functions that do a lot of heavy lifting for you already.
Which obfuscates how the data is used.
But I haven't really found a bad use of either method. But again; I suspect many things about performance impacts that I can't prove. Specifically because the tools in use are already widely accepted and used.
But since I'm a lightweight reductionist when it comes to coding. (Except when I'm not because use-cases exist) I can't help but think most every framework work, both front-end and Back-end suffers from a lot of bloat.
And that bloat makes it hard to select which framework would be the match for the project you're working on. And because of that; you could find yourself at the tail end of a development cycle realizing; You're going to have to maintain this as is, in the exact wrong solution that does not fit the scope of the project in anyway.
Well. That's what junior developers are for anyway...
2 notes
·
View notes
Text
CAKE PHP DEVELOPMENT

What is CakePHP?
CakePHP is an open-source web framework written in PHP scripting language for web development based on the core PHP framework and MVC architecture. MVC architecture mostly Centre on model, view, and controller of the specific project to give logical separation of code from the end user.
CakePHP was created by Michal Tatarynowicz in April Year 2005. The framework gives a strong base for your application. It can hold each aspect, from the user’s beginning request all the way to the final supply of a web page.
And since the framework follows the fundamental of MVC, it permits you to simply customize and expand most aspects of your application.
The CakePHP also gives a simple organizational structure, from filenames to database table names, keeping your whole application constant and logical. This concept is easy but impressive. Go around with the protocol and you’ll always know absolutely where things are and how they’re arranged.
Here’s a quick list of CakePHP features such as:
It follows MVC architecture
Rapid development
Application scaffolding
Active, friendly community
Built-in validations
Secure, scalable, and stable
Flexible licensing
Localization

Why select CakePHP for website development:
1. Compatible : The Cakephp is compatible with several versions of PHP as well as with the in demand website directories.
2. Customizable Elements : The Elements residing inside the framework are simple to redesign and understand.
3. No Download Required : There is no requiring downloading the whole package as you can get started by directly installing the database.
4. Code Reusability : Coding from scratch isn’t needed as code-written can be used so many times in the project decrease time and effort.
5. MVC Pattern : Huge apps need a structured pattern to get started, which CakePHP offers with its special MVC pattern.
6. Code Simplicity : Easy code written in PHP can do the trick for you. The framework is simple, successful and high on areas like security and session handling.
“Make use of CakePHP means your core application’s is well checked and is being always improved.”
At Kudosta, Website Design and Development Company we provide CakePHP web services such as Framework Customization, CakePHP Module Development, CakePHP Migration and lots more. Try to deliver the best of CakePHP web services in the market.
We have worked for several big scale as well as medium scale enterprises. Our team of skilled CakePHP programmers work with passion, practice new techniques offers you the best depending on your project’s needs.
#php development#ecommerce web design#custom web design#wordpress website#custom web development#seo services#wordpress development#web design#web development#custom web#laravel#react#nodejs#cakephp
4 notes
·
View notes
Text
Tamil Nadu Best Readymade PHP MLM Software Development Company

We take pride in being the foremost PHP MLM software development company based in Chennai, Tamil Nadu. Our expertise lies in providing a wide array of ready-to-use MLM scripts designed to cater to both product-based and investment-based MLM businesses. With a strong focus on innovation and customization, we offer comprehensive solutions that empower MLM entrepreneurs to thrive in their respective markets. Our commitment to delivering top-notch software solutions has earned us a reputation for excellence in the industry, making us the go-to choice for businesses seeking reliable MLM software development services in Chennai and beyond.
Benefits of PHP Readymade MLM Software
Readymade MLM Scripts: Our best software developers designed the PHP readymade MLM software comes with pre-designed scripts, which means the core functionality is already in place. This saves a considerable amount of time and effort in the development process. You don't have to start from scratch; you can build upon the existing framework.
Full Access to Source Code & Ownership: With PHP readymade MLM software, you receive full access to the source code. This grants you complete control and ownership of the software. You can customize it according to your unique business requirements without any restrictions.
Easy Customization: PHP is known for its flexibility and ease of customization. You can tailor the software to match the specific needs and branding of your MLM business. Whether you need to add new features or make design changes, PHP makes it relatively straightforward.
Lifetime License: When you invest in PHP readymade MLM software, you typically acquire a lifetime license. This means you won't have to worry about recurring fees or subscription costs. It offers long-term cost-effectiveness.
Versatile Payout Options: MLM businesses often have various compensation plans, such as binary, matrix, or unilevel. Best MLM software developers are designed to support multiple payout options, ensuring it can adapt to different compensation structures.
Transparent Commission Setup: Managing commissions is a crucial aspect of MLM. readymade MLM software usually provides a clear and user-friendly interface for setting up commission structures. This transparency simplifies the process of calculating and distributing payments to your members accurately.
Prompt Support & Guidance: Reputable Tamil Nadu PHP MLM software provider offer reliable customer support and guidance. When you encounter any issues or have questions, their prompt assistance ensures that you can resolve problems swiftly, keeping your MLM business running smoothly.
Our MLM Plan products
Binary Plan: Involves recruiting new members into two legs (left and right) within your downline.
Matrix Plan: Limits the number of members a distributor can recruit, creating a structured network.
Generation Plan: Rewards distributors for building multiple generations of downline members.
Board Plan: Utilizes a board-like structure where members advance from one board to another upon meeting specific goals.
Hybrid Plan: Combines elements from various MLM plans to suit your company's unique needs.
Unilevel Plan: Permits distributors to sponsor as many members as they wish, forming a straightforward structure.
Re-purchase Plan: Emphasizes product purchases, encouraging distributors to buy and sell the company's products.
MLM Investment Plan: Involves investment schemes where members invest money and receive returns over time.
Differential Plan: Offers different commission rates based on distributor ranks or achievements.
Single Leg MLM Plan: Follows a linear structure where every distributor is placed in a single line.
Crowdfunding: Focuses on raising funds for a project or cause by seeking contributions from a large number of people.
Spill Over Binary MLM: A binary plan where additional recruits spill over into the downline of existing distributors.
When selecting a Chennai based MLM software development company, it's essential to consider your specific MLM plan requirements and ensure the company has expertise in developing and customizing the software accordingly. Additionally, check for client reviews, testimonials, and the company's reputation to make an informed choice that aligns with your MLM business goals.
Company URL: https://www.phpmlmsoftware.com/
Contact us via WhatsApp: https://wa.me/+919790033533
Address:
Company name: PHP MLM Software development Company,
Door No. 1/142,
P.H.Road, Sivapootham,
Vanagaram,
Chennai, 600095,
India.
2 notes
·
View notes
Text
A Note from the Mod
The Good: This bot is back! Sort of.
Unbeknownst to me, Tumblr changed their API settings which broke the script I had been using previously to automatically post to this blog via the Albedo/Aether AO3 RSS Feed.
After a bit of fiddling, I managed to get it running again, to some extent. The observant among you may have noticed a flood of posts made, and swiftly deleted, yesterday as I was in the process of calibrating the new bot settings.
The Bad: Unfortunately, the new bot seems to not want to format its content correctly, no matter what. I am choosing to blame Tumblr's new API for this. What this means is that the description, tags, etc. of fics will be cut off until I can find a workaround.
The Request: In the long shot that anyone sees this and is more experienced in IFTT/Webhooks/PHP than I, or has dealt with this problem before, please let me know! I wish to continue showering the masses with fics about my OTP for the indefinite future. Oh, great expanse of the internet, help a shipper out!
With Love,
Your Albether-Ao3 Mod
2 notes
·
View notes
Text
Long post. Press j to skip.
I AM SICK OF THE STUPID AI DEBATES, does it imagine, is it based on copyrightable material, are my patterns in there?
That's not the point.
I briefly got into website design freelancing (less than 3 months) before burn out.
The main reason was that automation had begun for generating stylesheets in somewhat tasteful palettes, for automatically making html/xml (they really haven't learned to simplify and tidy code though, they just load 50 divs instead of one), for batch colourising design elements to match and savvy designers weren't building graphics from scratch and to spec unless it was their day job.
Custom php and database design died with the free bundled CMS packages that come with your host with massive mostly empty unused values.
No-one has talked about the previous waves of people automated out of work by website design generators, code generators, the fiverr atomisation of what would have been a designers job into 1 logo and a swatch inserted into a CMS by an unpaid intern. Reviews, tutorials, explanations and articles are generated by stealing youtube video captions, scraping fan sites and putting them on a webpage. Digitally processing images got automated with scripts stolen from fan creators who shared. Screencaps went from curated processed images made by a person to machine produced once half a second and uploaded indiscriminately. Media recaps get run into google translate and back which is why they often read as a little odd when you look up the first results.
This was people's work, some of it done out of love, some done for pay. It's all automated and any paid work is immediately copied/co-opted for 20 different half baked articles on sites with more traffic now. Another area of expertise I'd cultivated was deep dive research, poring over scans of magazines and analysing papers, fact checking. I manually checked people's code for errors or simplifications, you can get generators to do that too, even for php. I used to be an english-french translator.
The generators got renamed AI and slightly better at picture making and writing but it's the same concept.
The artists that designed the web templates are obscured, paid a flat fee by the CMS developpers, the CMS coders are obscured, paid for their code often in flat fees by a company that owns all copyright over the code and all the design elements that go with. That would have been me if I hadn't had further health issues, hiding a layer in one of the graphics or a joke in the code that may or may not make it through to the final product. Or I could be a proof reader and fact checker for articles that get barely enough traffic while they run as "multi snippets" in other publications.
The problem isn't that the machines got smarter, it's that they now encroach on a new much larger area of workers. I'd like to ask why the text to speech folks got a flat fee for their work for example: it's mass usage it should be residual based. So many coders and artists and writers got screwed into flat fee gigs instead of jobs that pay a minimum and more if it gets mass use.
The people willing to pay an artist for a rendition of their pet in the artist's style are the same willing to pay for me to rewrite a machine translation to have the same nuances as the original text. The same people who want free are going to push forward so they keep free if a little less special cats and translations. They're the same people who make clocks that last 5 years instead of the ones my great uncle made that outlived him. The same computer chips my aunt assembled in the UK for a basic wage are made with a lot more damaged tossed chips in a factory far away that you live in with suicide nets on the stairs.
There is so much more to 'AI' than the narrow snake oil you are being sold: it is the classic and ancient automation of work by replacing a human with a limited machine. Robot from serf (forced work for a small living)
It's a large scale generator just like ye olde glitter text generators except that threw a few pennies at the coders who made the generator and glitter text only matters when a human with a spark of imagination knows when to deploy it to funny effect. The issue is that artists and writers are being forced to gig already. We have already toppled into precariousness. We are already half way down the slippery slope if you can get paid a flat fee of $300 for something that could make 300k for the company. The generators are the big threat keeping folks afraid and looking at the *wrong* thing.
We need art and companies can afford to pay you for art. Gig work for artists isn't a safe stable living. The fact that they want to make machines to take that pittance isn't the point. There is money, lots of money. It's not being sent to the people who make art. It's not supporting artists to mess around and create something new. It's not a fight between you and a machine, it's a fight to have artists and artisans valued as deserving a living wage not surviving between gigs.
#saf#Rantings#Yes but can the machine think#I don't care. I don't care. I really don't care if the machine is more precise than the artisan#What happens to all our artisans?#Long post#Press j to skip
4 notes
·
View notes