tumblr.com

VN:F [1.9.22_1171]
Rating: 6.2/10 (10 votes cast)

Tumblr text, photos, quotes, links, dialogues, audio, video, slideshows. Twitter on steroids and mainly filled with junk.

Tumblr Tuesday: Artober

21 October 2025 @ 6:00 pm

tumblr:October is a big month for art challenges! From birdtober to linktober, peachtober to wisptober, and the dark-fantasy-themed cursed relics, here are some highlights from some of this month’s art challenges. Join in if you like, there’s still time :)@owlyjules:

Keeping your Tumblr safe 🔐

15 October 2025 @ 11:40 am

tumblr:Keeping your Tumblr safe 🔐Hey Tumblr, your security is super important to us. In light of a recent surge in scams, we want to make sure you have all the tools and knowledge to keep your account safe:Verify the source: If someone claiming to be from Tumblr Support reaches out, always check the sender’s email address. Official Tumblr communication will come from tumblr.com or tumblr.zendesk.com domains, and Tumblr will never contact you via another platform.Don’t click suspicious links: Check the destination of a URL before clicking, and look for anything that doesn’t seem right, such as a misspelled website name. Recognize phishing: Phishing messages or emails often try to create a sense of urgency (“Your account will be suspended if you don’

Tumblr Tuesday: Dan and Phil finally, finally announce that podcast

14 October 2025 @ 3:00 pm

tumblr:Here’s some lovely phanart to celebrate the big announcement and 16 years of these two yapping with gusto. And, for those who are artistically inclined and celebrating phandom news, #phantober25 and #phinktober2025 are ongoing 🌝@eldieii:

Tumblr Tuesday: Despite everything, it’s still you.

16 September 2025 @ 5:28 pm

tumblr:Tumblr Tuesday: Despite everything, it’s still you.Another good week for game fans! Yesterday marked a whole decade of Undertale. Happy anniversary to the game and all who have loved it for so long <3 To celebrate, here’s a small selection of all the beautiful art fans are making. Explore more here.@sparticus2000art:

Tumblr Tuesday: Silksong is here!

9 September 2025 @ 7:00 pm

tumblr:Tumblr Tuesday: Silksong is here!After six years of waiting, Hollow Knight: Silksong was released last week, breaking the internet a little bit in the process. Folks are falling in love with the Bell Beast and Hornet (again), finding ways to get through the game, sharing help with anyone struggling, and creating incredible fan art. Please enjoy this little offering, and please refrain from scrolling through if you’re yet to play—mild spoilers ahead!). Happy Tuesday, Tumblr <3@morretlin:

Well, well, well&hellip; how do you like them comments?

12 August 2025 @ 1:28 pm

tumblr:it’s true!! you can now like comments on Tumblr posts. you know those little replies under posts? you can heart them now.why did it take us so long? well, we’ve been busy letting Instagram catch up on reblogs (sorry—reposts). now they’re finally up to speed, we figured we could borrow one of their features 😏it works exactly how you think: see a comment you love → tap the heart → bask in the mutual validation. check out the comments section of this post to try it out. go forth and like those comments responsibly!!! or, yk, generously, abundantly, and with all your heart. you know how this goes.

Tumblr Tuesday: Art Fight 2025

22 July 2025 @ 6:26 pm

tumblr:How much creechure can we fit in one post, you ask? Well, @artfight is upon us, and the Fossils and Crystals are having it out by depicting each other’s original characters—so the answer is a lot of creechure. But maybe not enough?  Featuring lots of mutual appreciation (artists spending hours with each other’s ideas!), incredible character design, and beautiful depictions thereof, take this as your invitation to get involved. You can sign up and start fighting (using your artistic talents), or simply enjoy the wealth of beautiful art styles and cool ocs coming to the fore. This is but a small selection,

❤️💙Tumblr Tuesday: Ao3 x Tumblr&mdash;Love wins 💙❤️

8 July 2025 @ 7:42 pm

tumblr:❤️💙Tumblr Tuesday: Ao3 x Tumblr—Love wins 💙❤️It finally happened. After some romancing in the ballpit, we popped the question and, folks, THEY SAID YES. In short, we’re in love! Now, we’re in need of a ship name. Can you help? Vote below, or let us know if you come up with something better. This is now a matter of grave importance.

Tumblr Tuesday: Squid Game Fanart Edition

1 July 2025 @ 4:40 pm

