Connect with us

Northeast

Maine secretary of state’s house 'swatted' day after Trump ballot disqualification decision

Published

on

Maine secretary of state’s house 'swatted' day after Trump ballot disqualification decision

The home of Maine Secretary of State Shenna Bellows was “swatted” Friday evening, police confirmed Saturday.  

Maine State Police responded after an unidentified man lied about having broken into the house. 

Bellows and her family were away at the time of the hoax call. 

The incident comes after Bellows disqualified former President Trump from the state’s 2024 Republican presidential primary ballot late Thursday, citing Section 3 of the 14th Amendment of the U.S. Constitution, which bans from office those who “engaged in insurrection” over his alleged incitement of the Jan. 6 riot. 

MAINE GOP STATE LAWMAKER MOVES TO IMPEACH STATE SECRETARY OVER TRUMP BALLOT REMOVAL

Advertisement

Maine Secretary of State Shenna Bellows decided Thursday that former President Trump is to be barred from Maine’s 2024 presidential ballot.  (Joe Phelan/Portland Press Herald via Getty Images/File)

Bellows made the ruling after some state residents, including a bipartisan group of former lawmakers, challenged Trump’s position on the ballot.

“Swatting” is when someone calls the police under dangerous false pretenses to trigger a law enforcement response, especially a SWAT team to a location. 

Some swatting calls in the past have ended in the victim being killed. An Ohio man was sentenced to prison in 2019 after a Kansas man he swatted was accidentally killed by police. 

On Saturday, Bellows called the swatting call “unacceptable” in a lengthy statement on Facebook. 

Advertisement

HOW RECENT ‘SWATTING’ CALLS TARGETING OFFICIALS MAY PROMPT HEAVIER PENALTIES FOR HOAX POLICE CALLS

Maine Secretary of State Shenna Bellows (Gordon Chibroski/File)

“Thank you for the messages of love and support,” she wrote. “I’ve been moved by every one and especially by those from friends and loved ones who disagree with my decision but have reached out to express love and respect.”

Bellows added that her staff had faced “unacceptable” and “non-stop threatening communications” on Friday after her decision. “It’s designed to scare not only me but also others into silence, to send a message. I am so grateful to have such an amazing team of employees at the Department of Secretary of State. [Her husband] Brandon and I are grateful for incredible, dedicated support from law enforcement in this time.” 

Maine State Police said officers investigated Bellows’ home at her request and nothing suspicious was found. 

Advertisement

The investigation is ongoing. 

On Christmas Day, Republican U.S. Reps. Brandon Wiliams of New York and Marjorie Taylor Greene of Georgia were also the targets of swatting calls. 

Then on Tuesday, Republican state Rep. Kevin D. Miller of Ohio reported that he was swatted.

Read the full article from Here

Advertisement
Continue Reading
Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

New Hampshire

Snow totals across New Hampshire after April flakes

Published

on

Snow totals across New Hampshire after April flakes


WMUR

snow falls in manchester on april 7, 2026

Advertisement

SOURCE: WMUR

The first full week of April brought another round of snow. Here are totals throughout the state: Bedford – 1.5″Bradford – 4.0″Chichester – 2.5″Concord – 0.3″Contoocook – 2.4″Gilsum – 4.0″Hooksett – 1.5″Jaffrey – 3.5″Jefferson – 2.3″Lyndeborough – 2.5″Madison – 1.5″Manchester – 0.5″Northfield – 3.0″Peterborough – 2.0″Salisbury – 3.5″Thornton – 4.0″Washington – 3.0″Warner – 3.1″Wolfeboro – 3.9″

Advertisement

The first full week of April brought another round of snow. Here are totals throughout the state:

Bedford – 1.5″

Bradford – 4.0″

Advertisement

Chichester – 2.5″

Concord – 0.3″

Contoocook – 2.4″

Gilsum – 4.0″

Hooksett – 1.5″

Advertisement

Jaffrey – 3.5″

Jefferson – 2.3″

Lyndeborough – 2.5″

Madison – 1.5″

Manchester – 0.5″

Advertisement

Northfield – 3.0″

Peterborough – 2.0″

Salisbury – 3.5″

Thornton – 4.0″

Washington – 3.0″

Advertisement

Warner – 3.1″

Wolfeboro – 3.9″

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

Advertisement

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

Advertisement

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

Advertisement

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wmur.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wmur.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

Advertisement

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

Advertisement

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

Advertisement

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

Advertisement

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

Advertisement

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wmur.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wmur.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

Advertisement

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

Advertisement

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…

Advertisement



Source link

Continue Reading

New Jersey

New Jersey, Roxbury Township Seek Injunction to Block ICE Detention Facility – Insider NJ

Published

on

New Jersey, Roxbury Township Seek Injunction to Block ICE Detention Facility – Insider NJ


Federal Government Failed to Consider Burdens on Local Infrastructure and Resources

