#fix broken link git
Explore tagged Tumblr posts
smurfton · 3 months ago
Text
As a sequel to this, if you want to learn more about how git works, there's tutorials in its documentation that go further in depth.
Some things that aren't in the interactive link above which I've found handy below the cut
What if you want to learn about every commit that is part of newBranch but not part of commit c1? (If there's no merges this just means every commit between c1 and newBranch). You can use:
log c1..newBranch
to only see that. (You can actually use this <commit-ish>..<commit-ish> notation anywhere that would accept a list of commits, like cherry-pick)
What if you have two branches, nextRelease and pastReleaseFixes, and the tree is too complicated and big to follow how they connect, but you know something going into nextRelease fixed something that's broken in pastReleaseFixes, and that it's related to the file my/important/file.cpp?
git log pastReleaseFixes..nextRelease -- my/important/file.cpp
Will show you only commits that are in nextRelease (but not pastReleaseFixes), and filter that to only commits that touched the file you care about. (You can actually choose a function or series of lines in the file, too). See
A different bug fixing option is git bisect. You tell it about a time when things were bad and a time when things were good, and it picks a place in the middle for you to check. Even with 1000 commits to go through, it'll find the problem in only ten tries!
Fancier than I am includes stuff like how git is properly decentralized. You can have more than one remote, such as the computer of each person you're working with, if you don't like showing your work to a company. That's why git wants you to say origin — you could say something else and it would go to a different place
Me upon discovering an online game that helps you learn git: haha I've been using git for years now, I could skip ahead many levels, methinks hahaha no, no, I'll be humble and start on level 1
Me on level 5: You can do what??? There are commands for what???
13K notes · View notes
santecky2 · 6 months ago
Text
What Skills Are Required To Use Selenium Effectively?
Tumblr media
Introduction
Selenium is a widely used open-source tool for web browser automation and testing web applications. It provides testers and developers with a flexible and efficient platform to ensure the quality and functionality of web-based software. However, to leverage Selenium effectively, individuals need a robust set of skills. This article explores the essential technical and soft skills that empower professionals to excel with Selenium.
Understanding The Basics Of Web Technologies
Before diving into Selenium, it's crucial to have a solid grasp of fundamental web technologies. Embark on the journey to unlock the full potential of automation testing with Selenium Training in Chennai at Infycle Technologies, the leading destination for mastering automation tools.  These include:
HTML, CSS, and JavaScript: Since Selenium interacts with web elements like buttons, forms, and links, understanding how these elements are structured and styled is essential.
DOM (Document Object Model): Familiarity with the DOM enables testers to locate and interact efficiently with elements on a webpage.
HTTP Protocols: Knowing how web browsers communicate with servers helps understand page load issues and debug network-related test failures.
Proficiency In Programming Languages
Selenium supports multiple programming languages, including Python, Java, C#, Ruby, & JavaScript. To use Selenium effectively, one must:
Choose a programming language based on project requirements and team expertise.
Master the selected language's syntax, logic, and object-oriented programming (OOP) concepts.
Understand how to write clean, maintainable, and modular code.
For example, Python is often favoured for its simplicity, while Java is widely used in enterprise environments.
Knowledge Of Selenium Frameworks
Familiarity with Selenium frameworks enhances test automation. Key frameworks include:
TestNG and JUnit (for Java): These testing frameworks allow for better organization, annotation, and test execution.
Pytest (for Python): A robust framework that simplifies test case management and reporting.
Page Object Model (POM): A design pattern used to create object repositories for web elements, improving test script readability and reusability.
XPath And CSS Selectors Mastery
Locating elements is a core functionality in Selenium. XPath and CSS selectors are powerful tools for identifying elements on a webpage. Skills in:
Writing efficient and precise XPath expressions.
Utilizing CSS selectors for faster and cleaner element identification.
Handling dynamic elements with relative XPath or custom attributes.
Version Control Systems (VCS)
Selenium scripts are often part of larger development projects. Using version control systems like Git ensures collaboration and proper version management. A Selenium tester should:
Understand Git commands for committing, branching, merging, and reverting changes.
Use platforms like GitHub or GitLab for code sharing and version tracking.
Familiarity With Continuous Integration/Continuous Deployment (CI/CD) Tools
In modern software development, CI/CD tools integrate Selenium scripts into automated pipelines. Popular CI/CD tools include:
Jenkins: For scheduling and managing automated test runs.
CircleCI and Travis CI: For seamless integration of test scripts with deployment processes.
Understanding how to configure these tools and integrate Selenium tests into the pipeline is invaluable.
Debugging And Problem-Solving Skills
Test automation often involves troubleshooting. Effective debugging skills include:
Identifying and resolving broken locators, synchronization problems, and environment-specific errors.
Using browser developer tools to inspect web elements and network activity.
Logging errors and analyzing stack traces for quick fixes.
Soft Skills: Communication And Team Collaboration
Technical expertise is only part of the equation. Selenium testers often work in collaborative environments where soft skills matter. These include:
Clear Communication: Explaining test results and automation coverage to non-technical stakeholders.
Team Collaboration: Working closely with developers, product managers, and QA teams to align testing objectives with business goals.
Adaptability: Adjusting to new tools, frameworks, and methodologies as projects evolve.
Experience With Testing Methodologies
A strong foundation in testing methodologies enhances the effectiveness of Selenium testing. Key methodologies include:
Manual Testing Fundamentals: Understanding the principles of manual testing provides insights into writing meaningful automated tests.
Agile and DevOps Practices: Familiarity with iterative development models ensures test automation aligns with rapid development cycles.
Test Strategies: Creating test plans, prioritizing cases, and managing test environments.
Database And API Knowledge
Web applications often interact with databases and APIs. Enhance your journey toward a successful career in software development with Infycle Technologies, the Best Software Training Institute in Chennai. Selenium testers should:
Understand basic SQL queries to verify back-end data.
Use API testing tools like Postman or REST-assured for end-to-end testing scenarios.
Cloud Testing Platforms
Cloud-based platforms like BrowserStack and Sauce Labs allow for cross-browser and cross-platform testing. Skills required include:
Configuring tests to run on different browser and OS combinations.
Using platform-specific features for debugging and reporting.
Keeping Up With Updates And Trends
Selenium evolves continuously, and staying updated is vital. This includes:
Learning new features introduced in Selenium WebDriver.
Understanding emerging technologies like Selenium Grid 4 for distributed testing.
Exploring alternatives or complementary tools like Cypress and Playwright.
Conclusion
Mastering Selenium requires technical expertise, problem-solving capabilities, and collaborative skills. By building a strong foundation in programming, web technologies, and testing frameworks while staying adaptable to new trends, professionals can harness the full potential of Selenium for robust test automation. Whether you are a beginner or an experienced tester, developing these skills will ensure that you remain competitive in the ever-evolving field of software testing.
0 notes
pace-ai · 8 months ago
Text
Mastering Software Documentation in 5 Easy Steps
In the fast-paced world of software development, comprehensive documentation serves as the cornerstone of successful projects. Whether building enterprise applications, mobile apps, or cloud services, clear and well-maintained documentation ensures knowledge transfer, reduces onboarding time, and improves overall software quality. This guide presents a systematic approach to creating and maintaining effective software documentation, breaking down the process into five manageable steps. From understanding fundamental concepts to implementing continuous improvement strategies, these steps will transform your documentation from a necessary evil into a valuable asset that drives project success and team efficiency.
Tumblr media
Here are 5 easy steps to master Software Documentation
1. Understanding the Foundations of Software Documentation
Defining Documentation Types
Documentation comes in various forms, each serving a unique purpose in the software development lifecycle. Technical specifications outline system architecture and design decisions. User manuals guide end-users through software functionality. API documentation enables developers to integrate with your system effectively. Installation guides facilitate smooth deployments. Release notes track changes and updates across versions.
Identifying Your Audience
Understanding your audience fundamentally shapes documentation strategy. Developer-focused documentation demands technical depth and code examples. End-user documentation requires clear, jargon-free explanations. System administrator documentation needs comprehensive configuration details. Each audience segment brings distinct technical expertise, expectations, and information needs.
Setting Clear Documentation Goals
Documentation goals should align with organizational objectives while meeting user needs. Establish measurable success metrics: reduced support tickets, increased user adoption, or faster onboarding times. Define scope boundaries to prevent scope creep. Create documentation that serves as a single source of truth for your software system.
Understanding Documentation Lifecycles
Documentation evolves alongside software development. Initial drafts capture core functionality. Beta testing reveals gaps and areas needing clarification. Post-release updates reflect bug fixes and feature additions. Eventually, some documentation becomes obsolete and requires archiving or updating.
2. Planning Your Documentation Strategy
Creating Documentation Templates
Templates ensure consistency across documentation types. Include standard sections: overview, prerequisites, step-by-step instructions, troubleshooting guides, and reference materials. Standardize formatting, heading hierarchies, and naming conventions. Design templates that accommodate various content types while maintaining visual coherence.
Establishing Style Guides
Style guides maintain documentation consistency. Define voice and tone guidelines - typically professional yet approachable. Specify terminology preferences, including approved technical terms and acronyms. Outline formatting standards for code snippets, screenshots, and diagrams. Create clear rules for version numbering and change tracking.
Setting Up Version Control
Version control systems safeguard documentation integrity. Git repositories track changes and maintain version history. Branch strategies separate work-in-progress from published content. Pull request workflows facilitate collaborative editing and review processes. Consider documentation-as-code approaches for technical documentation.
Defining Documentation Workflows
Streamlined workflows accelerate documentation development. Establish clear processes for content creation, review, approval, and publication. Implement automated checks for formatting and broken links. Define roles and responsibilities within the documentation team. Create emergency update procedures for critical fixes.
Choosing Documentation Tools
Select tools that support your documentation strategy. Static site generators like Jekyll or Hugo excel at technical documentation. Wiki platforms facilitate collaborative editing. API documentation tools auto-generate reference materials. Consider integration capabilities with existing development tools and content management systems.
3. Writing Effective Documentation
Structuring Content Hierarchically
Logical content hierarchies enhance navigation and comprehension. Start with high-level concepts before diving into details. Group related topics together. Use consistent heading levels to indicate content relationships. Create clear paths through complex technical concepts.
Implementing Clear Formatting
Strategic formatting improves readability. Utilize white space to prevent information overload. Implement consistent paragraph lengths - typically 3-5 sentences. Use bullet points and numbered lists for sequential instructions. Apply semantic markup for emphasis and code snippets.
Writing Clear and Concise Instructions
Precision matters in technical writing. Begin each instruction with an action verb. Eliminate ambiguous language. Break complex procedures into discrete steps. Anticipate common questions and address them proactively. Maintain active voice for clarity.
Including Relevant Examples
Examples bridge theory and practice. Provide real-world use cases demonstrating concept application. Include both simple and complex examples to serve varying skill levels. Show example outputs or results. Highlight best practices and common pitfalls through practical demonstrations.
Adding Visual Elements
Strategic visuals enhance understanding. Screenshots guide users through interface interactions. Diagrams illustrate system architectures and workflows. Code snippets demonstrate implementation details. Charts and graphs visualize complex data relationships. Ensure all visual elements include descriptive alt text.
4. Reviewing and Testing Documentation
Conducting Peer Reviews
Peer reviews catch errors and improve quality. Establish review checklists covering technical accuracy, clarity, and completeness. Rotate reviewers to maintain fresh perspectives. Document review feedback for future reference. Consider both technical and non-technical reviewers.
Testing Instructions
Validate documentation through practical testing. Follow instructions exactly as written to identify missing steps. Test in clean environments matching user conditions. Verify all code examples execute successfully. Document edge cases and error scenarios.
Gathering User Feedback
User feedback drives improvements. Implement feedback mechanisms: surveys, comments, or issue tracking. Monitor support channels for documentation-related questions. Conduct user testing sessions. Track common points of confusion or frustration.
Making Iterative Improvements
Continuous improvement enhances documentation quality. Address user feedback promptly. Update examples to reflect current best practices. Refine explanations based on common questions. Remove or update obsolete information regularly.
Validating Technical Accuracy
Technical validation ensures documentation reliability. Verify all technical claims and specifications. Test code examples in multiple environments. Review API endpoint descriptions and parameters. Confirm compatibility information and system requirements.
5. Maintaining and Updating Documentation
Establishing Update Schedules
Regular updates maintain documentation relevance. Schedule periodic reviews of all documentation sections. Align updates with software release cycles. Prioritize updates based on user impact and feedback. Plan for both minor corrections and major revisions.
Managing Version History
Version history provides accountability and context. Track significant changes through clear changelog entries. Maintain archived versions of major documentation releases. Document breaking changes prominently. Enable users to access historical documentation when needed.
Archiving Outdated Content
Strategic archiving prevents confusion. Remove or clearly mark deprecated documentation. Maintain archives for historical reference. Redirect old documentation links to current versions. Consider maintaining legacy documentation for users on older software versions.
Monitoring Usage Analytics
Analytics inform documentation strategy. Track page views and time spent on documentation sections. Identify common search terms and navigation patterns. Monitor documentation link clicks and downloads. Use data to guide content priorities and improvements.
Implementing Continuous Improvement
Embrace ongoing enhancement opportunities. Regularly review and update style guides. Refine documentation processes based on team feedback. Explore new documentation tools and technologies. Stay current with industry documentation best practices.
Conclusion
Mastering software documentation requires strategic planning, clear processes, and continuous attention to quality. By following these five steps - understanding foundations, planning effectively, writing clearly, reviewing thoroughly, and maintaining consistently - teams can create and maintain documentation that truly serves their users' needs. Remember that documentation is a living asset that requires ongoing investment to maintain its value to the organization and its users.
youtube
1 note · View note
this-week-in-rust · 2 years ago
Text
This Week in Rust 519
Hello and welcome to another issue of This Week in Rust! Rust is a programming language empowering everyone to build reliable and efficient software. This is a weekly summary of its progress and community. Want something mentioned? Tag us at @ThisWeekInRust on Twitter or @ThisWeekinRust on mastodon.social, or send us a pull request. Want to get involved? We love contributions.
This Week in Rust is openly developed on GitHub and archives can be viewed at this-week-in-rust.org. If you find any errors in this week's issue, please submit a PR.
Updates from Rust Community
Official
A tale of broken badges and 23,000 features
crates.io: Dropping support for non-canonical downloads
Generators are dead, long live coroutines, generators are back
Project/Tooling Updates
ratatui 0.24.0 is released! (Rust library that's all about cooking up terminal user interfaces)
git-cliff 1.4.0 is released! (highly customizable changelog generator)
rust-analyzer changelog #205
Progress report on rustc_codegen_cranelift (Oct 2023)
Observations/Thoughts
System dependencies are hard (so we made them easier)
Was Rust Worth It?
Can Rust prevent logic errors?
Faster Rust Serialization
Dealing with Dependencies in Rust
How I learned to stop worrying and love byte ordering
How To Move Fast With Rust
Starting a virtual Rust meet-up
[video] Impl Trait aka Look ma’, no generics! by Jon Gjengset
Rust Walkthroughs
Fully Automated Releases for Rust Projects
The beauty of a Rust message processor
interrupts is threads
htmx, Rust & Shuttle: A New Rapid Prototyping Stack
[video] Async Not Required 🦀
Research
Functional Ownership through Fractional Uniqueness
Grading on a Curve: How Rust can Facilitate New Contributors while Decreasing Vulnerabilities
Miscellaneous
[video] 5 Hours to 7.7 Seconds: How Database Tricks Sped up Rust Linting Over 2000x
Crate of the Week
This week's crate is silkenweb, a library for building web apps with fine-grained reactivity and a clean separation of logic and UI.
Thanks to henrik for the suggestion!
Please submit your suggestions and votes for next week!
Call for Participation
Always wanted to contribute to open-source projects but did not know where to start? Every week we highlight some tasks from the Rust community for you to pick and get started!
Some of these tasks may also have mentors available, visit the task page for more information.
pubgrub - Move to edition 2021
pubgrub - Fix CI for conventional commits
pubgrub - Rename v0.3 Range into BoundedRange
pubgrub - OfflineDependencyProvider should get its own module
Ockam - Library - Slim down the NodeManagerWorker for node / tcp
Ockam - Make ockam vault delete (no args) interactive by asking the user to choose from a list of vaults to delete (tuify)
Ockam - Command - refactor to use typed interfaces to implement commands for services
If you are a Rust project owner and are looking for contributors, please submit tasks here.
Updates from the Rust Project
408 pull requests were merged in the last week
-Zunpretty help: add missing possible values
NVPTX: allow PassMode::Direct for ptx kernels for now
OptWithInfcx naming nits, trait bound simplifications
deduce_param_attrs: explain a read-only case
rustc_interface cleanups
stack_overflow: get_stackp using MAP_STACK flag on dragonflybsd too
add bootstrap flag --skip-stage0-validation
add method to convert internal to stable constructs
add support for i586-unknown-netbsd as target
add support for mipsel-unknown-netbsd, 32-bit LE mips
add target features for LoongArch
add way to differentiate argument locals from other locals in Stable MIR
allow partially moved values in match
allow target specs to use an LLD flavor, and self-contained linking components
allows #[diagnostic::on_unimplemented] attributes to have multiple
avoid repeated interning of env!("CFG_RELEASE")
avoid unbounded O(n^2) when parsing nested type args
avoid unnecessary builds/rebuilds of rust-demangler
avoid unnecessary renumbering during borrowck
c-variadic error improvements
consider alias bounds when computing liveness in NLL (but this time sound hopefully)
const stabilize mem::discriminant
correctly handle nested or-patterns in exhaustiveness
coverage: consistently remove unused counter IDs from expressions/mappings
coverage: replace manual debug indents with nested tracing spans in counters
create windows/api.rs for safer FFI
create a new ConstantKind variant (ZeroSized) for StableMIR
declare rustc_target's dependency on object/macho
deny providing explicit effect params
derive Ord, PartialOrd and Hash for SocketAddr*
detect when trait is implemented for type and suggest importing it
do not suggest 'Trait<Assoc=arg>' when in trait impl
don't normalize to an un-revealed opaque when we hit the recursion limit
don't treat closures/coroutine types as part of the public API
don't use LFS64 symbols on musl
eat close paren if capture_cfg to avoid unbalanced parens
enable cg_clif tests for riscv64gc
fail typeck for illegal break-with-value
fix ICE: Restrict param constraint suggestion
fix failure to detect a too-big-type after adding padding
fix inline const pattern unsafety checking in THIR
fix missing leading space in suggestion
fix unused variables lint issue for args in macro
fix unwrap suggestion for async fn
generate aggregate constants in DataflowConstProp
handle ReErased in responses in new solver
ignore RPIT duplicated lifetimes in opaque_types_defined_by
implement C ABI lowering for CSKY
implement gen blocks in the 2024 edition
improve android-ndk property interface
improve some diagnostics around ?Trait bounds
improve the warning messages for the #[diagnostic::on_unimplemented]
increase the reach of panic_immediate_abort
intern LocalDefId list from opaque_types_defined_by query
introduce -C instrument-coverage=branch to gate branch coverage
invalid ? suggestion on mismatched Ok(T)
lint overlapping ranges as a separate pass
mark .rmeta files as /SAFESEH on x86 Windows
mark constructor of BinaryHeap as const fn
never consider raw pointer casts to be trival
on object safety error, mention new enum as alternative
on unresolved imports, suggest a disambiguated path if necessary to avoid collision with local items
only call mir_const_qualif if absolutely necessary
only emit one error per unsized binding, instead of one per usage
poison check_well_formed if method receivers are invalid to prevent typeck from running on it
print variadic argument pattern in HIR pretty printer
properly restore snapshot when failing to recover parsing ternary
quietly fail if an error has already occurred
rand use getrandom for freebsd (available since 12.x)
refactor type visitor walking
remap Cargo dependencies to /rust/deps
remove -Zdep-tasks
remove Apple RNG fallbacks and simplify implementation
remove fold code and add Const::internal() to StableMIR
remove support for alias -Z instrument-coverage
require target features to match exactly during inlining
return multiple object-safety violation errors and code improvements to the object-safety check
return unfixed len if pat has reported error
rework negative coherence to properly consider impls that only partly overlap
rustdoc: elide cross-crate default generic arguments
rustdoc: use ThinVec in GenericParamDefKind
see through aggregates in GVN
separate move path tracking between borrowck and drop elaboration
share some track_caller logic between interpret and codegen
small ty::print cleanups
some diagnostics improvements of gen blocks
stash and cancel cycle errors for auto trait leakage in opaques
stop telling people to submit bugs for internal feature ICEs
store #[stable] attribute's since value in structured form
suggest assoc fn new when trying to build tuple struct with private fields
suggest unwrap/expect for let binding type mismatch
tvOS simulator support on Apple Silicon for rustc
tweak suggestion span for outer attr and point at item following invalid inner attr
uplift Canonical to rustc_type_ir
uplift ClauseKind and PredicateKind into rustc_type_ir
use ImageDataType for allocation type
validate feature and since values inside #[stable(…)]
when encountering sealed traits, point types that implement it
when expecting closure argument but finding block provide suggestion
work around the fact that check_mod_type_wf may spuriously return ErrorGuaranteed
time: use clock_gettime on macos
windows: support sub-millisecond sleep
refactor some char, u8 ASCII functions to be branchless
add #[inline] to some recalcitrant ops::range methods
stabilize ratified RISC-V Target Features
stabilize [const_]pointer_byte_offsets
stabilize inline asm usage with rustc_codegen_cranelift
futures: add TryAll and TryAny adapters
futures: fix Sync impl of FuturesUnordered
futures: provide AtomicWaker if portable-atomic feature is enabled, even if atomic CAS is not available
codegen_gcc: add basics for test command in build system
codegen_gcc: fix volatile_load
cargo toml: Allow version-less manifests
cargo toml: Decouple parsing from interning system
cargo: shell: Write at once rather than in fragments
cargo: add new packages to [workspace.members] automatically
cargo: move up looking at index summary enum
cargo: remove duplicate binaries during install
cargo: remove outdated option to -Zcheck-cfg warnings
rustfmt: fixed error caused by combination of match_arm_blocks and control_brace_style
clippy: ignored_unit_patterns: check &(), &&(),
clippy: iter_without_into_iter: fix papercuts in suggestion and restrict linting to exported types
clippy: let_and_return: Wrap with parenthesis if necessary
clippy: add waker_clone_and_wake lint to check needless Waker clones
clippy: fix missing parenthesis in suboptimal floating point help
clippy: ignore lower-camel-case words in doc_markdown
clippy: move read_zero_byte_vec to nursery
clippy: remove internal feature from clippy_utils
clippy: remove the internal_warn lint category
rust-analyzer: make extract_variable assist in place
Rust Compiler Performance Triage
This week we have two sets of results as last week's arrived later than the publish date:
Triage done by @rylev and @simulacrum.
Revision range: b9832e72..650991d
Across both reports:
9 Regressions, 7 Improvements, 5 Mixed 127 artifact comparisons made in total
Full report #1
Full report #2
Approved RFCs
Changes to Rust follow the Rust RFC (request for comments) process. These are the RFCs that were approved for implementation this week:
2024 Edition
Final Comment Period
Every week, the team announces the 'final comment period' for RFCs and key PRs which are reaching a decision. Express your opinions now.
RFCs
[disposition: merge] Lifetime Capture Rules 2024
[disposition: merge] Add "crates.io Policy Update" RFC
Tracking Issues & PRs
[disposition: merge] Override Waker::clone_from to avoid cloning Wakers unnecessarily
[disposition: merge] dropck_outlives check whether generator witness needs_drop
[disposition: merge] stricter hidden type wf-check
[disposition: merge] Tracking Issue for the GroupBy and GroupByMut iterators
[disposition: merge] Don't panic in <BorrowedCursor as io::Write>::write
[disposition: merge] Guarantee that char has the same size and alignment as u32
[disposition: merge] Stabilize const_maybe_uninit_zeroed and const_mem_zeroed
[disposition: merge] Clarify UB in get_unchecked(_mut)
[disposition: merge] document that the null pointer has the 0 address
[disposition: close] regression: parameter type may not live long enough
Language Reference
[disposition: merge] Guarantee that raw pointer conversions preserve slice element count
Unsafe Code Guidelines
No Unsafe Code Guideline RFCs entered Final Comment Period this week.
New and Updated RFCs
No New or Updated RFCs were created this week.
Call for Testing
An important step for RFC implementation is for people to experiment with the implementation and give feedback, especially before stabilization. The following RFCs would benefit from user testing before moving forward:
No RFCs issued a call for testing this week.
If you are a feature implementer and would like your RFC to appear on the above list, add the new call-for-testing label to your RFC along with a comment providing testing instructions and/or guidance on which aspect(s) of the feature need testing.
Upcoming Events
Rusty Events between 2023-11-01 - 2023-11-29 🦀
Virtual
2023-11-01 | Virtual (Cardiff, UK)| Rust and C++ Cardiff
ECS with Bevy Game Engine
2023-11-01 | Virtual (Indianapolis, IN, US) | Indy Rust
Indy.rs - with Social Distancing
2023-11-02 | Virtual (Charlottesville, NC, US) | Charlottesville Rust Meetup
Crafting Interpreters in Rust Collaboratively
2023-11-07 | Virtual (Berlin, DE) | OpenTechSchool Berlin
Rust Hack and Learn | Mirror
2023-11-07 | Virtual (Buffalo, NY, US) | Buffalo Rust Meetup
Buffalo Rust User Group, First Tuesdays
2023-11-09 | Virtual (Nuremberg, DE) | Rust Nuremberg
Rust Nürnberg online
2023-11-14 | Virtual (Dallas, TX, US) | Dallas Rust
Second Tuesday
2023-11-15 | Virtual (Cardiff, UK)| Rust and C++ Cardiff
Building Our Own Locks (Atomics & Locks Chapter 9)
2023-11-15 | Virtual (Richmond, VA, US) | Linux Plumbers Conference
Rust Microconference in LPC 2023 (Nov 13-16)
2023-11-15 | Virtual (Vancouver, BC, CA) | Vancouver Rust
Nightly Night: impl Trait in Type Aliases
2023-11-16 | Virtual (Charlottesville, NC, US) | Charlottesville Rust Meetup
Crafting Interpreters in Rust Collaboratively
2023-11-21 | Virtual (Berlin, DE) | OpenTechSchool Berlin
Rust Hack and Learn
2023-11-21 | Virtual (Washington, DC, US) | Rust DC
Mid-month Rustful
2023-11-28 | Virtual (Dallas, TX, US) | Dallas Rust
Last Tuesday
Europe
2023-11-01 | Cologne, DE | Rust Cologne
Web-applications with axum: Hello CRUD!
2023-11-07 | Bratislava, SK | Bratislava Rust Meetup Group
Rust Meetup by Sonalake
2023-11-07 | Aarhus, DK | Rust Aarhus
Rust Aarhus - Rust and Talk beginners edition
2023-11-07 | Lyon, FR | Rust Lyon
Rust Lyon Meetup #7
2023-11-09 | Barcelona, ES | BcnRust
11th BcnRust Meetup
2023-11-09 | Paris, FR | Paris Rustaceans
Rust Meetup in Paris
2023-11-09 | Reading, UK | Reading Rust Workshop
Reading Rust Meetup at Browns
2023-11-21 | Augsburg, DE | Rust - Modern Systems Programming in Leipzig
GPU processing in Rust
2023-11-23 | Biel/Bienne, CH | Rust Bern
Rust Talks Bern @ Biel: Embedded Edition
North America
2023-11-01 | Brookline, MA, US | Boston Rust Meetup
Boston Common Rust Lunch
2023-11-02 | Mountain View, CA, US | Mountain View Rust Meetup
Rust Meetup at Hacker Dojo
2023-11-08 | Boulder, CO, US | Boulder Rust Meetup
Let's make a Discord bot!
2023-11-14 | New York, NY, US | Rust NYC
Rust NYC Monthly Mixer: Share, Show, & Tell! 🦀
2023-11-14 | Seattle, WA, US | Cap Hill Rust Coding/Hacking/Learning
Rusty Coding/Hacking/Learning Night
2023-11-15 | Richmond, VA, US + Virtual | Linux Plumbers Conference
Rust Microconference in LPC 2023 (Nov 13-16)
2023-11-16 | Mountain View, CA, US | Mountain View Rust Meetup
Rust Meetup at Hacker Dojo
2023-11-16 | Nashville, TN, US | Music City Rust Developers
Python loves Rust!
2023-11-16 | Seattle, WA, US | Seattle Rust User Group
Seattle Rust User Group Meetup
2023-11-21 | San Francisco, CA, US | San Francisco Rust Study Group
Rust Hacking in Person
2023-11-22 | Austin, TX, US | Rust ATX
Rust Lunch - Fareground
Oceania
2023-11-06 | Perth, WA, AU | Rust Perth Meetup Group
Embracing Lifetimes: A Journey to Safe and Efficient Code
2023-11-21 | Christchurch, NZ | Christchurch Rust Meetup Group
Christchurch Rust meetup meeting
2023-11-28 | Canberra, ACT, AU | Rust Canberra
November Meetup
If you are running a Rust event please add it to the calendar to get it mentioned here. Please remember to add a link to the event too. Email the Rust Community Team for access.
Jobs
Please see the latest Who's Hiring thread on r/rust
Quote of the Week
After doing a best fit, we found Rust projects were less likely to introduce vulnerabilities than their equivalent C++ projects at all relevant experience levels, but more importantly, we found the effect was most significant for first-time contributors, who were almost two orders of magnitude less likely to contribute vulnerabilities. That is, even though Rust may have a reputation as a harder language to learn, there is a very measurable effect that makes it better for newbies. Reviewers should not have to put as much effort into reviewing code to be confident that someone making their first foray into their project is accidentally adding a vulnerability.
– Justin Tracey on crysp.org
Thanks to Brian Kung for the suggestion!
Please submit quotes and vote for next week!
This Week in Rust is edited by: nellshamrell, llogiq, cdmistman, ericseppanen, extrawurst, andrewpollack, U007D, kolharsam, joelmarcey, mariannegoldin, bennyvasquez.
Email list hosting is sponsored by The Rust Foundation
Discuss on r/rust
1 note · View note
the-broken-truth · 4 years ago
Note
I love all your headcanons with the Dimitrescu daughters, so hats off to you, if it doesn't bother, can you do a headcanon about the 3 daughters with a male S/O on their wedding night?
Broken Truth: Hmm, that sounds simple enough. Let the words...
*STATIC*: Broken, wait. I have an idea.
Broken Truth (Looks at the mask): Let me hear it, *STATIC*.
*STATIC*: Do you remember the ask you did for Lady Dimitrescu meeting her daughters' partners: Th Village Painter, The Village Jeweler, and The Village Blacksmith?
Broken Truth: Yes, what about them?
*STATIC*: Here's my idea. (Whispering something)
Broken Truth: Oh! I like that idea! Let's go with that. Let the words weave together! - Names - Bela's Partner - The Village Artist - His name shall be Magnus. Cassandra's Partner - The Village Jeweler - His name shall be Matias. Daniela's Partner - The Village Blacksmith - His name shall be Maximus.
[At The Wedding of Magnus Vilkas & Bela Dimitrescu]
The Court of Castle Dimitrescu was decorated with the finest exports all across Romania - The Vilkas Lord spared to expense when it came to making his future wife happy; she was the very light of his life.
He stood in the room allowed her future son-in-law to use to prepare himself, looking himself in the mirror as he adjusted his tie.
The gleam of his Family Ring shined in the light when he secured his tie around his neck. He holds out his dominant hand, looking upon the colored gems that created his Family Crest. This ring gave him so much power and standing as a Noble Village House but at the same time, it brought back a very painful memory.
Before the Lord of House Vilkas could think back on it, there was a knock at the door. He spoke to the other person on the other side of the door, commanding them to enter: The door opened and a familiar face stepped into the room - The Village's Jeweler, Matias.
"Greetings, Lord Vilkas." The Jeweler bowed but it was met with a scoff from the Lord.
"Do not bow to me, Matias. You are a Vilkas as well, besides you're my twin brother; no formalities." The Lord said as he faced his brother.
"Regardless of our blood bind as brothers, you are still the Lord of House Vilkas and must be treated as such, even by blood,
" Matias said.
"Speaking of blood..." Magnus inhaled and exhaled before asking his question, "Did he come?" He asked.
"No. When I went to his house to see if he would attend, he slammed to door in my face; he says he wants nothing to do with the Vilkas Family." Matias explained causing the lord to turn his gaze to the ground in what looked to be heartbreak, "My Lord, it was not your fault." He said.
"Oh, really? Then why is he not here? It was my birth that ruined his life and...it's not fair - we were both robbed: Him of his rightful place and me an older brother." The Lord of Vilkas said.
"Brother, you and I were born on the same day but you are the only one he blames. If anyone is to blame, it's father; he was the selfish bastard that robbed us both." Matias said as he walked over to his elder brother and placed his hand on his shoulder, "Try not to think about this today, it's a very special day."
"Yes, you are right. Today is the day I marry the most amazing woman on the face of the Earth." Magnus smiled.
"Second best, Brother - My Cassandra is the most beautiful." Matias said with a smirk
The brothers argued over which sister was the most lovely when they saw the time and finished up before heading down the Courtyard.
The music - composed by Matias on the keyboard - began to play as Bela - wrapped in the finest silks that made her dress - walked down the aisle by her mother with her youngest sister walking behind her with a basket of black rose petals, throwing them in the air.
Once Bela reached the front, her hands locked with Magnus', who looked into her eyes with tears in his own.
"You are a true gem, my beloved." He said.
"Thank you, My Lord."
Mother Miranda - who took the position of a power of a priestess - called out to the guests: The Lords, The Daughters of Dimitrescu, and the residence of House Vilkas.
Once the vows were read and the 'I Do's were side, "By the power vested in me, I now pronounce you husband and wife. You may kiss your bride."
And he did, with all the love in his heart - which was endless.
[At The Wedding of Matias Vilkas & Cassandra Dimitrescu]
The Famed Jeweler of the Romanian Village smiled at himself in the mirror as he fixed his suit's jacket with a wide smile on his face - the Vilkas Family Crest Brooch secured to his chest over his heart and soon, he was going to place the crest of the Dimitrescu Dragons beside his own.
"You smile as if you are the cat that devoured creme." His elder brother chuckled from his place by the dresser, "You are really happy, aren't you?"
"Why wouldn't I be? I am going to marry the most incredible woman on the face of this planet - a true goddess given human form." Matias beamed as he fixed his tie.
"We've been through this, Little Brother - Bela is the most incredible." Magnus scoffed.
"Your opinion - Not Fact. Besides, My Cassandra shall always be the most amazing woman in my eyes; she is just too perfect to explain with words. I'm glad Madam Dimitrescu allowed me the privilege of marrying her daughter, I don't deserve her." Matias said with a smile as he thought back.
"I thought the same thing when I was getting married to Bela - she still is a wonder I shall never really deserve but I will always treasure." Magnus smiled.
"Oh, speaking of you two - I heard Madam Dimitrescu told you she wanted a grandchild soon." Matias said as he looked back at his brother, whose face was bright red.
"As much as Mother-In-Law would want a grandchild, I told her that I was waiting on Bela to be ready - we shall have a child when Bela is ready, not a moment before then." Magnus said.
"Good to know you treasure your wife's decision, did she finish redecorating the Family House?" Matias asked.
"So far, she can't seem to choose what she wants to change or what rooms she wants to make into her private rooms. On a better note, the staff willingly let Bela fed off them if she gets hungry and I'm not around. How's your construction going?" Magnus asked.
"Almost done, Cass held me draw up the plans so I know she's going to love the place. It will be ready in a weak." Matias said.
The brothers looked at the clock and saw it was almost time for the bride to come. They finished up with their own preparations and headed down the courtyard.
The violinists that Magnus hired began playing the song as Cassandra walked down the aisle with a bouquet of black roses in her hands & a smile on her face with a gleam in her eyes.
Matias stood at the altar with Mother Miranda with a smile on his face as his future wife came up and they linked hands.
"You are so breathtaking, My Beloved." Matias said.
"Thank you, you're very handsome yourself."
Mother Miranda began her rites - blessing the young couple before her and everyone else with long life, eternal love & endless happiness before the 'I do's were said and the marital bond sealed with a kiss.
Everyone was so busy celebrating the newly married couple that they didn't notice a large cloaked figure walk to the table that held the gits and place a small envelope on the table.
The feast began and the presents were given, The Lord of Iron found the envelope and didn't remember it being there at first and gave it to the new couple.
Matias opened it and turned it upside down, a pair of shiny keys landed in the palm of his other hand.
"Are those house keys?" Cassandra asked.
"Yes, but they told us that the house wasn't going to be done for another week... did they lie so that it would be a surprise?" Matias questioned.
"Well, looks like you'll be living together sooner than expected." Magnus smiled as he placed his hand on his wife's hip to pull her closer.
"It would seem so." He looked to his wife, "Darling, what would you like to decorate the house with?" He asked.
[At The Wedding of Maximus & Daniela Dimitrescu]
Alcina already didn't approve of Maximus' relationship with her youngest daughter - but this proposal filled the Lady of the Castle with rage.
She knew that she wouldn't be able to stop her daughter from loving Maximus, but she could prevent the wedding from happening on her Castle Grounds.
Daniela was upset that her mother was against her marriage just because her lover wasn't as rich as her sisters, but he loved her and he was willing to be hurt if it meant she was going to be safe.
Maximus told her beloved that it didn't matter - he could make them a great wedding, all he needed to know was where she wanted it to happen and what she wanted for it.
Daniela wanted her wedding to overlook the ocean at sunset - the light would be perfect. Maximus would give her everything she wanted but there was only one thing he asked for.
"I don't want the Vilkas Lords at the wedding."
When questioned by his future sister in laws, he told them 'I have a bad history with that family and I don't want them at y special day."
The Elder of the Dimitrescu Daughters had nothing to say about that and agreed.
On the day of the wedding - The site was lovely and everyone came in attendance; even Alcina. She didn't want to come up she wanted her daughter to be happy.
The Dimitrescu Daughters were there without their husbands and they were crossed with it.
Maximus waited for the arrival of his fiancee and when she did arrive - it was by carriage...a very familiar carriage.
The door of the carriage opened and Daniela stepped out...but she wasn't the only ones.
The Lords of House Vilkas - Magnus & Matias - stepped out in suits and had uncertain expressions on their faces.
"You?!" Maximus glared at the men, "What are you two doing here? Why were you in a carriage with my fiancee?!" He roared at them.
"I was on my way here with Aunt Donna when they pulled up and asked me where the wedding was taking place, I didn't tell them and they rushed us in the carriage." Dani said as she walked over to Maximus and Donna was getting out of the carriage.
"You forced my fiancee into a carriage?! For what reason?!" The blacksmith growled.
"Please, I know you are upset but we just want to speak with you - I want to speak with you." Magnus said as he took a step forward.
"I told you that I wanted nothing to do with your family, Lord Vilkas!" Maximus said with a glare.
"Stop calling me that! I'm not Lord Vilkas right now, I'm your little brother!" Magnus shouted with sadness in his voice.
Everyone looked wide-eyed at that confess and all eyes looked at Maximus.
"You're the Eldest of the Vilkas Family?" Daniela asked as she looked at the man she loves.
"I share their DNA and nothing else." He glared at his brothers, "I am not a Vilkas., that was taken away from me the moment they were born."
"What is he talking about?" Bela asked her husband.
"We grew up thinking that we were the only children but when we found a birth record for a son that was older than us, we asked our parents about him." Magnus began.
"They told us that he was an accident, an unwanted child, a placeholder for the Vilkas Heirship until a true heir was born..." Matias said.
"Then the moment the twins were born, my father disowned me, beat me to a pulp, and tossed me into the snow during a blizzard with dagger - the insignia of the family I once had was scratched out. I begged them to let me back in, I cried that I didn't want to die, but they ignored me and I began to walk into the forest, looking for some kind of shelter." Maximus' eyes looked to the ground at the pain of the memory.
"Brother..." Magnus said but he didn't know what he could say to his older sibling. All the pain he's been through, all because he was planned.
"It wasn't our fault. It was father and mother's, they were the ones who did that horrible thing to you! They robbed you of your place as The Vilkas Family Head & they robbed us of an older brother. Please, Maximus...We need our brother." Matias said to him.
Maximus looked at the two of them before he told them to sit beside their wives so that they could begin the ceremony. They took their seats, Daniela and Maximus took their places and the rites were read, the 'I do's were said, and the kiss was sealed.
Alcina just sat there with a stunned look on her face - the one she wanted was related to the family she respected, what's more, he was the rightful head?
Maximus looked at his brother and wondered - could he really have a relationship with them after their births took away his life?
[End]
69 notes · View notes
homestucksongcomics · 4 years ago
Text
Masterpost of Song Comics Part I (A-K)
*Unfortunately, due to a peculiarity of tumblr, a post containing too many links will not have any of them function. Thus, the masterpost has been broken into two parts.*
Organized by musician alphabetically
Last updated on 07/18/2021
See Part II here: Masterpost of Homestuck Song Comics Part II (L-Z)
#:
Kryptonite - 3 Doors Down by absinthianlyunheroic
This is War - 30 Seconds to Mars by caffieneandcarpaltunnel
I’m Not Your Boyfriend Baby - 3HO!3 by awildcale
A:
Almost Lover - A Fine Frenzy by irlmako
New Tomorrow - A Friend In London by maria-artz
Hand Over Mouth, Over and Over - A Lot Like Birds by binart
Skyfall - Adele by stormfather
Song of Healing - Adriana Figueroa by talkshitnojutsu
Everything Stays - Adventure Time by starchip-one
Kiss my Eyes and Lay Me to Sleep - AFI by 413art
Prelude 12/21 - AFI by toastyhat
Another Day - Air by chubsintubs
A Whole New World - Aladdin by copper-fish
Mercy Me - Alkaline Trio by brainbent
Hothouse - Aly & AJ by dristr
Evelyn, Evelyn - Amanda Palmer by p-pamda
Luck - The American Authors by timehwimeh
21 Guns - American Idiot Cast by jankyweeaboo
Pittsburgh - The Amity Affliction by anafigreen
Inevitable - Anberlin by suchirolle
Ready to Die - Andrew W. K. by askherroyalcondesce
The Age of Not Believing - Angela Lansbury by toastyhat
Director - The Antlers by gin-and-djinn
Kettering - The Antlers by cloudymew
My Mamma Said - Aqua by xamag-homestuck
Suburbs - Arcade Fire by porrim-maryam and collaborators
Wake Up - Arcade Fire by catprinx
We Used to Wait - Arcade Fire by drawingspecibus
R U Mine? - Arctic Monkeys by dacadaca
The Ballad Of Love And Hate - The Avett Brothers by umjulikins
Hey Brother - Avicii by esmeblaise
Wake Me Up - Avicii by a-vodka-mutini
Sail - AWOLNATION by theamazingzombiegirl
B:
If I Die Young - The Band Perry by japhers
Memory - Barbra Strisand by toastyhat
Glitter and Gold - Barns Courtney by chibigaia-art
Daniel in the Den - Bastille by tomato-bird
Pompeii - Bastille by maria-artz Broken
Pompeii - Bastille by toastyhat and oskarna
Above the Clouds of Pompeii - Bear’s Den by groveofsketches
Let it Be - Beatles by toastyhat
The Fool on the Hill - The Beatles by robotoucan
All the Pretty Little Horses - Becky Jean Williams by purplecalamity
Pieces of Sky - Beth Orton by awildcale
Sweet Dreams - Beyoncé by dacadaca
River Below - Billy Talent by kamdensl
Rusted from the Rain - Billy Talent by crispychocolate
Just a Game - Birdy by redwordsoncavewalls
Kill the Lights - The Birthday Massacre by xamag-homestuck
Red Stars - The Birthday Massacre by lord-caliborn and tricotee
These Days - The Black Keys by digitallyimpaired
In the End - Black Veil Brides by rinasart
Let it Be - Blackmill (feat. Veela) by awildcale
Bad Sun - The Bravery by crashtest-therapist
Dear Agony - Breaking Benjamin by yukishii-chan
Diary of Jane - Breaking Benjamin by nevernoahh
Give Me a Sign - Breaking Benjamin by perceptur
I Will Not Bow - Breaking Benjamin by themockingcrows
First Day of My Life - Bright Eyes by usatoria
Can you feel my heart? - Bring me the horizon by domingoos and Yumegurren
Seeds - Brooke Fraser by anno-bannano Broken
Kodaline - Brother by zzpopzz
When I Was Your Man - Bruno Mars by babynarwalshineyeyes
P.O.W. - Bullet for My Valentine by anafigreen
C:
Angel with a Shotgun - The Cab by dawngyocry
How Are You - Cage the Elephant by facetiousfanatic Part 1
How Are You - Cage the Elephant by facetiousfanatic Part 2
How Are You - Cage the Elephant by facetiousfanatic Part 3
The loneliest Girl - Carol and Tuesday by cassandraooc
Morning Has Broken - Cat Stevens by thlange
Star Spangled Banner - Chase Holfelder by chillybuns
Between the Bars - Chris Garneau by roselalondee
Dirty Night Clown - Chris Garneau by idontevenknow-anymore
Dirty Night Clown - Chris Garneau by immabananana
Enter the Circus - Christina Aguilera by askinsanegamzee Broken
A Thousand Years - Christina Perii by angstyelf
A Thousand Years - Christina Perii by mari-victal
Burning Gold - Christina Perri by raspberrylemonhead
Fall - Cider Sky by nevernoahh
Falling (Demo) - The Civil Wars by zomdi
Safe and Sound - The Civil Wars by karaokekarkat
Hum - Clara C by nymphicus
3 Foot Tall - Classifed by kyrah-art
Summer Day - Coconut Records by kathysbrotherssister
Fondu au Noir - Coeur de Pirate by derperistical
Fix You - Coldplay by absinthianlyunheroic
Paradise - Coldplay by Moonpaw
The Scientist - Coldplay by ikimaru
Up with the Birds - Coldplay by the-rag-tag-earl
Viva la Vida - Coldplay by raspberrylemonhead
Viva La Vida - Coldplay by rozeart
Yellow - Coldplay by mariedisgrace
Young Volcanos - Coldplay by kawo-shin
Princess of China - Coldplay (feat. Rihanna) by sora-la
Chin Up - Copeland by vriskamidfangserket
Accidentally in Love - Counting Crows by hopelesslyblithe Broken
Crywank are posers - Crywank by p-666t
D:
Thrice - Daedalus by foramen-magnum
Something About Us - Daft Punk by moxel
Something About Us - Daft Punk by yazzdonut
Emotion - Daft Punk (MissingNo remix) by doomzy
The Spine - Darren Korb (Transistor) by rose-ebottles Broken
Youth - Daughter by zelpixel
Raise Your Weapon - Deadmau5 by marintan
Go Get Your Gun - The Dear Hunter by mcsiggy
Whisper - The Dear Hunter by prospt and collaborators
I Will Follow You Into the Dark - Death Cab for Cutie by davsturdur
I Will Follow You into the Dark - Death Cab for Cutie by inusushi
I Will Follow You Into the Dark - Death Cab for Cutie by kawaiifarts
Bottom of the River - Delta Rae by wwhatevven
Perfect Insanity - Disturbed by vasheren
Just Be Friends (Instrumental) - Dixie Flatline by cheese3d Inspired by Litlte Red Riding Hood
Pity Dance - Dn Stith by jazzango
Venus Hum - Do You Want to Fight Me by shubbabang
Everything You Ever - Doctor Horrible’s Sing-Along Blog by thesassylorax
My Eyes - Doctor Horrible’s Sing-Along Blog by equiu5
Close Every Door - Donny Osmond by allegro-designs
Baby Mine - Dumbo by gayrupunzel
E:
I See Fire - Ed Sheeran by arachnerdsgri
I See Fire - Ed Sheeran by themockingcrows
Small Bump - Ed Sheeran by janecrockeyre
Cosmic Castaway - Electrasy by themockingcrows
Telephone Line - Electric Light Orchestra by daily-beta
You are my Sunshine - Elizabeth Mitchell by the-rag-tag-earl
Goodnight Sweet Ladies - Emilie Autumn by amporasexual
Asleep - Emily Browning (originally by The Smiths) by joker-ace
O Come O Come Emmanuel - Enya by pseudocon
One for the Money - Escape the Fate by ikimaru
Follow the Sun - Evermore by ladygrit
Fever Dreamless - fadeintocase by peregr1ne
F:
Centuries - Fall Out Boy by sixofclovers
Immortals - Fall Out Boy by etcterrayellowmoon
Immortals - Fall Out Boy by mari-victal
Immortals - Fall Out Boy by quiversarrow
My Songs Know What You Did in the Dark (Light Em Up) - Fall Out Boy by toastyhat
The Kids Aren’t All Right - Fall Out Boy by i-am-a-riceball
The Kids Aren’t All Right - Fall Out Boy by scarlettheknight
The Last of the Real Ones - Fall Out Boy by dopingues
The Phoenix - Fall Out Boy by orangelemonart
Caught Like a Fly - Falling in Reverse by viria
Tragic Magic - Falling in Reverse by elasticitymudflap
Heavy Storm - First Aid Kit by moxel
Wolf - First Aid Kit by spooneaterarts
100 years - Five for Fighting by orangelemonart
Superman - Five for Fighting by grimbarke
Hurt Feelings - Flight of the Conchords by koroke
Rise - Flobots by lyricstuckbeatdown
Blinding - Florence + the Machine by collaborative
Cosmic Love - Florence + the Machine by rosemaryserver
Cosmic Love - Florence + the Machine by starkthirdeye
Cosmic Love - Florence + the Machine by toastyhat
Dog Days Are Over - Florence + the Machine by greatbiglyricstuck
Dog Days are Over - Florence + the Machine by m0thboy
Girl With One Eye - Florence + the Machine by kingdomzombified
Kiss With a Fist - Florence + the Machine by miraculoustang
No Light, No Light - Florence + the Machine by dacadaca
No Light, No Light - Florence + the Machine by nappotuna
Only If for a Night - Florence + the Machine by glueball
Seven Devils - Florence + the Machine by fangirlinginleatherboots
Seven Devils - Florence + the Machine by themockingcrows
Shake it Out - Florence + the Machine by cod-tier
Tear out my Tongue - Florence + the Machine by wheresmyhamlet
What the Water Gave Me - Florence + the Machine by colonoscolypseart
With an Axe - Foxy Shazam by oldshiel
Something Stupid - Frank and Nancy Sinatra by toastyhat
Some Nights - Fun. by greatbiglyricstuck
G:
Mad World - Gary Jules by ahabsiconoclast
Mad World - Gary Jules by prospitheir and aze
Mad World - Gary Jules by synnesai
Where Everybody Knows Your Name - Gary Portnoy by calliotp
Child of Light - The Getaway Plan by dingohugs
It All Dies Anyway - The Gits by skittykitty55
Take Me Away - Globus by toastyhat and splickedylit
You’re the One That I Want - Grease by doodlebonez
Top of the World - Greek Fire by eggsand-santoast
Song of the Century - Green Day by babakinkin
Song of the Century - Green Day by delinked
Song of the century - Green Day by the-rogue-0f-light
Boats and Birds - Gregory and the Hawk by striderprovider
Hard Knocks - Griffinilla and Alex Cole by colouredteapot
H:
Colors - Hasley by innocuoussketches
Anything - Hedley by valeriannnn
The Unquiet Grave - Hellen McCrocry by madreamcanular
Coming Back Down - Hollywood Undead by flynnagan
Coming Back Down - Hollywood Undead by skittykitty55
Levitate - Hollywood Undead by anafigreen
SCAVA - Hollywood Undead by scarlettheknight
Temporal Shenanigans - Homestuck ost - Rachel Macwhirter by arachnerdsgrip:
Almost (Sweet Music) - Hozier by metaname
Take Me To Church - Hozier by sailerscrimshaw Broken
God Help the Outcasts - Hunchback of Notre Dame by velocitiestrumpet
The Court of Miracles - Hunchback of Notre Dame by moc-tod-ffuts-modnar
That’s Okay - The Hush Sound by porcupet
Where We Went Wrong - The Hush Sound by canni8al
Wine Red - The Hush Sound by zeborah
I:
Volatile Times - IAMX by xamag-homestuck
Bad Karma - Ida Maria by margarethours
Amsterdam - Imagine Dragons by paperseverywhere
Bleeding Out - Imagine Dragons by rapidopatter
Demons - Imagine Dragons by muraokami Broken
Demons - Imagine Dragons by rapidopatter
Fallen - Imagine Dragons by maria-artz Broken
I'm So Sorry - Imagine Dragons by abbiwhozit
I'm So Sorry - Imagine Dragons by catkindness Part 1
I'm So Sorry - Imagine Dragons by catkindness Part 2
Nothing Left to Say - Imagine Dragons by paperseverywhere
On Top of the World - Imagine Dragons by lickfoot
Radioactive - Imagine Dragons by falloutboyonboy
Radioactive - Imagine Dragons by rachelhungry
Thief - Imagine Dragons by mikimosh
Warriors - Imagine Dragons by turretsyndr0me
Hide and Seek - Imogen Heap by kingdomzelaybli
The Devil’s Carnival - In all My Dreams I Drown by artblogofminji
Don’t Stop - InnerPartySystem by spocktalia Broken
What We Will Never Know - InnerPartySystem by lets-lyricstuck
Cinders and Smoke - Iron & Wine by laughingandgrief
Walk the Moon - Iscariot by cissaisthisyou
The Weekend - Islands by daily-beta
J:
R.I.P. Everyone - J.J. Demon by trickstercarlos
Fallin’ - Jake Bugg by awildcale
I Won’t Give Up - Jason Mraz by impudentkid
I’ll Be Good - Jaymes Young by asexualls Broken
Sufferer’s Final Sermon - jbriner by sketchloft
Be Thou My Vision - jbriner (originally a hymn) by mrdespondency
O Death - Jen Titus by canni8al
Oh Death - Jen Titus by artweaver5
If the World Should End - Jennifer Damiano by atrueenglishman
The Hanging Tree - Jennifer Lawrence by sixofclovers
Highwayman - Johnny Cash by toastyhat
What A Wonderful World - Joseph William Morgan ft. Shadow Royale by jayspants
The Stars - Jukebox the Ghost by innocuoussketches
K:
Die Young - Ke$ha by gelasticat
[S] Ke$ha: Enter - Ke$ha (Die Young Remix by captaincrapster) by ket3
Because of You - Kelly Clarkson by timehost
Breakaway - Kelly Clarkson by karaokeoctoberkat
Britland City Theme - Kenashcorp by stormfather
Animals - Kids in Glass Houses by faun-songs
Dustland Fairytale - The Killers by spiritleaf
Mr. Brightside - The Killers by mlle-annette
Sam´s Town - The Killers by gei-may
Smile Like You Mean It - The Killers by toastyhat
I Will Never Forget - Kimya Dawson by moxel
All I Want - Kodaline by godtier8itch
92 notes · View notes
roseofithaca · 4 years ago
Text
Defrosting Grumpy Three (a Season 8 meta)
I keep thinking about how Season 8 of Classic Who is almost like the first one the show has to a ‘season long arc’ that I don’t feel gets talked about enough. Obviously everyone knows it as “the one where the Master is in every story” but I feel like there is a subtle character arc for the Doctor in this season as well which is tied to the two main characters introduced in the first episode; the Master and Jo Grant.
I’m not the first one to point out that out of Three’s five seasons; this is the one where he’s at his most grumpy and short-tempered. I know a lot of people point to this season as reasons for why they don’t like Three and I totally get that, he’s a real git sometimes, in particular the first and last stories. There are moments where he’s asking for a slap and, no, I’m not talking about him claiming to be buddies with Chairman Mao and a Tory MP. Because I would’ve thought it was obvious that he drops those names purely to gain trust of these people who don’t trust him (at least that’s my headcanon because it doesn’t fit with the anti-capitalist, anti-pollution, anti-imperialist writing). Just him being constantly ungrateful to the Brigadier, snapping at Jo, or just being childish in the most ‘kid throwing a tantrum’ way possible.
But it’s easy to get why. By Season 8 he’s been trapped on Earth for we can assume at least a year. New Who fans who’ve seen the Power of Three and saw how crazy Eleven went when he tried to stay on Earth to study the cubes just for a few days/weeks know the Doctor can’t stand staying still, especially in one time and place. In his first season he could be short-tempered but slightly less so. In Spearhead he’s quite polite and motivated, though that could be the most pleasant form of Post Regeneration Trauma he’s been through. Plus he had Liz, who you can see he immediately clicked with. A fellow genius who finds herself out of place or treated a little unfairly as a female scientist surrounded by men, both of them willing to sass the Brigadier when he deserves it. He also still keeps trying to fix the TARDIS, as if convinced this won’t be as permanent as the Time Lords intended.
But by Season 8 (or you could say even before that, in Inferno) his attempts clearly haven’t succeeded past slipping into a terrifying parallel universe, and now cabin fever is setting in. And Liz, his science bud, has gone off and left. And while it’s sad we didn’t get a goodbye between the two of them, her passing remark towards the Brigadier about the Doctor just needing someone to pass him test tubes and fill his praise kink maybe implies that, at least from Liz’ POV, they weren’t as equals as Three thought, or she didn’t feel that fulfilled working with him, even if she did appreciate him as a friend. 
So enter Jo to replace Liz, who is everything Liz wasn’t. Liz had to study and work her way to her position; Jo is a spoiled girl who got to play spy by sheer nepotism. She failed A level science and doesn’t have the same sharp-wit he and Liz shared. Three is mean to her even before she introduces herself as his assistant when she only tries to help, and doesn’t hide his disappointment when she tells him. Perhaps it might also be that she reminds him of his companions before Liz; she’s cute and perky like Zoe and also loyal and determined like Jamie, even though she lacks Jamie’s physical strength and Zoe’s genius. Still, she’s young and he might not want to put her in danger the same way he nearly lost his previous young companions many times in the War Games.
When Three goes to the Brigadier to try to get rid of Jo, the Brig is far more smug than in the previous season, as he seems to have worked the Doctor out by this point. Their little moment at the end of Inferno where Three insults him and tries to escape only to then come back with his tail between his legs acting all buddy has shown him who Three really is; that this whole grumpy shtick of this is just a defence mechanism while he’s so out of his depth. I like to think the Brig hoped Jo would soften him up, to bring out the compassion that was more overt in his previous incarnation, as well as just pass him test tubes and keep tabs on him. His knowing smile when he watches Three try and fail miserably to fire her seems to prove his point.
In the same story we also have the Master showing up for the very first time. He was created to be the ‘Moriarty to the Doctor’s Holmes’. These kind of ‘foil enemies’ that pop up in so many stories, where you have a villain who is supposed to be a perfect match in intelligence or skill to the hero, are more often than not presented as ‘what the hero could have been’ if they chose to be evil rather than good; the Master is no different. And even though it’s not established until the next season that the Doctor and Master used to be friends, there’s clearly an underlining fondness in their banter which hints at past feelings as well as mutual respect. It says quite a lot that Three is more relaxed and friendly during his conversations with the Master half the time they talk than he is with the humans he’s meant to be saving, or even his own close friends. Because, for all their moral disagreements, the Master is his own kind and his only link - other than his broken TARDIS - to the rest of the Universe. 
In almost every story of S8, after the Master has revealed his evil scheme only for the Doctor to point out how it will backfire on him, they have to work together or form some kind of alliance of convenience. In Claws of Axos, the Doctor outright pretends to betray his friends and elope join forces with the Master to escape, only for it to be a trick in order to defeat the Axons. But considering Three’s attitude in this season, it’s a very convincing act as much to the audience as to the humans. And then in Colony in Space, the Master offers the Doctor half-ownership of the Universe....and the Doctor clearly hesitates! Yes, the Master tempts him with the persuasion of ruling ‘in the name of good’ but Three has to take a moment to remember what a slippery slope that line of thinking is. He’s so tired of being trapped, sick of being leashed by the Time Lords, that the Master comes along as a devil on his shoulder at his most vulnerable point. Considering the last story involves the Master summoning the actual Devil (or close enough) and is also where Three’s temper seems to be at its peak seems all too fitting.
It’s also interesting that the Master’s greatest fear that appears in the Mind of Evil is an image of the Doctor laughing maniacally over him. It’s the closest we get to an image of Dark!Three in the show. To contrast; the Doctor’s greatest fear isn’t the Master, it’s the eruption from Inferno. Seeing the Earth swallowed by flame - not because of an outside force like the Daleks or Cybermen, but by humans themselves. It’s easy to imagine him wondering why he even bothers with them when they’re their own worst enemy.
(Side note; apparently the Evil Overlord in the Inferno parallel world IS the Third Doctor, according to the Expanded Universe, though I haven’t read up on this. We were robbed of seeing Pertwee play an evil Doctor.)
So while this is going on and the Master is playing his games with the Doctor while also tempting him, intentionally or not, to the ‘dark side’, we also have Jo at his side. And Jo takes all of the Doctor’s snapping and mood swings like a pro, and is very quickly overwhelmed with a lot of the stuff she’s faced which that she didn’t know she was signing up for - being hypnotised, captured by aliens, taken to alien worlds in the far future etc. She screams as most companions did at that time, but because it is what you would expect from a girl fresh out of school and throwing herself into something she clearly didn’t properly prepare for. The Doctor has to save her a lot, more than often because she tried to help only to get herself captured. As much as he does warm to her - because he’s not immune to how adorable she is - it serves to prove his point. Even when he finally gets to leave Earth for a day, she’s too frightened to want to leave the TARDIS. What good is she to him?
Now she continues to prove she has her uses. She has her escapology skills which get them out of a few tight spots. Depending on the writer, she can turn into an Emma Peel-esque agent capable of self-defence and subterfuge. And she’s always patient with the Doctor, no matter what mood he’s in, and extremely loyal. She’s also kind and compassionate with every side character she comes across. There seems to have been a backlash to these kinds of qualities in female characters in the past twenty years or so, what I like to call the Cinderella critique, where if a woman is kind and generous more so than smart, sassy and sword-wielding she’s seen as ‘weak’. Jo is always there at the Doctor’s side when he’s managed to get hurt or knocked out (Three took a lot of naps, anyone else notice this?). Even after he does whisk her away to another planet and nearly don’t make it back, she could easily throw her job away if it was too much, but she sticks with it because you can see that she wants more than anything to be useful and do good for her world - it would be another two season until she found what her own passion was with being an environmental activist but this is where she wants to start.
But it’s not until the end of S8 that we see Jo’s greatest strength and how it saves Three when every other defence he had was gone. He’s spent most of that story chastising her for believing in magic and superstition, as well as anything else he can find to snap at her for like criticising the Brigadier even though he does the same thing all the damn time (this could be seen as a ‘I can insult my bro but you can’t’ moment but it’s still not pleasant). But when he learns the Master is preparing to sacrifice her, he runs in to save her despite knowing it’s a suicide mission. He also gives a cold exchange to the Master when told he’s a ‘doomed man’. 
Oh I’m a dead man! I knew that as soon as I walked through those doors so you better watch out! I have nothing to lose, do I?
It’s a telling line that, behind all his patronising and abruptness, he’s reached a point he doesn’t feel he has anything left to keep going. He’s lost his freedom and his knowledge of time travel; but he’ll die before letting Jo die or letting the Earth burn again. When Azal claims the daemons gave humans knowledge, Three responds: Finally he’s turning his anger on the one who deserves it to save the one who has been his friend, even at his lowest points, for the past several months, while still showing his disappointment in what he’s seen of humans living amongst them:
You gave them knowledge to blow up the world and they most certainly will. They can poison the water and the very air they breathe. 
When Azal appears, he nearly makes the Master’s greatest fear come true by offering his power to the Doctor instead. And the Doctor looks horrified, immediately doing a Jon Snow and refusing it. Unlike when the Master offered him power before, he doesn’t hesitate for a moment, even though Azal’s powers could probably get his TARDIS working again in a snap. He looks almost scared at the thought of possessing something like that. Perhaps his dark persona in that other world became that way because he did take such an offer?
Azal prepares to kill the Doctor for refusing his offer, which is where Jo saves the day by offering her life for his. A lot of people dislike this ending for the idea of the villain being destroyed ‘by the power of love’ more or less, but this was a lot less common a deus ex machina as it is in New Who. The Doctor explains how it works when they’re free as:
Azal could not accept a fact as irrational and illogical as Jo being prepared to give up her life for me.
Three says it as he’s just as baffled, if also amused, by it as Azal was. Why would Jo give up her life for him? Compare that with when Ten has to give up his incarnation to save Wilf, how he rants that Wilf isn’t important but he has ‘so much more’ to give. Even the Doctor wrestles when it comes to sacrificing himself for others sometimes but Jo did it without a seconds thought, made even more illogical given Three’s often harsh treatment of her. But one thing that is obvious is that Three’s grumpy face is gone; he’s smiling for the rest of the episode, looking at Jo with quiet heart eyes, and letting her drag him into the maypole dance, conceding that she was right and there is ‘magic’ in the world. 
Much like Rose was the companion Nine needed after the Time War to enjoy seeing the Universe again and appreciating life, Jo serves a similar purpose in S8 in that she gradually reminds the Doctor through her actions of the strengths in being brave, kind and selfless. She and the rest of the UNIT family are there to remind him of the goodness in humanity and that we’re always learning and trying to improve; as Three says to Azal that ‘they need a chance to grow up’. Jo is the angel on his shoulder to contrast the Master as his personal devil; right down to having her dressed in the sacrificial ‘virgin’ garb opposite the Satanic Master to cap the season off.
Three still has his sour moments after this but he’s far less cantankerous going forward and sweeter towards Jo especially, praising her bravery and learning in future, just as Jo also grows more confident in her abilities and enjoys her adventures with him. He seems far more relaxed on Earth and less desperate to get away because of the people he has around him that make it worth staying around for. Three’s morals and loyalty to humanity might not have been so firm had Jo not been there to ground him, especially with the Master constantly there almost holding out a hand to him offering freedom and excitement. Like all good companions, she saves the Doctor as much as he has to save her, in more ways than one, which she doesn’t get nearly enough credit for. And it’s what adds to the heartbreak of her eventual exit because of the effect she had on his life.
It’s just one of my favorite tropes when a character gets better and softens or becomes kinder not because they had to ‘change for someone else’ but because they were inspired by them, especially if it’s the person they underestimated the most.
21 notes · View notes
askagamedev · 5 years ago
Text
Lightning Mailbag: Sandbagging it
It’s time for another lightning mailbag, where the answers are short and the points don’t matter!
Tumblr media
As a developer, do you think this year Game Awards is sketchy?
Honestly, I didn’t watch them at all.
Does the studio make money whenever a retail rents a game to a customer?
Nope.
Tumblr media
Why the media is always giving a negative picture about games getting delayed?
[Scary news and news that makes you angry gets higher ratings and more shares]. This is also true for social media and youtube content.
What kind of royalty rates do typical IP licenses have in game industry?
It varies from a flat fee for small stuff up to 20% of every sale for a heavy-hitting license like Star Wars.
What is the purpose of allowing pre-loading a game before release? What does the extra time before allowing a customer to play buy for the publisher and/or developer?
It’s more for the player’s benefit than anything else. Instead of having to spend the first hour of release day installing and patching the game, we let the super engaged players who really want to play as early as possible do that beforehand and then let them play as soon as release day goes live. It’s like the midnight release showings of the new super hero movie where you line up for the film before midnight.
Tumblr media
As a gamedev, do you find that people who do not play/like games look down on you/your job?
Not really. Most of them seem to think that I just play games all day.
hi. i just saw this thread from Taylor Swope on twitter talking about fixing a bug on outer worlds and i wondered if you have any stories of this sort to share. for reference he posted it on 12 of december, 18 tweets (tumblr doesn't allow links, sorry for that)
You really should check out the [War Stories] tag on this blog.
You talked about a player getting stuck due to some technical reason (quest item isn't appearing, something critical is unobtainable, etc) and that it is treated as a high priority glitch. What about when it is the player themself that did something to get them stuck? For example, in early Pokemon games you could get stuck if you threw away all your items and money, released all but one level 100 Pokemon whose only damaging move is explosion. Do designers try to fix broken due to stupidity?
Usually we don’t. If you don’t want to play the game, you don’t have to. 
Tumblr media
After a pitch, how often do studios settle for publishing budgets that are less than ideal to outright dangerous to make sure they get the deal?
Not that often. We usually don’t hear about those cases in the news because the studios that bite off more than they can chew like that usually end up falling behind schedule during production and the game getting cancelled. Lowballing like this typically happens when the studio is desperate and that’s never a good state to be in regardless.
It’s also up to the publisher to do their due diligence - they’re usually pretty good at planning games too, so if a studio pitches a deal at a price that’s clearly too good to be true, they’ll be suspicious. And they should be - they’re the ones investing millions of dollars into the project. The publishers want the finished game more than the money they are investing into the project, otherwise they wouldn’t invest in it. It’s in their best interests to make sure the project seems feasible before writing any checks.
[Join us on Discord]
The FANTa Project is currently on hiatus while I am crunching at work too busy.
[What is the FANTa project?] [Git the FANTa Project]
Got a burning question you want answered?
Short questions: Ask a Game Dev on Twitter
Long questions: Ask a Game Dev on Tumblr
Frequent Questions: The FAQ
24 notes · View notes
enchantedsapphiresky · 6 years ago
Text
WARNING: LOVEATER AND MIRACLE QUEEN SPOILERS UNDER THE CUT!!!
Do NOT click on the link if you do not want spoilers for the Miraculous Ladybug episode “Loveater” - the first part of the finale for season three. 
Also do NOT click on the link if you do not want spoilers for the Miraculous Ladybug episode “Miracle Queen” - the second part of the finale for season three. 
So I want to preface this by stating that these are my feelings as of watching “Miracle Queen.” I obviously have no idea how the writers plan to take things, so I will always be willing to watch and keep my opinions tamed. Because until we see the fallout and the entirety of the show, it really is hard to say one thing is ruined or another arc is completely dead.
However...
I personally am very confused about this finale insofar as a catapult to the rest of the story.
I don’t have much comment on the Love Square - I have a year to quell my whining and be on board with them growing apart so that they can - in a healthy manner - grow together. That’s me struggling with change and knowing I’ll grow to love Lukanette and Adrigami only to have another shift back to the Love Square. It’s not a bad thing - just something to get used to.
What I am concerned about are the storylines of Chloe and Gabriel.
CHLOE
I am fully prepared to be Boo Boo the Fool, but we still have two episodes that can explain why she went from being her own, independent hero to well...this. 
Should recovering from Chloe’s kind of raising be in a straight line? No.
Should we at least have some indication of that turmoil? Yes.
One thing that continues to be a little frustrating to me is the amount of focus on Marinette. I don’t mean this in a disparaging way to Marinette - it has quickly made her the most relatable characters in the show. While her role as protagonist demands that, I would argue that Adrien’s role as deuteragonist has been largely underutilized in this department. 
With Adrien, we have the opportunity to explore Chloe’s ascension from descension to corruption. Now I’m not saying that Adrien is beholden to solve all of Chloe’s problems - far from it. But there could have been moments of connection. I think of “Despair Bear” and how Chloe so desperately tried to appeal to Adrien’s sense of being kind. What does a Chloe who is genuinely trying to change look like in comparison to that? I’m not expecting this to be addressed in “Felix,” but how perfect of an opportunity would it be to see Felix being a smarmy git only for Chloe to be torn between being “in” with the rich mean kid and staying true to her changes? What about seeing Adrien react if Chloe does side with Felix? And what that means to Adrien and to Chloe, separately?
I do not have much faith that Chloe will be redeemed after this, but I would not be shocked if we saw her do a 180 further down the line. Maybe I’ll be pleasantly surprised and the rumors of a new Bee holder will make her realize what her decisions have led her to both gain and lose. That Ladybug ever gave her the Miraculous after Chloe’s antics was a huge grace. Now our only hope left is for Chloe to recognize how to be a hero without that Miraculous. Can she? Time will see.
GABRIEL
Okay. There is a LOT to unpack here. The scenario that he set up - akumitizing Chloe, attacking Fu, revealing the identities of the secondary Miraculous holders - it should have held a lot of interest. But it just fell flat. Many others have better described how lackluster the fight was, but I am still bothered by how passive Hawkmoth was.
I understand that Dragonbug’s power probably made penetrating the area of the fight difficult. But having Hawkmoth stand on a roof like a spectator after our season two finale brought him into the ring felt flat as a pancake. Heck, we’ve seen him be a thousand times more active in “Ladybug” alone this season. Mayura we may be able to forgive for falling to the broken Miraculous, but when you put the main villain in the background and have a fight that isn’t as grand as it could be, there is going to be some frustration. 
So much could have been done with this. They had Snake Noir right there with the possibility of him losing the cat miraculous only for Ladybug to recognize him, stutter out Adrien’s name and cause Hawkmoth to falter. Only for Aspik to use his second chance. They had the possibility of using Rena Rouge’s illusion to make it seem like Fu had fallen and force Ladybug to choose between maintaining to fight with Miracle Queen or saving the Guardian. We could have had Lila on the scene for an extra all civilian turned villain punch. We could have had Hawkmoth having awareness enough to realize some Miraculous hadn’t been used and could be taken from the box without impact, thus leaving Marinette as the Guardian with yet more missing Miraculous in a parallel to Fu.
In short, between the scenario that was set up and the ability to rewind with the snake Miraculous actively in play, I needed to feel worried. I needed to cry, unsure of what was going to happen. I needed to be teased, to be worried about the future even knowing we have more seasons down the line. That is what a finale is about and yet what this finale struggled on the most in its fight scene.
Now to Mayura in relation to Hawkmoth. I have NO WORDS as to how aggravated Gabriel makes me. In one breath, he swears never to make Nathalie transform again and in the next he keeps her transformed in broad daylight knowing she has straight up collapsed at least once this season while transformed just to attack Fu’s shield?
I’ll be frank - I am salty to death over the rumors of Mayura being Hawkmoth’s “boss” and making him look like a “baby” not coming true. Was it a language barrier? Misunderstanding? Misquoting? Really Emilie’s version of Mayura who fit this bill? Who knows. 
But what I do know is that seeing that ending without knowing what impact the fixed peacock Miraculous brings leaves me a little more miffed than satisfied. From translations, it seems like they translated the grimoire? Which had a cure for the Miraculous? After having had it for...who knows how long? Is this what Tomoe was doing for Gabriel?
It just feels hollow after spending a season worrying and wondering about Nathalie and Emilie’s conditions. Can they sell it to me in season four? Maybe. I’ll remain open to those possibilities. But this just seemed like the most safe of the options of showing us the Miraculous being healed. It’s tacked onto the end - it’s done offscreen and by means that we haven’t been privy to. It makes me lose that sense of wonder about what happens and leaves me wondering why we went through the grief in the first place.
None of these things mean that I hate the show - I’m still very excited for “Chat Blanc” and “Felix.” I’m still going to watch the show until the end and will be thrilled to see myself proven wrong in certain aspects. But just because all of that is true doesn’t mean I won’t have opinions about the show, albeit knowing its target audience is far younger than I am. It’s a good show and a good ride that I’m going on regardless. I have respect for Thomas Astruc even if I don’t understand every decision that is made. And I’ll give him the benefit of the doubt that all the negatives that I and others have pointed out are for a reason - even if we can’t see them just yet. If I’m proven wrong, well, at least we have the highlights of the show to enjoy. And there are definitely more highlights than there are low.
25 notes · View notes
stargazing-enby · 7 years ago
Text
More Than Teasing
Pairing: Drarry
Wc: 1.6k
Rating: T
Warnings: none, just fluff :)
AO3 link
“Here, have my jacket.”
Harry was so sleepy that he didn’t find it in him to complain. They’d been out for hours. He usually enjoyed his auror missions, especially when Draco was his assigned partner. But that night they’d been told to sit on a boat in the middle of the Thames and wait for the magic trace of a hag to reveal itself, and he was freezing and exhausted.
“Aren’t you cold?” he muttered, his voice hoarse.
Draco smirked. “Nah. You set my heart on fire.”
Harry’s yawn turned into a chuckle. His smile refused to leave his lips, and he coughed just to have an excuse to turn his head away from Draco. Merlin, but he liked the git so much. And now he was enveloped in a jacket that smelled like him, which wasn’t helping.
At least he felt awake again.
“What, you’re still cold?” said Draco. “My, Potter, am I gonna have to hug you too?”
Please do.
“Sod off! I just had some spit in my throat that needed to come out.”
“Gross. Thanks for the nightmares.”
“Dream about kissing me much?” Harry retorted, like he didn’t even care about the matter. That was what they always did these days–tease each other. It was comfortable, and exhilarating. And it was all that was ever going to happen between them.
“Oh, every night,” said Draco, “and then I wake up and daydream about kissing you all morning.”
“I’m sure you–” Harry sneezed. Twice.
Draco shook his head, chuckling. “Come here, you softie.”
“Hey, I’m not a softie!”
Harry’s whole body shivered at the contact of Draco’s arms. He tried to find a comfortable but not too intimate position, and somehow ended up burying his face in Draco’s neck.
Draco seemed unfazed by this, and only held him tighter. “Ah, of course you aren’t! How could I ever accuse the almighty Harry Potter of being any less than the toughest man alive?” His smile was almost palpable in his words. “Harry Potter, who always brings thick wool socks to his missions in case he has to sleep in a hotel! Harry Potter, who has to wait almost half an hour for his tea to cool down so he doesn’t burn his tongue! Harry Potter, who–”
“Shut up!” Harry muttered. Heat spread through his body as his lips brushed skin. He tried to pull away, but Draco’s embrace was firm, and the movement only brought their bodies closer in places and ways that could hardly be considered appropriate for friends. Harry felt paralyzed.
“Okay,” Draco breathed.
That doesn’t sound like teasing. Oh fuck, is he freaking out? Does he regret hugging me? Have I ruined everything? Harry swallowed. He wanted to apologize, but Draco’s thigh felt so hot against the inner part of his own that his sanity collapsed beyond repair.
“You’re so hot,” he blurted out. “I–I mean, your leg. How do you do it? You’re skinnier than I am; you should be the one freezing!” Harry cringed. Now he was ruining everything. “I swear, if you’re using a warming spell after Kingsley told us our magic would interfere with the tracking spell...”
“I already told you. You set my heart on fire.”
Harry knew every single one of Draco’s voice tones, and he was positive that that was not his teasing one. “Ha, ha,” he replied, trying to pretend he wasn’t terrified.
“I’m glad to know my suffering seems funny to you.”
“Your… suffering,” Harry repeated. He tried to move again, and Draco’s arms fell to the sides, allowing him to sit back up. “What suffering?”
Are you saying you like me too? Please, say yes.
“Who would want The Chosen One to be their source of warmth?” Draco tried to smirk, but the gesture didn’t reach his eyes. He looked away, at the dark water that surrounded them. “You’re too unpredictable. You put yourself in harm’s way every other day, even when it’s the stupidest possible option. You could disappear any day, and then everyone who is warmed by you, who needs you, would… freeze.”
“Are you trying to tell me that…  you care about me?”
Draco snorted. “Of course I care about you. I wouldn’t have given you my jacket if I didn’t; I’m not a Gryffindor.”
“Git,” Harry said automatically.
“How unoriginal.”
“Draco.” The name slipped easily from his lips. It wasn’t the first time he’d said it, but they usually called each other by their last names, just for the fun of it. “Am I important to you? Is that what you’re saying?”
Draco’s gaze remained fixed on the water. The moon and the city lights seemed intent on showing Harry every single shade of golden and silver in his fine hair, and really, what was Harry expected to do but stare at it?
“Aren’t we supposed to be tracking that hag?”
Harry looked away. He wanted to insist, but he wasn’t stupid enough to risk losing Draco over some stupid feelings that would eventually go away.
As the silence stretched between them, Draco’s jacket felt heavier and heavier on his shoulders.
“You are.”
At first he thought he’d imagined Draco’s words. But then their eyes met, and knew he hadn’t. He felt lost and at home all at once.
“You’re really important to me, Harry. I don’t think I’d still be sane if you weren’t in my life.”
“I–” Harry felt hot all over. “I like you, Draco.”
There. He’d said it. Now it was time to jump into the Thames and never resurface.
“I know.”
Draco’s words caught him off guard, and he frowned. “You do?”
“We’re not all as daft as you, Potter,” Draco drawled. The insult lacked spirit, but it made Harry feel centered. Balanced. Safe. “I’ve known for years.”
“Why didn’t you say anything?” Harry demanded. And then he realised. “Oh. Because you don’t like me back.”
“That’s a really stupid assumption, even for you.”
“So, you like me?”
“Of course I like you, you idiot! I’ve been in fucking love with you since we were in Hogwarts!”
Harry’s mouth went dry. “Then why–”
“I just told you,” Draco interrupted, “you’re a selfless, passionate, hot-headed prat who would jump into an active volcano to save a damn butterfly! It would hurt to lose you now, but if I… if I let you in, I wouldn’t stand to–” He shook his head. “No. I’m not risking it.”
“What’s life without a little risk?” Harry found himself saying.
Draco snorted. “Is that supposed to be some kind of Gryffindor pick up line?”
“I–no! It's something my godfather told me once. Actually… I wouldn't be surprised if he used it as a pick up line,” Harry muttered. “But what I meant is–you can't be happy if you're not willing to take risks, Draco. You'll be safer, yeah, but at what cost? Getting hurt from time to time… it’s just part of being alive. You can't always protect yourself. Not if you want to be happy.” He smirked. “Besides, I've survived the killing curse twice. Are you seriously afraid a wee volcano would stand a chance against me?”
Draco visibly tried to stop his lips from smiling. Harry observed their every twitch, lost, not for the first time, in their delicate shape and texture. Draco's lips were somehow always moisturized, even after spending days on a mission, and Harry always caught himself wanting to touch.
“I want to kiss you.”
Draco's gaze darkened. “Merlin. Why do you always have to be so blunt?”
“Hey, I've spent years crushing on you without telling you! I deserve to get it out of my system!”
“Potter, you charming prat.” Draco eyed him, biting his lip. “I can't believe I'm going to say this, but… you're right. Ugh, that felt so wrong.”
Harry let out a squeal, then covered his mouth with both hands, horrified. When Draco guffawed, he kicked him playfully in the shin.
“Does that mean you're willing to take the risk?” he asked, still smiling.
Draco have him his best smirk. “That depends.”
“What? On what?”
“See, Potter, you have to prove that you're worth the risk. I can assure you I’m not having my heart broken over a bad kisser. Oh, and you'd better make an oath here and now that you're going to brush your teeth after every meal from today onwards. And that hair of yours–”
“Hey, the hair stays right how it is,” Harry cut in.
“If you'd let me finish my sentence, please. That hair of yours gets to be brushed by me every night before bed so I can fondle it while I fall asleep. Those are my conditions.”
“Every night?” Harry repeated. “Wow, you're really serious about this.”
“Go big or go home, Potter. Isn't that the Gryffindor way of life?” Draco drawled. “Shut up and kiss me already.”
Harry's heart did a somersault in his chest. He crawled into Draco's arms once more. His nerves made him half-trip, and he nuzzled Draco's cheek in the process.
“Not the best start,” Draco muttered, clearly amused.
With an annoyed grunt, Harry held Draco's jaw and brought their lips together. It had been so long since he'd kissed anyone, but he couldn't remember lips ever being so damn soft. Trust Draco Malfoy to have velvety smooth lips–as delicate as his tongue was sharp whenever he teased Harry.
That tongue proved to be much more than sharp as soon as it found Harry's. It made him sigh and moan, and he felt so hot he couldn't understand how he'd been shaking just a few minutes before.
“Am I good at this, or what?” he mumbled.
“Shut up.” Draco intertwined his fingers in Harry's hair to kiss him again. Harry beamed into the kiss.
He could have spent the whole night in that moment, suffused in all of Draco and only Draco, but a very inconvenient shine caught his attention from the corner of his eye.
“The hag’s magic trace,” Draco said, gasping for air as he retreated from the kiss. “We found her.”
274 notes · View notes
mysocialgreys · 3 years ago
Text
Update github desktop
Tumblr media
#Update github desktop how to
#Update github desktop install
#Update github desktop update
Reinstall with dpkg command sudo dpkg -i b
#Update github desktop install
And the command sudo apt install -f will fix dependencies and broken packages if any.
#Update github desktop update
The command sudo apt update will update package lists. Fix dependency errors and broken packages sudo apt update & sudo apt install -f Note: Replace b with actual file name with deb extension. Open your terminal ( Ctrl + Alt + T), head over to your directory where your installer has been saved and run the below commands with sudo privileges. GitHub Desktop Release page to download deb format file, provided via direct link. Installing GitHub Desktop with deb using dpkg command To run, just double click on the AppImage file. To provide permission, execute sudo chmod u+x fileName.AppImage command, replacing fileName with an actual file name with extension. Next, we need to provide executable permission to this downloaded AppImage file. GitHub Desktop Release page to download an AppImage file, provided via direct link. The recorded demo for installation process, uploaded on YouTube consists of versionĢ.5.7 Linux RC1 with supported formats are AppImage, deb and rpm. Follow the same steps to install into other Ubuntu-based distros.
#Update github desktop how to
In this article, we will see how to install this open-source Git application in Ubuntu or Ubuntu-based distributions. While updating this article, the latest release version for application is 2.9.6 Linux RC]( ) and supported formats are AppImage, deb and rpm. Here release files for all versions are available. To download the Linux installer file we need to head over to the ) at GitHub has made it for Linux and source code While writing this article, it is official supported on Windows, and Mac platforms. A repository for source code is available on GitHub Desktop is an open-source, cross-platform Git application.
Tumblr media
0 notes
npmjs · 7 years ago
Text
v6.0.0-next.2
Hey y'all! Here's another npm@6 release -- with node@10 around the corner, this might well be the last prerelease before we tag 6.0.0! There's two major features included with this release, along with a few miscellaneous fixes and changes.
EXTENDED npm init SCAFFOLDING
Thanks to the wonderful efforts of @jdalton of lodash fame, npm init can now be used to invoke custom scaffolding tools!
You can now do things like npm init react-app or npm init esm to scaffold an npm package by running create-react-app and create-esm, respectively. This also adds an npm create alias, to correspond to Yarn's yarn create feature, which inspired this.
008a83642 ed81d1426 833046e45 #20303 Add an npm init feature that calls out to npx when invoked with positional arguments. (@jdalton)
DEPENDENCY AUDITING
This version of npm adds a new command, npm audit, which will run a security audit of your project's dependency tree and notify you about any actions you may need to take.
The registry-side services required for this command to work will be available on the main npm registry in the coming weeks. Until then, you won't get much out of trying to use this on the CLI.
As part of this change, the npm CLI now sends scrubbed and cryptographically anonymized metadata about your dependency tree to your configured registry, to allow notifying you about the existence of critical security flaws. For details about how the CLI protects your privacy when it shares this metadata, see npm help audit, or read the docs for npm audit online. You can disable this altogether by doing npm config set audit false, but will no longer benefit from the service.
f4bc648ea #20389 [email protected] (@iarna)
594d16987 #20389 [email protected] (@iarna)
8c77dde74 1d8ac2492 552ff6d64 09c734803 #20389 Add new npm audit command. (@iarna)
be393a290 #20389 Temporarily suppress git metadata till there's an opt-in. (@iarna)
8e713344f #20389 Document the new command. (@iarna)
MORE package-lock.json FORMAT CHANGES?!
820f74ae2 #20384 Add from field back into package-lock for git dependencies. This will give npm the information it needs to figure out whether git deps are valid, specially when running with legacy install metadata or in --package-lock-only mode when there's no node_modules. This should help remove a significant amount of git-related churn on the lock-file. (@zkat)
BUGFIXES
9d5d0a18a #20358 npm install-test (aka npm it) will no longer generate package-lock.json when running with --no-package-lock or package-lock=false. (@raymondfeng)
e4ed976e2 2facb35fb 9c1eb945b #20390 Fix a scenario where a git dependency had a comittish associated with it that was not a complete commitid. npm would never consider that entry in the package.json as matching the entry in the package-lock.json and this resulted in inappropriate pruning or reinstallation of git dependencies. This has been addressed in two ways, first, the addition of the from field as described in #20384 means we can exactly match the package.json. Second, when that's missing (when working with older package-lock.json files), we assume that the match is ok. (If it's not, we'll fix it up when a real installation is done.) (@iarna)
DEPENDENCIES
1c1f89b73 [email protected] (@zkat)
242d8a647 [email protected] (@zkat)
DOCS
a1c77d614 #20331 Fix broken link to 'private-modules' page. The redirect went away when the new npm website went up, but the new URL is better anyway. (@vipranarayan14)
ad7a5962d #20279 Document the --if-present option for npm run-script. (@aleclarson)
1 note · View note