Connect with us

New Hampshire

General John Stark Day celebrated in NH

Published

on

General John Stark Day celebrated in NH


General John Stark Day celebrated in New Hampshire

Advertisement

TRAFFIC AND INTERDICT ILLEGAL ACTIVITY MORE EFFICIENTLY. TODAY, THE GRANITE STATE CELEBRATES THE LEGACY OF GENERAL JOHN STARK. THE SECOND MONDAY OF APRIL IS OBSERVED AS GENERAL JOHN STARK DAY. HE WAS A HERO OF THE AMERICAN REVOLUTION AND IS CREDITED WITH WRITING THE WORDS THAT BECAME NEW HAMPSHIRE’S MOTTO. HE WROTE, QUOTE, LIVE FREE OR DIE. DEATH IS NOT THE WORST OF EVILS, WHICH WAS LATER SHORTENED TO LIVE FREE OR DIE. A LOT OF PEOPLE IN OUR COUNTRY, EVERY GENERATION, MEN AND WOMEN WHO HAVE SERVED, ARE WHY WE ARE FREE. IT’S NOT JUST GENERAL STARK. HE SHOWED US THE WAY AND GENERAL WASHINGTON, BUT EVERY GENERATION OF MEN AND WOMEN WHO HAVE SERVED OUR COUNTRY HAVE ENSURED THAT FREEDOM. STARK IS MOST WELL KNOWN FOR SERVICE AT THE BATTLE OF BENNINGT

The Granite State honored the legacy of Gen. John Stark on Monday. Gen. John Stark Day is observed on the second Monday in April. Stark was a hero of the American Revolution and is credited with writing the words that became New Hampshire’s state motto. He wrote “Live Free or Die: Death is not the worst of evils,” later shortened to “Live Free or Die.”>> Download the free WMUR app to get updates on the go

The Granite State honored the legacy of Gen. John Stark on Monday.

Advertisement

Gen. John Stark Day is observed on the second Monday in April.

Stark was a hero of the American Revolution and is credited with writing the words that became New Hampshire’s state motto. He wrote “Live Free or Die: Death is not the worst of evils,” later shortened to “Live Free or Die.”

>> Download the free WMUR app to get updates on the go

Advertisement

“A lot of people in our country, every generation, men and women who have served, are why we are free,” said Gov. Kelly Ayotte. “It’s not just General John Stark. He showed us the way, and General Washington, but every generation of men and women who have served our country have ensured that freedom.”

Stark is known for his service at the Battle of Bennington in Vermont.

He retired in 1810 and died in Manchester in 1822.

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();
}
}

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’, ‘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’);
}

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



Source link

Advertisement

New Hampshire

New Hampshire: So, So Awesome, Though I Did Lose My Nerve for a Time – Part I – The Trek

Published

on

New Hampshire: So, So Awesome, Though I Did Lose My Nerve for a Time – Part I – The Trek


This is a story not about scenic views, wildflowers, animals, people met, towns encountered, but some reality, at least mine, of things we often do not talk about in the hiking community. In retrospect, the first 1,800+ miles headed north on my thru hike of the Appalachian Trail (AT) were certainly taxing and replete with various challenges that I had to work through, learn from, and make adjustments. However, realistically not much on the AT at that point, and per my years of previous hiking experiences, prepared me mentally for what I would encounter in New Hampshire.

Welcome to idyllic New Hampshire.

More idyllic New Hampshire. Not so fast, Mr. Hiker guy, can’t do the same moves as before.

New Hampshire Hiking

Frankly, New Hampshire is a beast and I do mean that in a positive and respectful manner. The hiking in New Hampshire is so technically difficult from other areas within the U.S. and abroad that I have hiked. It seemed like I was constantly bouldering, scrambling, using handholds, fording high, swift creeks/rivers, navigating massive descents with no “guardrails,” or in May encountering hour-by-hour changing weather (e.g., snow, hail, sleet, rain, wind).

Advertisement

A granite face. Down we go.

Crazy Descent

When I hike, I do carry with me a healthy dose of fear, which I find to be positive. For me, fear operates as a navigating tool related to risks, focusing my mind, calming my emotional state, or strengthening my thought processes/decision-making.