View Motion for Preliminary Injunction

Governor Mikie Sherrill and Attorney General Jennifer Davenport announced today that New Jersey and the Township of Roxbury have requested that the U.S. District Court issue a preliminary injunction to prevent the U.S. Department of Homeland Security (DHS) and U.S. Immigration and Customs Enforcement (ICE) from converting a vacant industrial warehouse in Roxbury into a mass immigration detention facility.

Emergency relief is needed because DHS has indicated it plans to engage in construction activities in areas protected by a state-issued easement as early as late May.

Advertisement

If the project were to proceed, it would impose profound burdens on local infrastructure and public resources from a facility that would house up to 1,500 detainees and be staffed by 1,000 employees, in an area not zoned for large-scale human occupancy. DHS and ICE failed to comply with federal laws requiring them to consult with state and local government officials and fully assess a project’s impacts on the environment and local resources.

The motion for a preliminary injunction explains that a federal court already found a DHS decision to convert another analogous warehouse into an ICE detention facility in Maryland is likely unlawful. ICE spent $129 million to acquire the Roxbury warehouse – and should be prevented from expending even more taxpayer dollars on construction given that the lawsuit is likely to succeed on the merits.

“The Trump Administration has ignored State and local officials in pushing its ill-conceived plan forward because it knows the local impacts are indefensible, and this facility will not make the community safer,” said Governor Sherrill. “We are standing up for New Jerseyans in a bipartisan manner to ensure their drinking water, public safety, and pocketbooks are protected.”

“We need swift relief to ensure we can enforce the law and protect New Jerseyans. DHS cannot transform local neighborhoods into detention outposts without considering the impacts on local resources and consulting with the State and local governments,” said Attorney General Davenport. “The court needs to step in before the damage is done, not after a lengthy case renders it too late.”

The lawsuit filed March 20 seeks declaratory and injunctive relief under the Administrative Procedure Act (APA), the National Environmental Policy Act (NEPA), the Intergovernmental Cooperation Act (ICA), and the Immigration and Nationality Act (INA).

Advertisement

DHS’s decision to purchase, convert, and operate a detention facility in this warehouse is unlawful for several reasons. As alleged in the complaint:

 

·    The site is currently a vacant warehouse on Route 46 that consists largely of a single large room with concrete floors and only four toilets.

·    The property lacks adequate water or sewage access to accommodate up to 1,500 detainees and 1,000 ICE staff.

·    Converting the warehouse into a detention center would multiply the water demands and wastewater output by more than 15 times, posing a serious risk of sewage overflows into nearby land, streets, and waterways – including Lake Musconetcong, which is 1,000 feet away and downhill from the warehouse, and Lake Hopatcong, the largest freshwater lake in New Jersey.

Advertisement

·    An exponential increase in water demand poses a substantial risk of reducing water pressure and reliability for residents, impairing flows needed for fighting fires, depleting groundwater, and diminishing nearby wells.

The warehouse is located near the Route 46 interchange with Interstate 80, an already dangerous section of road that has been the site of dozens of crashes, including three with fatalities, since 2019. It is expected that about 1,000 staff will work at the warehouse following its conversion, adding hundreds of new vehicles to nearby roads during rush hour.



Source link

Continue Reading

Pennsylvania

Multiple Reports Of Fireball Sighting In Eastern PA Skies

Published

on

Multiple Reports Of Fireball Sighting In Eastern PA Skies


Multiple people in the Philadelphia region reported seeing a fireball in the sky Tuesday.

The American Meteor Society listed the event in its meteor sighting database, saying it had received nearly 150 reports from across the region, including in Eastern Pennsylvania, New Jersey, Delaware, and Connecticut about the fireball.

According to the database, reports of the fireball came in from Doylestown, Lansdale, Willow Grove, King of Prussia and more.

Nick Brucato of Whiting shared video of it in The Pine Barrens group on Facebook and with Patch. “Took this video as fast as I could today in Whiting at 2:34 PM. Heard the loud boom minutes later,” he said.

Advertisement

“We were out on our deck and my wife saw it,” a Waretown resident said on the Tri-County Scanner News post. “She said it was bright white ball and then it broke apart into several pieces and then it was gone. Then the sonic boom hit!”

A meteor is the flash of moving light that becomes visible when a meteoroid — a chunk of an asteroid or a comet — hits the Earth’s atmosphere, according to the American Meteor Society.

In mid-March another meteor was the likely cause of a large boom that was felt over parts of Pennsylvania and northeastern Ohio.

The National Weather Service in Pittsburgh said it received reports from numerous people across Western Pennsylvania of the tremendous noise and a fireball in the sky on March 17.

A weather service employee caught the cause of the boom and the weather service posted it. MORE: Meteor Causes Tremendous Boom Over Parts Of PA

Advertisement

With reporting by Karen Wall





Source link

Continue Reading

Trending