#best code editor
Explore tagged Tumblr posts
perilegs · 10 months ago
Text
clear + the robot man by northernboys
59 notes · View notes
hum--hallelujah · 2 years ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
top 10 peteandpatrick images to me
57 notes · View notes
dimalink · 6 months ago
Text
Different Basic – try different Basic
Tumblr media
So, year 2024 – for me, it is a year of Basic. I program only with it. And, mainly, I like a lot Basic. It is a positive. From the childhood days. In childhood, I see Kuvt 2 Msx 2 Basic. I see blue screen QBasic, or Quick Basic 4.5. As it is a childhood memories, so let it be this way. Microsoft Quick Basic 4.5, I am talking about. It was built in MS DOS. It was very comfortable and funny!
Tumblr media
And, in 2024, I am, again, with Basic. Now, speaking the true, I am programming with modern dialect -QB64, mainly. Modern version of Basic. It is most common use form of Basic for me. I write with it most of programs. It is modern, it works with modern computers, it is supported by developer. Mainly, it is modern and new version. And, main, – that by it has a special visual side – it is same Basic from MS DOS from the past. Which means so a lot for me. It is, Also, a valuable feature.
Tumblr media
And, in 2024 I become more brave. About Basic question. And, start to try different Basics. First of all, those who are actual. So. this means, they work with modern systems, for them they are written. And they are supported by their authors. More or less, they have new versions. I get experience with usage of several Basic dialects. So, this is like some different realization of this programming language, these ideas Basic programming. Experience was even positive!
It is about two dialects of Basic. First - BBC Basic for SDL2. And second – it is Free Basic.
Tumblr media
BBC Basic for SDL2
I start from the beginning. BBC Basic for SDL2 – it is a very interesting thing. Hard to say another way. Basics, are, of course, similar to each other. About the level of main ideas. And realization can be very different. So, here are lots of different with QB64. There are enough of different things, I need to say – it is quite different.
Tumblr media
Anyway, BBC Basic, as I understand, it takes it`s roots with 8 bit computer BBC Micro or something like that. So, this is about more or less about programming style 80s.
Tumblr media
As with some kind of Spectrum. And there are lots of Basic forms. There are – where you need to give a number to every line. So, this means, that every command has its number. Amazing and new experience for me!
Tumblr media
And, this Basic form has two interfaces, just from the beginning - two interfaces you have. So, this is about - it has two programs inside of it– you write code and launch, from them.
Tumblr media
Its own development environment.  Straight with this Basic itself. Two environments for you selection. You run this Basic and select one environment out of two for your choice.
Tumblr media
First environment looks very beautiful. It is very stylish. In dark tones. Beautiful and stylish. Second environment looks like casual window. White background. Casual windows window. As windows 3.11 ort just a windows window. By the way, second one can do exe file.
Tumblr media
First environment has a name - Andy Parker`s BBC Edit, second environment - Richard Russell`s SDLIDE. So, BBC Basic - it is something like a program, and you run it and you are being asked – about what ide you will use. Everything goes as one with BBC Basic. Nothing from aside you do not need to install. And this is comfortable! And for novice. And for just to program with basic.
Tumblr media
I write code and run it from first environment. And exe I do using second environment. From a good side of this Basic - I say about a good documentation for this Basic. There are lots of information, at website. Even more - it has a very friendly way of reading it. And you can to learn about commands and their features. Documentation is done here very cool! So, I from the first attempt can do get ideas and use it. How to write programs here.
Tumblr media
For example, here command for colors writes as COLOUR, instead of casual COLOR.
Or procedure is writing next form
DEF PROCmyprocedure
Procedure code
ENDPROC
And, there are lots of such things! It is retro Basic. It is interesting dialect. Which is rather different from casual and well known QB64 or Free Basic. For those, who have some interest! Very cool thing!
Tumblr media
Free Basic
Second Basic. It is Free Basic. I think, it is well known theme. I don know, even, and, maybe, it is true, or not, it is more popular, then a QB64. Cool thing. Some way, it is, rather, close as a result QB64 and Free Basic. But they have a difference too.
Tumblr media
Free Basic does not suggest you development environment or text editor. In its standard form. You are using it with some text editor, as a wise man. And, you run with hands. Compile your program with command line. It has interesting feature. I, first here, try code editor GVim. It is first successful expirience of GVim for me. First makefile, most simple one, of course. So, this Basic can be similar to QB64, but, anyway, it makes some surprises! With a positive side. All the time, there is a place for something new, as someone can say!
Tumblr media
Here, taking into account, that there are some close points. It is a big value, anyway, tor remember, that QB64 and Free Basic – they are different. To have not be surprised, when you don’t want any unknown things to happen. Each one with its own moments. But, both of them are cool and modern forms of Basic. Which can be recommended for first invitation, well, like this. I am about a programming language itself. Not taking into account development environment.
Tumblr media
It is very popular Basic form. It is main. It is very good Basic. Rather close to QB64. It is comfortable! It is first, that you understand, when you use Free Basic for writing programs.
First of all, I write some test program. I show a text at the screen, I draw little squares. Something like graphics. Graph at the column. It works! And, even, without any serious problems! So, this means, that it is a cool Basic. It helps a lot, that it is similar to QB64. More close, than BBC Basic.
Tumblr media
But, saying the truth, here you need to use text editor. For yourself. But, it is a good step in self progress. If QB64 suggests, already, a development environment. And, here – it is up to you. So, think about this for yourself. It is cool! Later to learn how to compile. Create make file. It is, also, not so hard here and good for self-progress! Serious thing - this is Free Basic.
Tumblr media
You can compile with hands. And you can to make a special little file. So, it has a name -make file. To run everything from it. A required command compilation. For example, for my game Free Block – text for make file is next.
File makefile
all:
                fbc64 FreeBlocker.bas Global.bas Block.bas Player.bas Game.bas Level.bas Gameplay.bas Menu.bas
Tumblr media
So, it, already, has a command for compilation. For first invitation in theme of compilation – it is, rather, easy and easy to understand!
And, next, you just write from the console !make
And, in other case, you need to write a long command for compilation, everytime. Interesting new experience! And, it is not so hard! But, of course, it requires some time – to read, to try, to make some experiment.
Tumblr media
So, compilation in easy form – looks like, it is not so scary thing. It is, also, easy to see. Name of compile tool, main file and different files, you need and, that`s all. For example, it looks like, this is, I can say, about it, in easy form. It is, also, a little of positive!
Tumblr media
It is comfortable to use Free Basic to learn such things. So, we have a combination here, already, a picture of things. Qb64 - it has, already, made for you development environment. Everything out of program is making.  And, later, to have more complex and interesting, when you, already, have experience. It is Free Basic. You select by yourself development environment. You compile by yourself, you make a makefile. Interesting and positive experience.
Tumblr media
By the way, I remember a story from school days. Some older school boy once asked someone – “And what? Do you have installed a compile tool?” And, I was a school boy in those days, and, even, do not know about these things. I only played in games. So, this moment is now for me! So, I can say, it is a first step in usage.
Tumblr media
With Free Basic it is little difference a way you make a sound. There is nothing like it is in Qb64. In QB64 you, already, have installed functions, and just to give a path to file and play it. With music or sound. With Free Basic it is different. It is example of some difference. There is no some analog of command from Qb64.
Tumblr media
With Qb64 you have a easy to use commands for playing sounds and music - _SndPlay, _SndPlaying, for example. With Free Basic you do not have these things. So, some difference things you will see!
Tumblr media
So, these are two new for me dialects of Basic, I make a discovery of them! Basic – it is cool! I am so happy, that I can to program with programming language Basic!
Tumblr media
iron (hardware) and programs. From time to time i restore computers, retro computers. Try retro soft. Check some programs. And write about all of these. Dima Link is making retro videogames, apps, a little of music, write stories, and some retro more.
WEBSITE: http://www.dimalink.tv-games.ru/home_eng.html ITCHIO: https://dimalink.itch.io/
BLOGGER: https://dimalinkeng.blogspot.com/ TUMBLR: https://dimalink.tumblr.com/
3 notes · View notes
p2ii · 2 years ago
Text
hey tumblr why does doing ctrl+z in post editor deleating 60% of my post and why cant i retreve it with ctrl+shift+z 😭??????
2 notes · View notes
filehulk · 5 months ago
Text
Vim for Windows
Vim is a powerful and highly configurable text editor widely regarded as one of the best tools for developers and text-editing enthusiasts. Known as a “programmer’s editor,” it is a clone of the vi text editor created by Bill Joy for Unix systems. The name “Vi IMproved” (Vim) reflects its enhanced functionality and advanced features compared to the original vi editor. While Vim is a favorite…
0 notes
sugarcoatedmechanic · 1 year ago
Text
((I got onto tumblr to rp but then spent several hours working on a new tumblr theme instead. It’s not even done))
0 notes
editboxpro · 1 year ago
Text
Online Code Editor with live preview , online code editor , live code editor
Start Coding with EditBoxPro’s Online Code Editor Now!
In the digital age, coding has become an essential skill across various industries, from web development and software engineering to data science and artificial intelligence. EditBoxPro’s Online Code Editor with live preview offers a comprehensive solution for developers, students, and coding enthusiasts to write, test, and debug code in real-time. Let’s explore how EditBoxPro’s Online Code Editor can empower users to streamline their coding workflow, improve productivity, and bring their coding projects to life.
Unleashing the Power of EditBoxPro’s Online Code Editor
EditBoxPro’s Online Code Editor is a versatile tool designed to meet the needs of both novice learners and experienced developers. With its intuitive interface, robust features, and live preview functionality, our code editor provides users with a seamless coding experience that fosters creativity, collaboration, and innovation. Whether you’re working on a personal project, collaborating with a team, or learning to code for the first time, EditBoxPro’s Online Code Editor offers the flexibility and functionality you need to succeed.
Key Features of EditBoxPro’s Online Code Editor
Syntax Highlighting: Enjoy syntax highlighting for a wide range of programming languages, including HTML, CSS, JavaScript, Python, Java, and more. Our code editor highlights syntax elements with distinct colors, making it easier to read and understand your code.
Auto-Completion: Accelerate your coding workflow with auto-completion functionality, which suggests code snippets, variables, and function names as you type. Our code editor’s intelligent auto-completion feature helps you write code faster and reduces errors.
Live Preview: Visualize your code changes in real-time with EditBoxPro’s live preview functionality. Our code editor provides a live preview of your HTML, CSS, and JavaScript code, allowing you to see how your changes affect the appearance and functionality of your web pages instantly.
Multi-Language Support: Write code in multiple programming languages within the same editor interface. EditBoxPro’s Online Code Editor supports a wide range of programming languages, allowing you to work on diverse projects without switching between different tools.
Code Collaboration: Collaborate with team members or peers in real-time with EditBoxPro’s code collaboration feature. Our code editor allows multiple users to edit the same code file simultaneously, facilitating collaboration and teamwork on coding projects.
Version History: Keep track of your code revisions and changes with EditBoxPro’s version history feature. Our code editor automatically saves your code changes and allows you to revert to previous versions if needed, ensuring peace of mind and data integrity.
Advantages of Using EditBoxPro’s Online Code Editor
Accessibility: Access EditBoxPro’s Online Code Editor from any device with an internet connection, eliminating the need for complex software installations or downloads. Our code editor is accessible via web browsers, making it convenient for users to write code anytime, anywhere.
Ease of Use: Enjoy a user-friendly interface and intuitive controls that make coding accessible to users of all skill levels. EditBoxPro’s Online Code Editor is designed with simplicity and usability in mind, allowing users to focus on writing code without distractions.
Real-Time Feedback: Receive instant feedback on your code changes with EditBoxPro’s live preview functionality. Our code editor provides real-time updates, allowing you to test and debug your code efficiently and see the results of your changes instantly.
Learning Resources: Access a wealth of learning resources, tutorials, and documentation to support your coding journey. EditBoxPro’s Online Code Editor offers educational content and coding exercises to help users improve their coding skills and master new programming concepts.
Versatility: Use EditBoxPro’s Online Code Editor for a wide range of coding projects, including web development, software engineering, data analysis, and more. Our code editor supports multiple programming languages and offers features tailored to various coding tasks and projects.
Conclusion
Elevate your coding experience and unleash your creativity with EditBoxPro’s Online Code Editor with live preview. Whether you’re a seasoned developer, student, or coding enthusiast, our code editor provides the tools, features, and resources you need to write, test, and debug code effectively. Experience the power of real-time coding with EditBoxPro’s Online Code Editor and take your coding projects to new heights today!
Start Coding with EditBoxPro’s Online Code Editor Now!
online code editor, live editor, code editor, live code editor, make online code editor, best online code editor, live html editor, best online code editors, online html editor, best online editors, online html editor with css drag drop, live preview, live html preview visual studio code, editor, free online code editor, online free code editor, code editor online, online code editor python, online code editor c++, online code editor php, html editor
0 notes
searchingforserendipity25 · 5 months ago
Text
it's a good thing conclave didn't waste any time on making the stories about catholic orders and their in-fighting. and probably i shouldn't either because i am not informed enough about it to go on at length. pls take all of this w a grain of salt.
but i know in my heart of hearts that aldo bellini is a progressive liberal jesuit, the holy father's specialest most progressive liberal italian-american jesuit.
look at him. look at his glasses. those are the glasses of a man who did his dissertation on reinterpreting loyola through a contemporary reformist lens. academic wunderkid. has sooo much beef w the editors of american jesuit weekly. possibly the events of conclave are occurring in a better more beautiful world where aldo bellini is the editor of american jesuit weekly.
the late holy father for sure was a progressive jesuit also. vr pope francis coded. and low-key set him up as a successor. for a while, that seemed nearly a sure thing in some circles.
but there is the fact. well. the fact that everyone is tired, done and tired of jesuits, progressive or otherwise.
this among other factors meant he couldn't consider him the best option, besides whatever character judgement and uncanny machievallien prediction he came up with.
adeyemi has that benedictine swag which makes his potential election particularly seem like a breath of fresh air + reliable + lots of influence. tremblay is giving dominican drip and dominican corruption. and dominican flop. his nespresso machine? it's giving dominican also.
tedesco has to be an italian-founded order member. most hypocrital salesian of all times maybe?? this is unrelated to the fact that i was nearly enrolled in a salesian primary school and the weirdly panopticon-ish playground didn't pass the vibe check. and also because: consider tedesco rising in the ranks of an order created to help migrant workers...someone kick him in the head for me pls.
who even knows about benítez. i want to say franciscan but that might be just too on the nose. cistercian?? honestly it would work well if he is also without affiliation.
this lens does make lawrence's homily being interpreted as a campaign speech more understandable (and particularly funny).
because, as far as anyone can tell, he's fully running as an independent candidate. zero platform besides - if i fuck up i'll apologize and do better and be held accountable, which is more than any of you probably would.
and because he stands alone, he can be held accountable. he can belong to all, and not one faction only. as far as anyone can tell, he's burning bridges with bellini and rocking the status quo.
he is speaking to/from a place of frustration with institutional inertia and factionalism, he is using his position as dean to bravely promote a platform for internal change in the curia, he is offering doubt as an alternative to certainty, he is pulling an absolute wildcard move.
pity he didn't mean it.
pity the the only order lawrence is interested in joining is the most hardcore discalced carmelite experience possible.
you know how some people look into luxurious real estate listings like it's porn? that's lawrence w tiny monasteries. the sort of minuscule organization with not enough people for management to be necessary. too small for politics. as close to erasure as you can get in this world: no need to be useful.
serving god by existing only to meditate on him. a narrow slant of a life, at that. barely taking up space, barely casting a shadow.
his favorite is a decrepit wreck of a place in the middle of southern spain, nowhere. no wifi no speaking aloud no possessions. no shoes no food. no nothing, only prayer. and a big big sky overhead.
maybe that will fix his issues with reaching god. if that doesn't work he'll probably just wander into the tabernas desert and become an hermit. works for some people, supposedly; plenty of order founders seem to believe so, anyway.
1K notes · View notes
lizclipse · 2 years ago
Text
vscode has just had an update that bring in a bunch of diff editor features, and holy mackerel batman they're so fucking good. switching to inline view when I split into side-by-side editors, seeing moved code blocks, and collapsing unchanged lines has just revamped the whole experience and made viewing git diff a joy-giving time. it's the single best git/diff tool I've ever used and makes me so unwilling to try out anything else
1 note · View note
sabelacarsonsblog · 2 years ago
Text
Tumblr media
8 Best HTML & CSS Code Editors for 2023
Boost efficiency & precision in web development with top HTML & CSS code editors. Discover 2023's best tools for seamless coding
0 notes
an-ruraiocht · 10 months ago
Text
90% of the time when i see reviews and posts saying "this book needed editing" i don't think the reader have any idea what editing actually entails. usually this is actually code for one of several "problems" with the book:
it's too long, or it's slower paced than this reader's preference. they believe "editing" would mean making it shorter
it has a heavily descriptive style, which the reader doesn't like. they believe "editing" means paring every sentence down to hemingway-style prose with no adverbs
it doesn't follow the very rigid "save the cat" style 3-act story structure, disrupting the reader's sense of narrative tension. an editor, they believe, would've made sure it did
there were a few typos or formatting errors, and they believe it's the editor's job to catch these (it's not, it's typically the proofreader and the typesetter who have responsibility for that kind of thing)
and finally, most often:
the author had different narrative priorities than the reader, who thinks an editor would have made the author change their priorities.
the thing is, there are actually issues with editors in trad publishing being overworked to the point where things aren't getting the thorough, thoughtful editing that they need to be the best version of themselves. there are plenty of badly-structured, poorly-researched, and clumsily written books out there. moreover copyediting is typically freelance and perhaps because of that, this is the area where i see the largest number of issues: continuity issues, grammar issues, factual errors etc that someone should've spotted and didn't.
but this is not typically what people's "this needed an editor" reviews are focusing on. most often it just means they didn't like the book and they've decided editing is an all-powerful force that would have transformed it into a book they liked. but that's not how it works. and disproportionately what this comment means is that the book doesn't match what current fashions have decided is The Correct Style to write in
"this book needed an editor" if it's traditionally published, it had one. like. by definition. it was an editor who bought the book. that doesn't mean the editor did a great job but they definitely existed. there were probably at least two (acquiring editor who does the dev edits; copyeditor who does copyedits), and the proofreader, and a bunch of other people besides.
also i think people think editors are the ones who like. implement the changes. but they don't. they give comments and recommendations and ask questions and the author is the one to act on them. the editor will not rewrite the book. they will not fix the problems themselves, they will highlight the problem and the author will figure out a fix for it, or they will decide they don't agree that it's a problem and leave it as it. and a lot of the sentence-level style stuff is entirely on the author so if they don't have an ear for the rhythm then nobody's going to fix that for them. editors do a lot less than people seem to imagine they do, tbh
anyway
for reference—
structural/developmental edits: is this chapter in the right place and does the plot make sense and is the characterisation consistent and effective
line edits: is this sentence in the right place and is it as stylish as it could be
copy edits: is this sentence grammatically correct and consistent/factually correct within the story/its world and do the spellings follow the publisher's stylesheet
proofreading: are there any typos in this sentence and was the formatting preserved correctly when it was typeset
2K notes · View notes
ravenstargames · 19 days ago
Text
✦ LOST IN LIMBO DEVLOG #19 | 06.02.2025
Tumblr media
Happy Pride month besties! 💜 Yes, this year too we'll have a Pride month piece, but it's in the making!
This month has been packed with concept art and getting the new update ready, so there's not that much to write about. Showing all the concept art would spoil the artbook, so apologies if this devlog looks shorter than it should. Don't worry, we are still going full-speed ahead! Let's jump into it!
Tumblr media Tumblr media
World, meet your trustworthy sidekick, she who has had your back since the beginning—Evie!
You already know a bit of her; she likes everything related to the occult world, is a prime member of the Faybourne Waterpolo Club, and her favorite color is blue!
Evie's base sprite is finished, so now we gotta jump to her expressions. Those are fairly easy and quick (Raquel's words, not mine), so I expect to start coding kind of soon! ✨
Also, concept art on the MC's dear mom is done! So we've moved on to the sprite phase, and also started working on the concept art of MC's troublemaking grandmother. Kickstarter folks will have ✨juicy✨ previews on that content, so y'all will have to wait for a bit as per usual!
Tumblr media
May has been Amon's month. I've been writing the first chapter of his route, as well as editing the prologue following our editor's guidelines. I think this month will be packed of corrections, and I'm excited to tackle them!
Tumblr media
As y'all know, demo update 1.1.0 (now 1.1.1, as some characters were very insistent in partaking in some floating activities) went live! This month I've been working on patching stuff as well as refining the android build. I originally used two different projects for the PC version and the mobile one, but after lady and savior Feniks graced me with knowledge once more, I dipped my toes into Ren'py variants; and it's been going great! After publishing these devlogs, I'll start uploading the new android build everywhere 💜✨
Tumblr media Tumblr media
Kayden has been working on more mini-CGs to enhance the ✨experience✨of the new prologue! Amongst those CGs, we have the Sovereign's hospitality in the shape of breakfast. I wonder who delivers it...?
Tumblr media
So now that we've seen how the concept art / sprite part of it all works with Airyn's addition to the team, we're confident things will be up to speed in the upcoming months! Airyn works like a beast, has amazing ideas, and executes them flawlessly, with the addition of being a great friend of ours!
What else...I'm still working on my investigation plan (my PhD, hahaa...), Raquel is now taking driving lessons, and she's also been working on the Pride Month piece. We got a sketch yesterday but agreed to modify it a bit after some thought. Initially, Gael was going to be the one getting an illustration for Pride Month this year, but things didn't go as planned (Raquel was frustrated with not being able to come up with a good idea for him) and Amon has taken his place. Happens to the best of us!
Tumblr media
Work this month has been good! A lot of concept and planning that we can't show (well, Kickstarter folks will see more of it) but that is vital for the development of the game. I'm not going to ramble a lot in this one—sometimes you've to go straight to the point!
Thank you everyone who played our 1.1.1 update; thank you for the comments, well-wishes, feedback, and everything else. Also, thanks for keeping our ask box lively and overflowing! 💜
Let's see each other around!
174 notes · View notes
revelboo · 2 months ago
Note
In your drift fic and seeing drift is happy that reader is mad at him and smiling, while his human is not and pissed off lol
Ratchet is also not pleased by this, which is making the situation worse. My boy drift what've you done 😔
He’s trying his best to take care of reader, but tends to neglect caring that much for himself. I figure he and Ratchet aren’t quite together, yet.
Tumblr media
Sure! I think I can use the mass post editor after work tonight to add the valveplug tag to everything. Just figured out my little 🌶️ emoji is searchable. That’s going to make this so much easier 🤣 I’ll get that stuff tagged with valveplug, but it’s going to take me a bit and I’ve got another 8 hour class today. But fair warning, all of what I write has those elements crop up eventually- I write spicy storylines and scenarios. I do write fluff, but I also write a lot of risqué stuff
Tumblr media
The Samurai Code Pt 10
Drift x Reader
• “Can you undo what he did?” You ask, ignoring Drift to glare at Ratchet. Will undoing it leave you slowly dying again? Or was whatever he did enough to permanently cure you? And you smack at his servo without any real heat when Drift tries to run it down your arm. You’re still trying to reconcile the things you’d seen while tangled in him. His guilty need to make amends, his life all right there for you to live and you’d gotten the impression that he’s ancient. To him your life is a moment, it’s nothing.
• “The only way to remove a partial bond is by fully bonding another bot and having them shred the old bond,” Ratchet growls, exhausted with both of you, because whole it’s doable, it’s taboo. And traumatic. Turning his stare on Drift as the bot tries to touch you again and he knows that’s the bond. Needing to touch you, be near you. Eventually to claim all of you. “Do you have any idea how long a human lives?” He demands and the other bot glances at you, but you won’t meet his optics, jaw clenching. Do you know how long they live then? Had you gotten that from the bond?
• “A couple thousand years?” He hazards, servos brushing your spine and you allow it. Allow him to touch you and it eases some of that need spangling through him. Had never really imagined taking a bond mate. Definitely not an organic one, but he doesn’t regret what he did. That he’d saved a life instead of taking it. Your shoulders hunch slightly under his touch. He’ll try to make you happy. Try to take care of you. And it’ll be nice to not be alone, optics lifting to Ratchet, there’s a moment of disconnect. Of a path that he’d been just starting to walk and now he’s pretty sure that choice is lost. Likes the irritable medic, his temper and attitude sparking through him. But it’s not like Ratchet liked him in return.
• “Eighty or ninety years,” you whisper at the same time Ratchet snarls ‘a vorn.’ And Drift just looks from you to the medic. “So you can’t ever do that again,” you add, voice gentle. “If you fully bond to me by accident, you’ll die when I do, won’t you?” And he’s silent staring at you like he can’t believe how short your life is compared to his. Hate that even as you’re furious at him for doing it even though you’d told him no, that you’re also so thankful you want to breakdown crying. Because you didn’t want to die out here far from home.
• Swearing softly, Ratchet slumps back in his chair, head back. And Drift can’t stop staring at you. He’d seen all of you while bonding with you, seen that you’re nothing like he is, that you’re good. Knows he shouldn’t want to claim you fully, to tarnish your brightness with his darkness. But a selfish part of him wants to lose himself in that light, to pretend that he’s only Drift that Deadlock never was. “The bond needs to be replenished regularly or you’ll grow weaker,” he manages. Not a lie. Less than a vorn then to make up for his sins. No time at all, but he’s lived a long time anyway. And looking at Ratchet, regrets hums through him.
Previous
226 notes · View notes
copperbadge · 3 months ago
Text
It's probably for the best that I self-publish, because while I try not to get too indulgent about it, I definitely would get in trouble with an editor for some of the shit I pull in these books.
The goal was to have a character writing a coy and self-satisfied blog post about spending time in a historical recipe archive with a friend, the morning after he and said friend went home and had insanely good sex. The outcome is two paragraphs of self-satisfied coded gloating and then two much longer paragraphs of historical worldbuilding based on what he pulled out of the recipe archive.
Well, I got to spend a fun morning researching food shortages and rationing in mainland Europe, anyway. I'm not sure my concoction of an egg salad made of hardboiled eggs, red onions, olives, and potatoes would be good, but I bet it would be interesting.
238 notes · View notes
aroaceleovaldez · 1 year ago
Text
okay last one for the night but. honestly i really hate how the franchise has been using loyalty to Rick as a shield for so long. If Rick was involved in a project or not doesn't matter, especially not anymore.
ReadRiordan and the publishing for the franchise has been using this tactic for ages - they obscure if any writing related to the series wasn't written by Rick unless it's special circumstances. It's near impossible to find out who the ghostwriters are (Stephanie True Peters and Mary-Jane Knight). TSATS was promoted as the first time we got a non-Riordan (Rick or Haley) author working on one of the companion novels despite having seven already existing ghostwritten books in the series. The only reason Mark Oshiro was emphasized so heavily for TSATS was because they also work as a sensitivity reader for topics such as queer identity, and Rick had received backlash in the past for being a Straight Cis Old White Guy repeatedly falling into bad habits (that he hasn't broken out of) with certain characterizations that he kept doubling-down on or retconning into oblivion. The show emphasizes that Rick was involved, but the LA Times article brings into question exactly how much he was involved, and it doesn't even really matter either way. The ReadRiordan site actively avoids putting any writing credits on their articles (or art credits...) or anywhere on their site.
Practically the entire fandom unanimously agrees the musical - which had zero involvement from Rick - is the best adaptation of the series so far, including the TV show. Some of the best writing to come out of the series recently was the stuff ghostwritten by Stephanie True Peters (Camp Half-Blood Confidential, Camp Jupiter Classified, Nine from the Nine Worlds, etc). And yet when promotional stuff is posted about CHB:C, there's clearly coded language used to hide the fact that Rick himself didn't write it. Yes, that's how ghostwriters work, but at this point we should really stop pretending "Rick Riordan" isn't just a pen name for a group of authors like "Erin Hunter" and that Rick is actually writing everything in the series. I can easily look up and see which Animorphs books were ghostwritten, and who those authors were. I can find every "Erin Hunter" easily listed on official sites. And yet most people don't even know the Riordanverse franchise has ghostwriters at all.
And the franchise is still trying to use the "Tio/Uncle Rick" stuff. Author loyalty and marketing parasocial relationships isn't going to save the franchise when the author himself can't hold up his own original themes or even keep basic series bible details straight, and especially not if the editors are barely if at all doing their job. And please at least get a goddamn series bible by this point.
1K notes · View notes
reignpage · 2 months ago
Text
Tumblr media
Tutorials for Aesthetics
Hi! Reign here :) this guide is dedicated to teaching you how to make:
a) colour gradient text b) dividers c) pictures with gradients
Now, as a disclaimer, I'm not saying you should have all these things on your posts. Having pretty things won't guarantee a boatload of interactions and aesthetics shouldn't take away from the actual substance of your writing. Many fics do very well without all the glitz and glamour, and indeed simplicity goes a long way.
You should always prioritise clarity, improvement, and conviction in your writings. Don't get caught up in trying to look pretty and definitely don't be copying other creators' aesthetics unless they've given consent for you to do so.
This serves only as a starting off point for exploring styles that suit you.
Another disclaimer is that Canva, since I wrote and posted this, has and might make more changes which will render parts of this guide inapplicable, but the main parts should remain the same. Canva is best used with premium but I understand that not everyone can and is willing to spend money on this. So my advice is to find a different platform and search up tutorials online.
How to get the colour gradient text!
༯ I use stuffbydavid.com
༯ Decide if you want a horizontal gradient/middle gradient/three coloured gradient
༯ Pick your colours + write out the text you'd like to be coloured in the text box
༯ You can see the preview and when you're happy copy all the text in the HTML code box
༯ Go on Tumblr, create a post, click the settings icon of the post, then in the Text Editor function change it from Rich Text to HTML
༯ All your coding will be pasted in the HTML side and they'll appear formatted in the Preview on your Tumblr post
Tumblr media Tumblr media Tumblr media
How to make dividers!
Tumblr media Tumblr media Tumblr media
༯ I use Canva
༯ Click Create a design
༯ Click Custom size -> for my colour gradient dividers, I use the 3000 x 40 px but you can use whatever sizing you'd like of course -> experiment to your liking
༯ Click the colour wheel to change your background colour
Tumblr media
༯ You can do solid colours and use whatever hex code you'd like but to make gradients, scroll through the colour palettes to get to the different kinds of gradient options
༯ From there, you can change the colours of the gradient and adjust to your liking
Tumblr media Tumblr media
༯ To download it, click Share, Download, keep it PNG, size 1 and Download for real
Tumblr media
༯ On Tumblr, you're going to just drag and drop that downloaded image on the website or if you're on the app, just add it as a picture and adjust it where you'd like it to go on the post
༯ If you were to have drawings like the hearts or croissants for the divider, you'll want to adjust the Custom size, arrange the pictures or elements on the page, and download with a transparent background (it requires a premium subscription unfortunately but if you do the free trial and just make a bunch of banners and dividers before it runs out, you should be good)
Tumblr media Tumblr media
༯ A lot of this will involve experimenting for what works for you. There's no cheat code to that, unfortunately. But have fun with it. Don't be afraid to trial and fail -- everyone did at some point
How to add gradient colour to pictures!
༯ Use Canva again
༯ Click Custom size -> 3000 x 800 px (or, again, whatever size you like)
༯ Pick a picture you like -> for manga panels, I like to use Pinterest
༯ Drag that picture onto the blank page and adjust to fit
Tumblr media
༯ Click Add Page -> on that page, change the background colour. You can use solid colours or gradient colours, it's the same process as for making gradient dividers
Tumblr media
༯ Click the colour page, copy and paste it on your picture
༯ Adjust the transparency of your picture depending on how opaque you'd like the colour to be
Tumblr media Tumblr media
༯ Delete the colour page and keep the picture
༯ Then, again, click Share and Download
༯ This is the final product -> you can obviously find better pictures and do whatever colours you'd like, this was just an example
Tumblr media
༯ I'm not very tech savvy so if my explaining is terrible, I am so sorry 😭 but hopefully this makes senses and encourages you to experiment and be bolder with your layout!
Tumblr media
149 notes · View notes