mod

Optimum Investment Strategy in the Power Industry Mathematical Models

Location: Electronic Resource- 




mod

Model Checking Software 23rd International Symposium, SPIN 2016, Co-located with ETAPS 2016, Eindhoven, The Netherlands, April 7-8, 2016, Proceedings

Location: Electronic Resource- 




mod

Model-Reference Robust Tuning of PID Controllers

Location: Electronic Resource- 




mod

Modified Nucleic Acids

Location: Electronic Resource- 




mod

Patient-Specific Induced Pluripotent Stem Cell Models Generation and Characterization

Location: Electronic Resource- 




mod

Modeling risk applying Monte Carlo simulation, real options analysis, forecasting, and optimization techniques

Location: Electronic Resource- 




mod

Equity Derivatives and Hybrids Markets, Models and Methods

Location: Electronic Resource- 




mod

Modelling Human Behaviour in Landscapes Basic Concepts and Modelling Elements

Location: Electronic Resource- 




mod

De l’ancien français au français moderne: Théories, pratiques et impasses de la traduction intralinguale

Location: Electronic Resource- 




mod

Forms of Individuality and Literacy in the Medieval and Early Modern Periods REMAINDER

Location: Electronic Resource- 




mod

Adolescent literacies and the gendered self : (re)constructing identities through multimodal literacy practices

Location: Electronic Resource- 




mod

Inventing atmospheric science : Bjerknes, Rossby, Wexler, and the foundations of modern meteorology

Location: Engineering Library- QC855.F547 2016




mod

Microwave and RF semiconductor control device modeling

Location: Engineering Library- TK7874.78.C38 2016




mod

Modeling and estimation of structural damage

Location: Engineering Library- TA656.N53 2016




mod

Modelling and precision control of systems with hysteresis

Location: Engineering Library- TJ223.A25L58 2016




mod

Modeling coastal and marine processes

Location: Engineering Library- TC209.D95 2015




mod

Modern control systems

Location: Engineering Library- TJ216.D67 2016




mod

Sound systems : design and optimization : modern techniques and tools for sound system design and alignment

Location: Engineering Library- TK7881.4.M42 2016




mod

Introduction to maintenance engineering : modelling, optimization and management

Location: Engineering Library- TS174.B455 2016




mod

John Vassos : industrial design for modern life

Location: Engineering Library- TS140.V37S53 2016




mod

Modern Web development : understanding domains, technologies, and user experience

Location: Engineering Library- TK5105.888.E87 2016




mod

Numerical models for submerged breakwaters : coastal hydrodynamics and morphodynamics

Location: Engineering Library- TC333.A36 2016




mod

Thermo-Hydro-Mechanical-Chemical Processes in Fractured Porous Media: Modelling and Benchmarking Benchmarking Initiatives

Location: Electronic Resource- 




mod

Demystifying Climate Models A Users Guide to Earth System Models

Location: Electronic Resource- 




mod

Modern Assyrian Language between Speech and Writing: Linguis...

Modern Assyrian Language between Speech and Writing: Linguistic Examination




mod

The "Gutenberg Bible" of Modern Syriac

The "Gutenberg Bible" of Modern Syriac




mod

Modelling and Simulation of Robot Manipulators

Modelling and Simulation of Robot Manipulators



  • Science and Technical Information

mod

Enuma Elish - A modern creation myth for courage and renewal

Enuma Elish - A modern creation myth for courage and renewal



  • Assyrian Fine Arts Network

mod

The Genetics of Modern Assyrians and their Relationship to O...

The Genetics of Modern Assyrians and their Relationship to Other People of the Middle East



  • Assyrian Health Network

mod

Modern and Ancient Assyrians

Modern and Ancient Assyrians



  • Assyrian Education Network

mod

DHL Express new facility to accommodate customers international shipping needs in Virginia

DHL recently expanded its vast network of U.S. retail locations by introducing a new company owned and operated retail shipping store in Fairfax, Virginia. The 1,152 sq. ft. store is the sixth DHL Service Point in Virginia, offering convenient access to its industry-leading shipping services in the D.C. area. 




mod

DHL Express to “accommodate growing international shipping needs” in Texas

DHL has recently expanded its vast network of U.S. retail locations with a new company owned and operated retail shipping store in Bellaire, Texas




mod

Existing home sales rise for first time in six months as mortgage rates moderate

Last month, existing home sales increased for the first time since May as mortgage rates began to moderate.




mod

Summer break is ending. Here are 10 ways parents can help their kids get back into school mode

