creating

A rising star: For Conor O’Neill and The Cottage at Blue Ridge, baking bread is all about creating community


The Cottage at Blue Ridge has become a sort of local phenomenon: A bread popup launched last summer in the Edmonds enclave of Perrinville, that typically sells out its weekly goods in less than two hours.



  • Food & Drink
  • Pacific NW Magazine

creating

Getting 'hygge' with it and creating cosy homes




creating

What does Australia need to do before creating trans-Tasman bubble?

Australia's National Cabinet was joined by the New Zealand Prime Minister Jacinda Ardern to discuss the possibility of a trans-Tasman travel 'bubble' - but what do we need to be sure of before that can become a reality?






creating

Freya Jobbins started her art practice by creating life sized sculptures





creating

Albany Regional Prison's dog training program is creating better pets and better people

For inmates in a maximum security prison in WA, socialising unwanted dogs is "like a day away" from jail and the effects of the program are being described as "win-win".




creating

Tasmania news: Hit and run trial not guilty by insanity, woman guilty of creating fake university documents

DAILY BRIEFING: 31 year-old Josef Barker found not guilty of murder in fatal hit and run, and a woman who lied about attending a university campus at Cradle Mountain so she could travel while on bail is sentenced.




creating

Closing the climb was the easy part creating a brighter future for the people who live there is much harder

If tourists could see Mutitjulu, most would be shocked by the level of abject poverty at Australia's famous natural wonder.




creating

Terry Gilliam, '12 Monkeys' screenwriters reunite, admit they 'had no clue' when creating film's fictitious virus

"12 Monkeys" director Terry Gilliam and screenwriters David and Janet Peoples are not taking any credit for predicting a pandemic in their sci-fi classic starring Bruce Willis and Brad Pitt.





creating

Creating business advantage with workforce diversity and inclusion

For many people, accessibility and disability are philanthropic efforts that represent requisite components of every company's Corporate Social Responsibility (CSR) portfolio. Well, that is one point of view. At IBM, we've traditionally viewed these issues from a more out-of-the-box perspective that asked: What if accessibility was a REAL business? How could including people with disabilities in the workforce create an additional business advantage for companies?




creating

Healing the world: A surgeon’s quest. Creating a universal translator with IBM collaboration, captioning and translation tools.

Dr. Steven Schwaitzberg is a man with a mission. He wants to teach surgeons around the world the Fundamentals of Laparoscopic Surgery (FLS) so that they can perform minimally invasive surgery and he wants to do it using sophisticated collaborative tools




creating

GitHub - aftertheflood/sparks: A typeface for creating sparklines in text without code.

sparks - A typeface for creating sparklines in text without code.




creating

Creating a New Language File for a Theme Translation

Recently, I’ve had a lot of customers asking me about creating a theme translation file for some of my themes. What I always assumed was a straightforward process actually has…

The post Creating a New Language File for a Theme Translation appeared first on bavotasan.com.





creating

Creating a simple link registry - Matthias Noback

The problem: if you publish any document as PDF, in print, etc. and the text contains URLs, there is a chance that one day those URLs won't work anymore. There's nothing to do about that, it happens.