Tumblr Tuesday: Squid Game Fanart EditionWell, the games have come to a close, as all games must, with some winners and (many, many) losers. However you’re feeling about the outcome, we hope you’ll enjoy this small selection of the incredible Squid Game art fans are churning out at alarming rates.(Spoilers and some mild gore ahead! Please proceed with utmost caution if you don’t like spoilers or mild gore!)@lyxchen:

Tumblr Tuesday: KPop Demon Hunters!

24 June 2025 @ 4:29 pm

Tumblr Tuesday: KPop Demon Hunters!Well, here’s hoping you love Kpop, enemies-to-lovers, neon hues, and derpy familiars. What am I saying, this is Tumblr. Huntrix and their frenemies have taken the dash by storm, and your fanart is dazzling. Please enjoy this small selection 💜(Beware, spoilers ahead!)@bunnilily: @fuck-it-darling:

wordpress.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Free wordpress blog on wordpress.com

blogger.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Free blog with your Google account

virtualhelp.me

VN:F [1.9.22_1171]
Rating: 6.0/10 (1 vote cast)

Virtual help for common windows and linux problems

Rathervague.co.uk

VN:F [1.9.22_1171]
Rating: 7.8/10 (4 votes cast)

The blog of Del Sozou, Artist & dreamer.

Simple webserver

1 February 2019 @ 9:49 am

The SimpleHTTPServer module can be used in the following manner in order to set up a very basic web server serving files relative to the current directory. import SimpleHTTPServer import SocketServer PORT = 8000 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd.serve_forever() The SimpleHTTPServer module can also be invoked … Continue reading "Simple webserver" The post Simple webserver appeared first on .

Webtrees Ubuntu Server

1 January 2019 @ 1:31 pm

Install MySQL sudo apt install mysql-server sudo mysql create user 'webtrees'@'localhost' identified by 'webtrees12345'; create database WEBTREES character set UTF8; grant all privileges on WEBTREES.* to 'webtrees'@'localhost'; exit Test DB – login with user webtrees mysql -u webtrees --password=webtrees12345 Install Apache sudo apt install apache2 sudo apt install php7.2 libapache2-mod-php7.2 php-mysql sudo apt install php-curl … Continue reading "Webtrees Ubuntu Server" The post Webtrees Ubuntu Server appeared first on .

Tomorrow’s World – 1984

20 December 2018 @ 8:34 pm

BBC1 Tomorrow’s World – 1984 – GOLD https://youtu.be/TXr8E37ClF8?t=529 The post Tomorrow’s World – 1984 appeared first on .

The Best of Peter O’Hanraha-hanrahan

18 December 2018 @ 8:20 pm

The Day Today The post The Best of Peter O’Hanraha-hanrahan appeared first on .

Commodore 64 Games Emulator

10 October 2018 @ 4:19 pm

C64 Emulator online https://archive.org/details/softwarelibrary_c64?and%5B%5D=emulator%3Avice-resid The post Commodore 64 Games Emulator appeared first on .

Zika tutorial

25 September 2018 @ 6:02 pm

Following on from the zika install Get the NextStrain zika tutorial | https://github.com/nextstrain/zika-tutorial git clone https://github.com/nextstrain/zika-tutorial.git cd zika-tutorial Prepare the Sequences A Nextstrain build typically starts with a collection of pathogen sequences in a single FASTA file and a corresponding table of metadata describing those sequences in a tab-delimited text file. For this tutorial, we … Continue reading "Zika tutorial" The post Zika tutorial appeared first on .

Ubuntu Kill Window

24 September 2018 @ 11:08 am

Ctrl+Alt+Esc This gives a skull cursor. Position it on the application window and click. Program is killed. The post Ubuntu Kill Window appeared first on .

Datatables

20 September 2018 @ 8:13 am

JQuery Datatables Hints and Tips Save state (add to options) stateSave: true Add saved search keyword // Restore state of global search var state = ExtendedTable.state.loaded(); if ( state ) { console.log("state", state); $("#SearchBox").val(state.search.search); }; Update clear button with active state if(($('#SearchBox').length && $('#SearchBox').val().length)) { $("#clearFilter").addClass("active"); } else { $("#clearFilter").removeClass("active"); }; Update filter dropdowns inside … Continue reading "Datatables" The post Datatables appeared first on .

Hellsystem – Afraid

17 September 2018 @ 9:45 pm

The post Hellsystem – Afraid appeared first on .

Hiromi The Trio Project performing “Alive” (Live in the Studio)

17 September 2018 @ 9:37 pm

The post Hiromi The Trio Project performing “Alive” (Live in the Studio) appeared first on .