With summer break ending, The Times spoke with psychologists about how parents can help their students embrace a back-to-school mindset. Here's their advice.




mod

Modeling the Human Cervix on a USB-Sized Chip

Microfluidic chips that mimic the complex human cervical environment provide a platform to study the reproductive tract and associated infections like bacterial vaginosis.



  • News
  • News & Opinion

mod

Modernizing .NETpad: .NET 9 Arrives with a Few (More) Small Improvements for WPF (Premium)

I was excited to see Microsoft bring the Windows Presentation Foundation (WPF) back from the dead this past year: At Build 2024 back in May, it announced that it would continue investing in this 20-year-old technology, starting with support for Windows 11 theming that would arrive as part of .NET 9. In fact, I was so excited about this that I brought my .NETpad project back from the dead as well, and I spent much of the summer modernizing my Notepad clone with the new features. I wrote 24 articles documenting this work, but I was stymied by the half-assed nature of the improvements.

Microsoft released exactly one WPF update during the several months of .NET 9 development, and it never added any of the features I discovered were missing. And so as we headed into today's release of .NET 9, my excitement was somewhat diminished. My assumption was that we wouldn't see those missing features implemented until .NET 10, if ever.

Well, Microsoft just released .NET 9. As part of that release, it published updated documentation for WPF (and all the other .NET technologies). And to my surprise, there are some updates to WPF that address at least one of those missing features.

So let's take a look.

To add support for Windows 11 theming to a WPF project, you need to add a reference to the new Fluent theme resource dictionary in its App.xml file. It looks like so:

<Application.Resources>
    <ResourceDictionary>
      <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="pack://application:,,,/PresentationFramework.Fluent;component/Themes/Fluent.xaml" />
      </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

But with the shipping version of .NET 9, there's a second, more elegant way to add Windows 11 theming support. Now, you can access a new Application.ThemeMode property of a new styling API to toggle the app's theme mode between Light, Dark, System, and None. And that's fantastic, because it addresses one of those missing features: To date, .NETpad has adapted itself to the system theme (Light or Dark), but there was no way to let the user pick a theme mode. (For example, if the system was set to Dark and the user wanted the app to use Light mode.) With this change, I can implement that feature.

Fortunately, .NETpad is ready for this change, too: If you followed along with my work this past summer, you may remember that I implemented the user interface for switching the app theme into its settings interface, but left the UI hidden because it didn't do anything. But I always felt that Microsoft would need to implement this features, so I left the code in there. Granted, I didn't think it would happen this quickly.

The shipping version of .NET 9 also adds explicit support for the Windows 11 accent color (as configured by the user in the Settings app in Personalization > Accent color). As it is, .NETpa...

The post Modernizing .NETpad: .NET 9 Arrives with a Few (More) Small Improvements for WPF (Premium) appeared first on Thurrott.com.




mod

A kitchen remodel that's designed to be practical, rugged and still beautiful

In the spring of 2020, Andrea Walker Warren and her husband, Matt Warren, found themselves in Munich, contemplating moving back to the United States…




mod

Spokane's legacy of 'modern' architecture is everywhere you look — here are seven examples that should be protected and celebrated

Spokane's skyline boasts three iconic buildings…



  • Culture/Arts & Culture

mod

Iconic Levi's Model Nick Kamen Dies at 59

The British model, who shot to fame for starring in an iconic commercial for Levi's jeans in the 1980s before launching his music career, has passed away at the age of 59.




mod

How to Modify the iOS ‘Fast’ Long-Press Speed Option to Open Context Menus More Quickly

In this episode, Thomas Domville demonstrates how to enable the Fast long-press speed option on iOS 17. This new feature allows for quicker access to context menus and other Haptic Touch actions, enhancing your workflow and making your iPhone feel more responsive.

Here’s how you can activate the Fast Long-Press Speed Option:

  1. Launch the Settings app.
  2. Navigate to Accessibility.
  3. Select Touch.
  4. Choose Haptic Touch.
  5. Under Touch Duration, opt for Fast.

    You can gauge the new response time by long-pressing on the flower image displayed on the same screen. This simple adjustment can significantly boost your iPhone’s responsiveness.




mod

How and When to Start Your Mac in Safe Mode

In this episode, Tyler demonstrates how to start your Mac in safe mode and explains in what situations this may be useful.

Safe mode is a feature of macOS that disables login items, third-party drivers, and legacy system extensions at startup, useful if an incompatible item in one of these groups is causing a problem with your Mac. In addition, system caches are cleared, and a light check of your startup disk is performed when starting up in safe mode, which can identify possible issues that could be causing slower than expected performance.

