The Broadband Forum as a lot of technical| /dev/posts/
Nearly a year ago I received the first letter from my ISP about it ditching DSL service and replacing it with “wireless service.”| The Boston Diaries
Monitoring with Icinga primarily focuses on servers and infrastructure. But there are also the people operating these systems from their workstations and laptops. If a server can be accessed from a machine with an outdated operating system, the patch level of the server becomes irrelevant. In computer security, the allegory of a chain and its weakest link is often used to describe the security of a system. This weakest link may be a person using a machine for various tasks, from systems admin...| Icinga
Demystifying DSLs Part II : A Working Definition Domain-specific Languages (DSLs) are everywhere, but there is precious little consensus on a working definition to describe them. Academic conferences about DSLs turn to the presentation of ever more abstract tools aimed at simplifying the task of implementing DSLs, or the enumeration of more and more exotic [...] The post Demystifying DSLs Part II : A Working Definition appeared first on Raincode Labs.| Raincode Labs
Demystifying DSLs Part 1: Time is of the Essence When it comes to implementing industrial-grade Domain Specific Languages (DSLs), rushing to deliver something as early as possible can prove dramatically counter-productive. This is true for all software projects, not just DSL projects, but it is as if the DSL community needs this reminder more than [...] The post Demystifying DSLs Part I: Time is of the Essence appeared first on Raincode Labs.| Raincode Labs
Soon the 8th Summer School on Domain Specific Modeling Theory & Practice (DSM-TP 2017) will take place at Université de Montréal (Montreal, Canada). This 5-day summer school is aimed at researchers, teachers, practitioners and PhD students who already work with Domain Specific Modeling or intend to increase their knowledge on it. Let's have a look [...] The post How Domain Specific Languages Change our Lives appeared first on Raincode Labs.| Raincode Labs
本文永久链接 - https://tonybai.com/2025/06/26/non-deterministic-abstraction 大家好,我是Tony Bai。 在软件开发领域,Martin Fowler 的名字几乎等同于思想的灯塔。他的每一篇文章、每一次演讲,都能为我们| tonybai.com
Ein kombinierter DSL Anschluss mit Internet und Telefon ist in Deutschlands Haushalten sehr häufig vertreten. Ein Umzug berechtigt grundsätzlich nicht zur außerordentlichen Kündigung des Anschlusses. Das Problem: Meist beträgt die Mindestlaufzeit des Vertrages zwei Jahre. Wenn Sie einen Umzug planen, sollten Sie darauf achten, wie viel Restlaufzeit besteht. In einigen Fällen können Sie jedoch von… Mehr lesen »Sonderkündigungsrecht bei Umzug: Internet kündigen| mietrecht.de
Overview I've been in Colombia for the last month visiting family, and last week I had the opportunity to hang out with the Medellin.rb meetup . It was led by Oscar Rendon and it was all about DSLs in Ruby. It was also a fun challenge to try to…| Leigh Halliday's RSS Feed
Today I’m going to be writing about ISLE, or the “instruction selection/lowering expressions” domain-specific language (DSL), which over the past year we have designed, improved, and fully adopted in the Cranelift compiler project. ISLE is now used to express both our instruction-lowering patterns for each of four target architectures, and also machine-independent optimizing rewrites. It allows us to develop these parts of the compiler in an extremely productive way: we can write the ke...| Chris Fallin
In the realm of academic research, the Institutional Review Board (IRB) process serves as a pivotal mechanism that ensures the ethical treatment of human| Robert Forto
Under Federal regulations and University policy, all researchers who conduct research—including those completing master's theses and doctoral dissertations or| Robert Forto
When you earn a PhD or similar doctoral degree, such as a professional doctorate, you’ll have the opportunity to advance human knowledge. That’s a compelling| Robert Forto
code master oop ruby jruby java jee jse desktop web gui glimmer swt libui tk gtk rails| andymaleh.blogspot.com
This is nothing more than linked list of resources for learning how to| 200ok - Accelerating Publishing
Let's look at the XSPF playlist format. It's a pretty simple XML-based file format.| blogs.perl.org
Ruby is an excellent programming language for creating and managing custom DSLs, but how can you securely evaluate a DSL while explicitly controlling the methods exposed to the user? Our good friends instance_eval and instance_exec are great, but they expose all methods - public, protected, and private - to the user. Even worse, they expose the ability to accidentally or intentionally alter the behavior of the system! The cleanroom pattern is a safer, more convenient, Ruby-like approach for l...| Seth Vargo