On a few AT sections early on in New Hampshire, such as the northbound massive descent (Beaver Brook Cascades) down from Mount Moosilauke in a snow and sleet storm, my revolve and fear-cooping mechanisms seemed to become a negative version of “scared” with every step given the large amounts of this winter’s snow and ice, slippery rock faces, micro spikes and/or trial runners not adhering well to granite, and so on. In my mind, and probably quite true given the weather and trail conditions, danger of a fall, injury, or worse appeared to be at every turn and step. A 3+ mile very steep descent turned into a 3 to 4 hour mental stress test that I am pretty sure I “failed.”

Snow and ice up and down the mountain.

I was warned.

Advertisement

Rising Waters

The next day, I hiked about 17 miles from Kinsman Notch to Franconia Notch, and it had rained a lot in that section of the AT during the previous two days. During my ascent of Mount Kinsman, it continued to rain and rain. I must of forded 6 to 8 rivers, or maybe just the same river that amount of times, but as the day wore on, the water levels in these river(s) kept rising. I am almost 6’3” tall and by the end of the hiking day, I was fording river water mid- to upper-thigh and in super swift conditions. Again, like the previous Mousilauke experience, my positive fear started to become something more negative and mentally paralyzing thinking about the inherent risk involved in fording a deep, swift river late in the day and with no other option to get to the other side of a flooded out AT.

Various extremely sketchy river fords.

A Reset

After these experiences, and frankly losing my confidence, I took a few days off to level set, so I stayed at the wonderful Notch Hostel. To date, the Notch is my favorite hostel on the trail. The staff were so welcoming, warm, and always available. The hostel was super clean and friendly and had very fair expectations related to how hikers et al. should live there as well as treat the hostel environment. After at reset, I went back out and did a 27-mile hike in a few days of the famed Franconia Ridge over Mounts Lafayette and Lincoln, South Twin Mountain, and others. This was a very challenging hike, but one that I needed to do to gain my nerve back and reestablish mentally my healthy level of fear instead of hiking scared per possible ‘what if’ scenarios of serious injury and beyond.

Moving into Part II

So, in the end, it was fine to lose my nerve for a time and be scared in certain hiking situations. The key for me was in recognizing the latter state, trying to mentally review the circumstances, and learn from these experiences. Then, I needed to physically go back out in challenging conditions and hike. I feel really good about New Hampshire and what is to come on the AT. My part II, if you will, will be informed from my part I. I can’t wait for more of New Hampshire.

A new day rising.

Advertisement
Affiliate Disclosure

This website contains affiliate links, which means The Trek may receive a percentage of any product or service you purchase using the links in the articles or advertisements. The buyer pays the same price as they would otherwise, and your purchase helps to support The Trek’s ongoing goal to serve you quality backpacking advice and information. Thanks for your support!

To learn more, please visit the About This Site page.





Source link

Advertisement
Continue Reading

New Hampshire

New Hampshire mountainside transformed into largest outdoor sculpture park in New England

Published

on

New Hampshire mountainside transformed into largest outdoor sculpture park in New England



Sponsored by New England Chevy Dealers

With over 100 sculptures woven into the mountainside, the Andres Institute of Art is New England’s largest outdoor sculpture park.

Along wooded trails and scenic overlooks, visitors encounter a rotating collection of works that blend art and nature, turning a simple hike into an immersive gallery experience  

Advertisement



Source link

Advertisement
Continue Reading

New Hampshire

Firefighters Extinguish House Fire In Concord’s South End: Video

Published

on

Firefighters Extinguish House Fire In Concord’s South End: Video


CONCORD, NH — Concord fire and rescue teams were sent to a house fire in the South End on Saturday afternoon.

Around 3:15 p.m., Concord Fire Alarm began receiving reports about smoke coming from a home on Brookside Drive. Engine 4 arrived first and confirmed smoke was coming from the building. About 10 minutes later, a firefighter stated the fire appeared to be coming from the basement.

News 603 posted videos on Facebook here:

Advertisement

And here:

A few minutes later, firefighters reported putting water on the fire.





Source link

Advertisement
Continue Reading
Advertisement

Trending