Luckily, this is a solved problem. The solution is to link to a stable and trustworthy website, that is, one that you maintain and host (of course, you're trustworthy!). Then in the document you link to that website, and the website redirects visitors to the actual location.

An example: my book contains a link to https://enjoy.gitstore.app/repositories/matthiasnoback/read-with-the-author. When I moved that repository to a new organization on GitHub, this link resulted in a 404 Page not found error. The proper URL is now https://enjoy.gitstore.app/repositories/read-with-the-author/read-with-the-author. Chris from Gitstore was able to save the day by setting up a redirect on their site, but I wanted to make sure this kind of problem would never be a problem for me again.

The ingredients for the solution:

  • A domain name (I registered advwebapparch.com)
  • A simple website that can redirect visitors to the actual locations

I wanted to hook this new website into my existing Docker-based setup which uses Traefik to forward traffic to the right container based on labels. It turns out, with a simple Nginx image and some custom setup we can easily set up a website that is able to redirecting visitors.

The Dockerfile for such an image:

FROM nginx:stable-alpine
COPY default.conf /etc/nginx/conf.d/default.conf

Where default.conf looks like this:

server {
    listen 80 default_server;
    index index.html;
    root /srv;

    error_page 404 /404.html;

    rewrite /repository https://enjoy.gitstore.app/repositories/read-with-the-author/read-with-the-author redirect;
}

This already works, and when I deploying the resulting image to the server that receives traffic for advwebapparch.com, a request for /repository will indeed redirect a visitor to https://enjoy.gitstore.app/repositories/read-with-the-author/read-with-the-author using a temporary redirect.

Generating the Nginx configuration from a text file

When I'm working on my book, I don't want to manually update a server configuration file every time I'm adding a URL. Instead, I'd like to work with a simple text file. Let's name this file forwards.txt:

/repository https://enjoy.gitstore.app/repositories/read-with-the-author/read-with-the-author
/blog https://matthiasnoback.nl

And then I want the Docker image build process to add rewrite rules automatically, So I wrote a little PHP script that does this runs during the build. Here's what the Dockerfile looks like. It uses a multi-stage build:

FROM php:7.4-alpine as php
# This will copy build.php from the build context to the image
COPY . .
# This will generate default.conf based on template.conf
RUN php build.php

FROM nginx:stable-alpine
# Copy the default.conf from the php image to the nginx image
COPY --from=php default.conf /etc/nginx/conf.d/default.conf

Here's what happens inside the PHP script:

function insertRewritesInNginxConf(string $conf): string
{
    $rewrites = [];

    foreach (file('forwards.txt') as $line) {
        $line = trim($line);
        if (empty($line)) {
            continue;
        }

        $rewrites[] = '    ' . 'rewrite ' . $line . ' redirect;';
    }

    return str_replace(
        '%INSERT_URL_REWRITES_HERE%',
        implode("
", $rewrites),
        $conf
    );
}

/*
 * Generate the Nginx configuration which includes all the actual
 * redirect instructions
 */
file_put_contents(
    'default.conf',
    insertRewritesInNginxConf(file_get_contents('template.conf'))
);

We should add a bit of validation for the data from the forwards.txt file so we don't end up with a broken Nginx configuration, but otherwise, this works just fine.

I don't want to manually check that all the links that are inside the "link registry" still work. Instead, I'd like to use Oh Dear for that, which does uptime monitoring and checks for broken links as well.

For this purpose I added another function to the PHP script, which, based

Truncated by Planet PHP, read more at the original (another 1844 bytes)




creating

'Job Creating' Sprint T-Mobile Merger Triggers Estimated 6,000 Non-Covid Layoffs

Back when T-Mobile and Sprint were trying to gain regulatory approval for their $26 billion merger, executives repeatedly promised the deal would create jobs. Not just a few jobs, but oodles of jobs. Despite the fact that US telecom history indicates such deals almost always trigger mass layoffs, the media dutifully repeated T-Mobile and Sprint executive claims that the deal would create "more than 3,500 additional full-time U.S. employees in the first year and 11,000 more people by 2024."

About that.

Before the ink on the deal was even dry, T-Mobile began shutting down its Metro prepaid business and laying off impacted employees. When asked about the conflicting promises, T-Mobile refused to respond to press inquiries. Now that shutdown has accelerated, with estimates that roughly 6,000 employees at the T-Mobile subsidiary have been laid off as the freshly-merged company closes unwanted prepaid retailers. T-Mobile says the move, which has nothing to do with COVID-19, is just them "optimizing their retail footprint." Industry insiders aren't amused:

"Peter Adderton, the founder of Boost Mobile in Australia and in the U.S. who has been a vocal advocate for the Boost brand and for dealers since the merger was first proposed, figures the latest closures affect about 6,000 people. He cited one dealer who said he has to close 95 stores, some as early as May 1.

In their arguments leading up to the merger finally getting approved, executives at both T-Mobile and Sprint argued that it would not lead to the kind of job losses that many opponents were predicting. They pledged to create jobs, not cut them.

“The whole thing is exactly how we called it, and no one is calling them out. It’s so disingenuous,” Adderton told Fierce, adding that it’s not because of COVID-19. Many retailers in other industries are closing stores during the crisis but plan to reopen once it’s safe to do so."

None of this should be a surprise to anybody. Everybody from unions to Wall Street stock jocks had predicted the deal would trigger anywhere between 15,000 and 30,000 layoffs over time as redundant support, retail, and middle management positions were eliminated. It's what always happens in major US telecom mergers. There is 40 years of very clear, hard data speaking to this point. Yet in a blog post last year (likely to be deleted by this time next year), T-Mobile CEO John Legere not only insisted layoffs would never happen, he effectively accused unions, experts, consumer groups, and a long line of economists of lying:

"This merger is all about creating new, high-quality, high-paying jobs, and the New T-Mobile will be jobs-positive from Day One and every day thereafter. That’s not just a promise. That’s not just a commitment. It’s a fact....These combined efforts will create nearly 5,600 new American customer care jobs by 2021. And New T-Mobile will employ 7,500+ more care professionals by 2024 than the standalone companies would have."

That was never going to happen. Less competition and revolving door, captured regulators and a broken court system means there's less than zero incentive for T-Mobile to do much of anything the company promised while it was wooing regulators. And of course such employment growth is even less likely to happen under a pandemic, which will provide "wonderful" cover for cuts that were going to happen anyway.

Having watched more telecom megadeals like this than I can count, what usually happens is the companies leave things generally alone for about a year to keep employees calm and make it seem like deal critics were being hyperbolic. Then, once the press and public is no longer paying attention (which never takes long), the hatchets come out and the downsizing begins. When the layoffs and reduced competition inevitably arrives, they're either ignored or blamed on something else. In this case, inevitably, COVID-19.

In a few years, the regulators who approved the deal will have moved on to think tank, legal or lobbying positions at the same companies they "regulated." The same press that over-hyped pre-merger promises won't follow back up, because there's no money in that kind of hindsight policy reporting or consumer advocacy. And executives like John Legere (who just quit T-Mobile after selling his $17.5 million NYC penthouse to Giorgio Armani) are dutifully rewarded, with the real world market and human cost of mindless merger mania quickly and intentionally forgotten.




creating

01/17/16 - Out there creating memories




creating

Creating a Quarantine Schedule Is Not the Opposite of Being Free-Range

At Let Grow, a wise mom named Kate Sundquist admits that while her kids were already good at playing, they certainly weren’t good at filling hours and hours of free time, playing by themselves. (Read the piece here.) So she her and boys created a schedule. “While these routines might seem restrictive or even the […]




creating

Creating a Mini Target Ball out of Cement

A few people don't want to own one of these intriguing red cement balls. I'm not one of those people.




creating

MacMillan illuminates the micro-environment, creating a new path to cancer drugs

A team of Princeton chemists has identified a way to tag a protein's nearest molecular neighbors, enabling the precise mapping of their micro-environment. This could open new avenues to cancer treatment and other drug therapies.




creating

'People shouldn't be hurt, we should be creating joy'

Former Mayo boss Frank Browne - now coaching Galway - believes it's time for those involved in Mayo football to bury the hatchet for the good of the players




creating

Video: Creating and Racing the GT LTS - 'Full Travel' Ep.2



A look behind the scenes at the creation of the GT LTS from development to racing with the GT Factory Racing team.
( Comments: 30 )




creating

Theme park fans are re-creating rides at home, with tennis balls and pets as special effects

Disneyland is closed -- but that hasn't stopped fans from building their own theme park rides and attractions in their homes and backyards.




creating

02 and Virgin Media to merge creating a media and telecoms giant worth £31BILLION



VIRGIN Media and O2 are to merge to create a £31billion media and telecoms giant, their parent firms have announced. Liberty Global and Telefonica - the owners of Virgin Media and O2 respectively - had confirmed on Monday that they were in discussions over a possible combination.




creating

ABB to open distribution center in Phoenix creating 100 new jobs

2020-03-27 -




creating

The secrets to creating an irresistible Star Wars creature, from Chewie to Baby Yoda

As “The Rise of Skywalker” opens, here's a look back at how the series created so many memorable ones.




creating

We’d like to see the artwork you’re creating during the coronavirus crisis

Submit your visual art here. We'll publish some of the submissions.




creating

oscon: Community Management Training - strategic planning, creating buzz, handling conflict + more http://t.co/eHz9h6VfnU @jonobacon #oscon

oscon: Community Management Training - strategic planning, creating buzz, handling conflict + more http://t.co/eHz9h6VfnU @jonobacon #oscon




creating

Creating Something out of (Next to) Nothing

Normally when creating a digital file, such as a picture, much more information is recorded than necessary-even before storing or sending. The image on the right was created with compressed (or compressive) sensing, a breakthrough technique based on probability and linear algebra. Rather than recording excess information and discarding what is not needed, sensors collect the most significant information at the time of creation, which saves power, time, and memory. The potential increase in efficiency has led researchers to investigate employing compressed sensing in applications ranging from missions in space, where minimizing power consumption is important, to MRIs, for which faster image creation would allow for better scans and happier patients. Just as a word has different representations in different languages, signals (such as images or audio) can be represented many different ways. Compressed sensing relies on using the representation for the given class of signals that requires the fewest bits. Linear programming applied to that representation finds the most likely candidate fitting the particular low-information signal. Mathematicians have proved that in all but the very rarest case that candidate-often constructed from less than a tiny fraction of the data traditionally collected-matches the original. The ability to locate and capture only the most important components without any loss of quality is so unexpected that even the mathematicians who discovered compressed sensing found it hard to believe. For More Information: "Compressed Sensing Makes Every Pixel Count," What's Happening in the Mathematical Sciences, Vol. 7, Dana Mackenzie.




creating

CBD Canadian Taxonomy: Exploring Biodiversity, Creating Opportunity, Report in Focus.




creating

SAS Notes for SAS®9 - 34114: Creating a detailed SAS Stored Process Server log by default

The SAS Stored Process Server does not create a detailed log file by default. However, you can create a detailed SAS Stored Process Server log file (that will contain information about all of the code that was executed) by using this approach. AUTO




creating

Creating support for doctors in the NHS

The NHS Practitioner Health Programme - once only for doctors in London, now it’s being rolled out across the NHS to provide the largest, publicly funded, comprehensive physician health service, in the world. However, while helping the individual is essential, systemic change needs to be made to support doctors in our healthcare system. Clare...




creating

Creating a speak out culture

Giving staff the confidence to speak out is important in healthcare - It's a key aspect of the WHO patient safety checklist, decreasing incidence of medical error, but it's also important to stop incidents of harassment and abuse which undermine staff and increase burnout. Creating that culture is a difficult task, but two hospitals in the...




creating

A Strategic Framework for Creating Legality and Order in Immigration

This report analyzes how governments ought to best allocate their resources to address the risks associated with migration—the "immigration harms" that undermine the positive economic and social benefits of immigration—including choosing which threats to tackle and where to prioritize enforcement efforts. Immigration policymakers can learn from other public policy regulation efforts to ensure that regulatory actions advance the public interest.




creating

Social Innovation for Refugee Inclusion Conference Report: Maintaining Momentum and Creating Lasting Change

Fostering the social and economic inclusion of refugees has long been the domain of governments and NGOs. In the wake of the 2015–16 European migration and refugee crisis, however, new actors have emerged and taken on important roles in integrating newcomers. This report describes key discussions and takeaways from an MPI Europe conference on these developments.




creating

Creating a Home in Canada: Refugee Housing Challenges and Potential Policy Solutions

One of the major challenges Canada faced during its extraordinary push to resettle 25,000 Syrian refugees during a four-month period was to find housing for these newcomers. This report explores how the government, resettlement case workers, and private citizens tackled this challenge—balancing cost and location, access to services, and more—and how lessons learned can improve refugee housing practices for other countries going forward.




creating

In Delaware, Creating Career Pathways for Youths

A statewide initiative aims to enroll half the state's high school students into career pathways to close a "skills gap."




creating

Fentanyl, Inc. : how rogue chemists are creating the deadliest wave of the opioid epidemic / Ben Westhoff.

Designer drugs -- Fentanyl.




creating

SOLIDWORKS Electrical Formula SAE Tutorial: Creating a Project

The SOLIDWORKS Electrical Formula SAE Tutorial Series will show how to use SOLIDWORKS Electrical and use its different functions. In this first video, we will learn how to create a new project or make our own custom template.

Author information

Ajay Vaidya

I am the SOLIDWORKS Education Brand Advocacy Digital Marketing Intern in Waltham, MA. I go to Marywood University, Scranton, PA. Currently, I am studying Management Information Systems. During my free time, I love to play the keyboard, guitar, and ukulele. I can speak 8 languages!

The post SOLIDWORKS Electrical Formula SAE Tutorial: Creating a Project appeared first on SOLIDWORKS Education Blog.




creating

Creating the Shapetober Skull

In this blog by Justin Burton, he shows us how to create a Skull in Shape It app in Apps For Kids.

Author information

Justin Burton

SOLIDWORKS Senior Product Portfolio Manager

The post Creating the Shapetober Skull appeared first on SOLIDWORKS Education Blog.




creating

SOLIDWORKS Electrical Formula SAE Tutorial: Inserting and Creating a Line Diagram Symbol

The SOLIDWORKS Electrical Formula SAE Tutorial Series will show how to use SOLIDWORKS Electrical and use its different functions. In the second video, we will learn how to insert and create a line diagram symbol.

Author information

Ajay Vaidya

I am the SOLIDWORKS Education Brand Advocacy Digital Marketing Intern in Waltham, MA. I go to Marywood University, Scranton, PA. Currently, I am studying Management Information Systems. During my free time, I love to play the keyboard, guitar, and ukulele. I can speak 8 languages!

The post SOLIDWORKS Electrical Formula SAE Tutorial: Inserting and Creating a Line Diagram Symbol appeared first on SOLIDWORKS Education Blog.




creating

SOLIDWORKS Electrical Formula SAE Tutorial: Assigning, Creating and Modifying Manufacturer Part

In the prior video, we learned how to insert and create a line diagram symbol. In this video we will learn how to assign a manufacturer part to a line diagram symbol, create our own manufacturer parts and edit an

Author information

Ajay Vaidya

I am the SOLIDWORKS Education Brand Advocacy Digital Marketing Intern in Waltham, MA. I go to Marywood University, Scranton, PA. Currently, I am studying Management Information Systems. During my free time, I love to play the keyboard, guitar, and ukulele. I can speak 8 languages!

The post SOLIDWORKS Electrical Formula SAE Tutorial: Assigning, Creating and Modifying Manufacturer Part appeared first on SOLIDWORKS Education Blog.




creating

Mastering SOLIDWORKS Visualize and Creating the FIRST Global Challenge Field

In this blog by intern Ben, he explains how to learn and master SOLIDWORKS Visualize

Author information

Ben Horton

I am an intern and a mentor in the 3DEXPERIENCE Lab here at the DASSAULT SYSTEMS Waltham campus. Currently I am studying Mechanical Engineering at the University of Massachusetts, Lowell. I am also the Vice-President of the Society of Automotive Engineers at UMass Lowell. My interests include building racecars, petting dogs, being a maker, and going on adventures in my Outback!

The post Mastering SOLIDWORKS Visualize and Creating the FIRST Global Challenge Field appeared first on SOLIDWORKS Education Blog.




creating

SOLIDWORKS Electrical Formula SAE Tutorial: Creating Electrical Connection Points inside a SOLIDWORKS part

In the previous video, we learned how to do create detailed cabling and connect cable cores to components. In this video, we will learn how to create electrical connection points inside a SOLIDWORKS part in SOLIDWORKS Electrical

Author information

Ajay Vaidya

I am the SOLIDWORKS Education Brand Advocacy Digital Marketing Intern in Waltham, MA. I go to Marywood University, Scranton, PA. Currently, I am studying Management Information Systems. During my free time, I love to play the keyboard, guitar, and ukulele. I can speak 8 languages!

The post SOLIDWORKS Electrical Formula SAE Tutorial: Creating Electrical Connection Points inside a SOLIDWORKS part appeared first on SOLIDWORKS Education Blog.




creating

SOLIDWORKS Electrical Formula SAE Tutorial: Creating a routing path and route cables along the path

In today's tutorial, we'll learn how to create routing paths and route cables along the path.

Author information

Ajay Vaidya

I am the SOLIDWORKS Education Brand Advocacy Digital Marketing Intern in Waltham, MA. I go to Marywood University, Scranton, PA. Currently, I am studying Management Information Systems. During my free time, I love to play the keyboard, guitar, and ukulele. I can speak 8 languages!

The post SOLIDWORKS Electrical Formula SAE Tutorial: Creating a routing path and route cables along the path appeared first on SOLIDWORKS Education Blog.




creating

SOLIDWORKS Electrical Formula SAE Tutorial: How to flatten the route and creating reports

In our last video, we learned about how to create a routing path and route cables along the path in the SOLIDWORKS Electrical. In our last and final tutorial, we will learn how to flatten the route, create reports and draw from the flattened route.

Author information

Ajay Vaidya

I am the SOLIDWORKS Education Brand Advocacy Digital Marketing Intern in Waltham, MA. I go to Marywood University, Scranton, PA. Currently, I am studying Management Information Systems. During my free time, I love to play the keyboard, guitar, and ukulele. I can speak 8 languages!

The post SOLIDWORKS Electrical Formula SAE Tutorial: How to flatten the route and creating reports appeared first on SOLIDWORKS Education Blog.




creating

Creating a Guitar Stand from Scratch Using SOLIDWORKS, Part 1

Fab Lab intern Matthew Desrochers created a guitar stand for the Lava Drop X xDesign Edition electric guitar. In Part 1 of "Creating a Guitar stand from scratch using SOLIDWORKS" blog learn about how he planned and created a guitar stand using SOLIDWORKS.

Author information

Matthew Desrochers

Matthew DesRochers is a SOLIDWORKS Education Engineering Intern working in the Dassault Sytèmes 3DExperience Lab in Waltham. He is a Mechanical Engineering student at Wentworth Institute of Technology in Boston. In his free time Matt enjoys working on his Volkswagen and screen printing.

The post Creating a Guitar Stand from Scratch Using SOLIDWORKS, Part 1 appeared first on SOLIDWORKS Education Blog.




creating

Creating a Guitar Stand from Scratch Using SOLIDWORKS, Part 2

#3DEXPERIENCE Lab intern Matt Desrochers created a guitar stand for the Lava Drop X xDesign Edition electric guitar using SOLIDWORKS. In Part 2 of this series, learn how he planned and created a guitar stand from scratch.

Author information

Matthew Desrochers

Matthew DesRochers is a SOLIDWORKS Education Engineering Intern working in the Dassault Sytèmes 3DExperience Lab in Waltham. He is a Mechanical Engineering student at Wentworth Institute of Technology in Boston. In his free time Matt enjoys working on his Volkswagen and screen printing.

The post Creating a Guitar Stand from Scratch Using SOLIDWORKS, Part 2 appeared first on SOLIDWORKS Education Blog.