To start up in safe mode, start up the Mac while holding down the Power button, and interact with your startup disk (usually called Macintosh HD) in the grid that appears. Focus on the Continue button and route the mouse pointer to it by pressing VO-Command-F5, (or VO-Command-Globe-5 if you’re using a Mac with a Touch Bar) hold down the Shift key, and click the mouse. Maintenance tasks are completed once the Mac has finished starting; restart your Mac to exit this mode.

If you’re trying to isolate a particular issue, attempt to reproduce it when in safe mode, and again once you leave this mode. If the issue no longer occurs, it was likely resolved by the maintenance tasks that macOS performed. If it doesn’t occur when in safe mode but returns once you leave this mode, you may want to remove login items for third-party apps, update, remove, or reinstall any third-party drivers or legacy system extensions, or contact their developers for assistance. For more information, check out the Apple Support article “Use safe mode on your Mac”

Note: VoiceOver only works in safe mode on Macs with Apple Silicon.

transcription:

Disclaimer: This transcript is generated by AIKO, an automated transcription service. It is not edited or formatted, and it may not accurately capture the speakers’ names, voices, or content.

Hey AppleVisers, Tyler here, with a quick tip for how and when to start your Mac in safe mode.

Safe mode is a feature of macOS that prevents certain software components like login items, third-party drivers, and legacy system extensions from loading at startup.

If you're having trouble starting your Mac or have some other issue that's tough to pin down, an incompatible item in one of these groups may be the culprit, and thus starting up in safe mode can help you rule that either in or out.

In addition, when starting in safe mode, a light check of your startup disk is performed, similar to what happens when running first aid in Disk Utility, and your system caches are cleared, which can potentially improve the performance and responsiveness of your Mac if such files have become corrupted over time.

Safe mode is a feature that's existed in macOS for a long time.

The problem for voiceover users prior to Apple Silicon was that, as part of this mode, the audio driver was disabled, and thus the Mac could not provide any audible feedback, making voiceover effectively useless.

However, with Apple Silicon, audio is supported, and thus voiceover users can use macOS in safe mode as if they were using it in any other boot screen.

If you have enough usable vision to see the screen and want to start an Intel Mac in safe mode, you can do so by restarting it or turning it on while holding down the shift key.

For a Mac with Apple Silicon, you'…




mod

Setting up and moderating a Mastodon instance (but not hosting) (Remote)

This is very speculative. I am assisting a faculty member where I work with the idea of establishing a Mastodon server (hosted by the university) to support a specialized intersection of a particular equity-seeking group and an area of study. The work would be to help run the server, and possibly promote it -- a combination moderator and marketer, both making sure the community is running smoothly and also reaching to people to encourage them to join. If this seems interesting to you, and in full knowledge that this might go nowhere, I'd love to hear about your moderation experience, how many hours a week you think you'd be able to put into the project, and your pay per hour expectations (in USD).




mod

Pomodoro-style apps that are more gamified

I've tried a bunch of pomodoro-style apps that I haven't done well with. I recently found one that's like Pomodoro except there's a growing plant, and if you mess with your phone you'll kill the plant. This works for me for whatever reason. I was wondering if anyone knew of other apps like that; especially ones with more real-world consequences. I guess my will isn't strong enough to not mess with my phone just because some timer is counting down. But the charming messages about the poor little plant and the cute drawings appeal to me apparently.

I saw this app PocketPoints, which would be great except it only works at participating schools.

I'm also not interested in those apps that quantify how often you check your phone.

This is for iOS please.

Thanks!




mod

FM Waveform 2.0 2.0 by RemoDeVico

FM Waveform Synthesizer free download: https://www.remodevicocomposer.eu/maxforlive/ ...




mod

The Vanishing Moderate Democrat

Their positions are popular. So why are they going extinct?




mod

Apertura y cierre: ¿Nuevo modelo para controlar pandemia?




mod

MinEducación: en 2021 estudiantes regresan con modelo de alternancia




mod

"Le pedí que se acomodara el tapabocas y no obstruyera la vía, no obedeció"




mod

De lo social a lo económico, el papel de Colombiamoda en la reactivación

Seis expertos plantearon que el regreso de las pasarelas es la muestra de la fortaleza del sector; resaltaron el papel de la moda con sentido social.




mod

Bogotá Fashion Week: el regreso de las pasarelas y las tendencias en moda

Cinco expertos hablan del regreso del BFW a las pasarelas; de las nuevas tendencias de la moda y de la sostenibilidad en tiempos de cambio climático.