Category Archives: Uncategorized

Social Security fax numbers

Social Security fax numbers

Alabama: 8339502828

Alaska: 8339503491

Arizona: 8339503492

Arkansas: 8339503493

California: 8339503494

Colorado: 8339503495

Connecticut: 8339503496

Delaware: 8339503497

Florida: 8339503498

Georgia: 8339503499

Hawaii: 8339503500

Idaho: 8339503501

Illinois: 8339503502

Indiana: 8339503503

Iowa: 8339503504

Kansas: 8339503505

Kentucky: 8339503506

Louisiana: 8339503507

Maine: 8339503508

Maryland: 8339503509

Massachusetts: 8339503510

Michigan: 8339503511

Minnesota: 8339503512

Mississippi: 8339503513

Missouri: 8339503514

Montana: 8339503515

Nebraska: 8339503516

Nevada: 8339503517

New Hampshire: 8339503518

New Jersey: 8339503519

New Mexico: 8339503520

New York: 8339503521

North Carolina: 8339503522

North Dakota: 8339503523

Ohio: 8339503524

Oklahoma: 8339503525

Oregon: 8339503526

Pennsylvania: 8339503527

Rhode Island: 8339503528

South Carolina: 8339503529

South Dakota: 8339503530

Tennessee: 8339503531

Texas: 8339503532

Utah: 8339503533

Vermont: 8339503534

Virginia: 8339503535

Washington: 8339503536

West Virginia: 8339503537

Wisconsin: 8339503538

Wyoming: 8339503539

Mahalo

SIGNATURE:
Clifford "RAY" Hackett I founded www.adapt.org in 1980 it now has over 50 million members.
$500 of material=World’s fastest hydrofoil sailboat. http://sunrun.biz

Manifest and service work

{
“name”: “Docomo Wallet Explorer”,
“short_name”: “WalletExplorer”,
“start_url”: “index.html”,
“display”: “standalone”,
“background_color”: “#ffffff”,
“theme_color”: “#d0eaff”,
“orientation”: “portrait”,
“icons”: [
{
“src”: “icon-192.png”,
“sizes”: “192×192”,
“type”: “image/png”
},
{
“src”: “icon-512.png”,
“sizes”: “512×512”,
“type”: “image/png”
}
]
}

Service worker

const CACHE_NAME = ‘wallet-explorer-v1’;
const urlsToCache = [
‘index.html’,
‘manifest.json’,
‘icon-192.png’,
‘icon-512.png’
];

// Install: cache core files
self.addEventListener(‘install’, event => {
event.waitUntil(
caches.open(CACHE_NAME)
.then(cache => cache.addAll(urlsToCache))
);
});

// Activate: clean up old caches
self.addEventListener(‘activate’, event => {
event.waitUntil(
caches.keys().then(keys => Promise.all(
keys.map(key => key !== CACHE_NAME && caches.delete(key)) ))
);
});

// Fetch: serve cached assets
self.addEventListener(‘fetch’, event => {
event.respondWith(
caches.match(event.request)
.then(response => response || fetch(event.request))
);
});

Sw.JS

const CACHE_NAME = “phase14-cache-v1”;
const URLS_TO_CACHE = [
“/”,
“/index.html”,
“/manifest.json”,
“/service-worker.js”,
“/icon-192.png”,
“/icon-512.png”
];

self.addEventListener(“install”, event => {
event.waitUntil(
caches.open(CACHE_NAME).then(cache => {
return cache.addAll(URLS_TO_CACHE);
})
);
});

self.addEventListener(“fetch”, event => {
event.respondWith(
caches.match(event.request).then(response => {
return response || fetch(event.request);
})
);
});

self.addEventListener(“activate”, event => {
event.waitUntil(
caches.keys().then(cacheNames => {
return Promise.all(
cacheNames.map(cache => {
if (cache !== CACHE_NAME) {
return caches.delete(cache);
}
})
);
})
);
});

Manifest.json

{
“name”: “Phase 14 Governance PWA”,
“short_name”: “Phase14”,
“start_url”: “./index.html”,
“display”: “standalone”,
“background_color”: “#0f0f0f”,
“theme_color”: “#0f0f0f”,
“icons”: [
{
“src”: “icon-192.png”,
“sizes”: “192×192”,
“type”: “image/png”
},
{
“src”: “icon-512.png”,
“sizes”: “512×512”,
“type”: “image/png”
}
]
}