http://adultiptv.net/videos.m3u8
/* ====== create node.js server with core 'http' module ====== */
// dependencies
const http = require("http");
// PORT
const PORT = 3000;
// server create
const server = http.createServer((req, res) => {
if (req.url === "/") {
res.write("This is home page.");
res.end();
} else if (req.url === "/about" && req.method === "GET") {
res.write("This is about page.");
res.end();
} else {
res.write("Not Found!");
res.end();
}
});
// server listen port
server.listen(PORT);
console.log(`Server is running on PORT: ${PORT}`);
/* ========== *** ========== */
/* ====== create node.js server with express.js framework ====== */
// dependencies
const express = require("express");
const app = express();
app.get("/", (req, res) => {
res.send("This is home page.");
});
app.post("/", (req, res) => {
res.send("This is home page with post request.");
});
// PORT
const PORT = 3000;
app.listen(PORT, () => {
console.log(`Server is running on PORT: ${PORT}`);
});
// ======== Instructions ========
// save this as index.js
// you have to download and install node.js on your machine
// open terminal or command prompt
// type node index.js
// find your server at http://localhost:3000
position: absolute; top: 50%; right: 80px; transform: translateY(-50%);
position: absolute; top: 50%; right: 80px; transform: translateY(-50%);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-">
<title>Sign Up</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
8
<body>
<div class="container">
<div class="row">
<div class="col-md-">
12
<h2>Register</h2>
<p>Please fill this form to create an account.</p>
<form action="" method="post">
<div class="form-group">
<label>Full Name</label>
<input type="text" name="name" class="form-control" required>
</div>
<div class="form-group">
<label>Email Address</label>
<input type="email" name="email" class="form-control" required />
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" class="form-control" required>
</div>
<div class="form-group">
<label>Confirm Password</label>
<input type="password" name="confirm_password" class="form-control" required>
</div>
<div class="form-group">
<input type="submit" name="submit" class="btn btn-primary" value="Submit">
</div>
<p>Already have an account? <a href="login.php">Login here</a>.</p>
</form>
</div>
</div>
</div>
</body>
</html>
background-position: center;
width: 7px; height: 12px; background-image: url(../images/btn-arrow.svg); background-size: contain;
.woocommerce .products .product {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
overflow: ;
}
.woocommerce .products .product a img {
width: 100%; /* Ensures all images fill the container */
height: 230px; /* Fixed height for consistency */
object-fit: contain; /* Ensures the whole image fits without cropping */
transition: transform 0.3s ease-in-out;
}
/* Zoom-out effect like Rehub theme */
.woocommerce .products .product:hover a img {
transform: scale(0.9); /* Adjust zoom-out effect */
opacity: 0.9; /* Optional: Slight transparency effect */
}
function memoize(fn) {
const cache = new Map();
return (...args) => {
const key = JSON.stringify(args);
if (cache.has(key)) return cache.get(key);
const result = fn(...args);
cache.set(key, result);
return result;
};
}
// Example: Expensive Fibonacci Calculation
const fibonacci = memoize((n) => (n <= 1 ? n : fibonacci(n - 1) + fibonacci(n - 2)));
#include <iostream>
using namespace std;
int main() {
// Write C++ code here
int n;
cout<<"enter a number :"<<endl;
cin>>n;
int arr[n];
for(int i=1;i<=n;i++){
arr[i-1]=i*i;
}
for(int i=0;i<n;i++){
cout<<arr[i]<<" ";
}
return 0;
}
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
int main() {
// Write C++ code here
int arr[] ={1,2,3,4,5};
int n= sizeof(arr)/4;
int mn = arr[0];
for(int i=0;i<n;i++){
mn = min(arr[0],mn);
}
cout<<mn;
return 0;
}
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
int main() {
// Write C++ code here
int arr[] ={1,2,3,4,5};
int n= sizeof(arr)/4;
int mx = arr[0];
for(int i=0;i<n;i++){
// if(arr[i]>mx) mx=arr[i];
mx= max(arr[i],mx);
}
cout<<mx;
return 0;
}
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
int main() {
// Write C++ code here
int arr[] ={1,2,3,4,5};
int n= sizeof(arr)/4;
int sum=0;
for(int i=0;i<n;i++){
sum += arr[i];
}
cout<<sum;
return 0;
}
// Online C++ compiler to run C++ program online
#include <iostream>
using namespace std;
void change(int arr[]){
arr[4]=0;
}
int main() {
// Write C++ code here
int arr[5] ={1,2,3,4,5};
for(int i=0;i<=4;i++){
cout<<arr[i]<<" ";
}
cout<<endl;
change(arr);
for(int i=0;i<=4;i++){
cout<<arr[i]<<" ";
}
return 0;
}
def process_masks(input_directory):
"""
Processes all masks in a directory to calculate the percentage of masks
with a bounding box to total image area ratio >= 20%, considering only masks
that have at least 5 unique structures (values > 0).
:param input_directory: Path to the directory containing PNG mask files.
:return: Percentage of masks passing the filter and total processed count.
"""
total_valid_masks = 0 # Total masks with at least 5 structures
passed_masks = 0 # Masks passing the area ratio filter
for filename in os.listdir(input_directory):
if filename.endswith(".png"):
filepath = os.path.join(input_directory, filename)
# Open the image and convert it to numpy array
mask = Image.open(filepath)
mask_array = np.array(mask)
# Get unique structure IDs excluding the background (0)
unique_structures = set(mask_array.flatten()) - {0}
# Check if the mask has at least 5 structures
if len(unique_structures) >= 5:
total_valid_masks += 1
# Find all non-background pixels (non-zero)
structure_pixels = np.argwhere(mask_array > 0)
if structure_pixels.size > 0:
# Calculate the bounding box for all structures
y_min, x_min = structure_pixels.min(axis=0)
y_max, x_max = structure_pixels.max(axis=0)
# Compute the area of the bounding box
bounding_box_area = (x_max - x_min + 1) * (y_max - y_min + 1)
# Compute the total area of the image
total_area = mask_array.shape[0] * mask_array.shape[1]
# Calculate the ratio in percentage
ratio = (bounding_box_area / total_area) * 100
# Check if the mask passes the filter
if ratio >= 17:
passed_masks += 1
# Calculate the percentage of masks passing the filter
passed_percentage = (passed_masks / total_valid_masks) * 100 if total_valid_masks > 0 else 0
return passed_percentage, total_valid_masks
# Example usage
input_directory = "./app/mask_prediction" # Replace with the path to your masks directory
passed_percentage, total_valid_masks = process_masks(input_directory)
print(f"Total masks with at least 5 structures: {total_valid_masks}")
print(f"Percentage of masks passing the filter: {passed_percentage:.2f}%")
.btn:hover {
opacity: 0.5;
}
.btn {
display: block;
padding-top: 20px;
text-align: center;
margin-top: 24px;
border: 1px solid #000;
background: rgba(15, 252, 233, 0.35);
color: #000;
font-size: 1.8rem;
font-weight: 700;
transition: 0.4s;
position: relative;
}
<div class="col-24 col-md-14 col-lg-12 padding-offset">
<div class="row info-item">
<div class="col-24 text-red">ВНИМАНИЕ! С 15.03.25 проход на мероприятия осуществляется по именным билетам с предъявлением оригинала документа, удостоверяющего личность.<br>
С более подробной информацией можно ознакомиться по <a href=" https://www.mos.ru/kultura/documents/normativnye-pravovye-akty-departamenta/view/313392220/" target="_blank">ссылке</a>.<br></div>
</div>
<div class="row info-item">
<div class="col-24 col-xs-8 col-sm-7 col-lg-8 col-xl-7 title">Дата мероприятия</div>
<div class="col-24 offset-xs-1 col-xs-15 col-sm-16 col-lg-15 col-xl-16"><div class="row">
<div class="col-13"><strong>28 марта, 19:00</strong></div>
<div class="offset-1 col-10">
<!--<div class="btn-sm btn-red text-center"><a href="https://iframeab-pre1313.intickets.ru/seance/50078307/#abiframe">Купить билет</a></div>-->
<!---->
</div>
</div></div>
</div>
<div class="row info-item">
<div class="col-24 col-xs-8 col-sm-7 col-lg-8 col-xl-7 title">Продолжительность</div>
<div class="col-24 offset-xs-1 col-xs-15 col-sm-16 col-lg-15 col-xl-16">1 час 20 минут без антракта</div>
</div>
<div class="row info-item">
<div class="col-24 col-xs-8 col-sm-7 col-lg-8 col-xl-7 title">Тип мероприятия</div>
<div test class="col-24 offset-xs-1 col-xs-15 col-sm-16 col-lg-15 col-xl-16">Спектакль</div>
</div>
<div class="row info-item">
<div class="col-24 col-xs-8 col-sm-7 col-lg-8 col-xl-7 title">Рекомендуемый возраст</div>
<div class="col-24 offset-xs-1 col-xs-15 col-sm-16 col-lg-15 col-xl-16">
<span itemprop="typicalAgeRange">12+</span>
</div>
</div>
[
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Capgemini-Invent-EI_IE589990.11,27.htm",
"company_name": "Capgemini Invent",
"company_id": 589990,
"size": "5001 to 10000 employees",
"type": "Company - Public",
"revenue": "$500 million to $1 billion (USD) per year",
"industry": "Consulting",
"headquarters": "Courbevoie (France)",
"part_of": "Capgemini",
"founded": 2009,
"competitors": "",
"Reviews": 1500,
"Jobs": 1,
"Salaries": 1700,
"Interviews": 486,
"Benefits": 334,
"Photos": 46,
"url": "https://www.glassdoor.com/Overview/Working-at-Capgemini-Invent-EI_IE589990.11,27.htm",
"record_create_dt": "2019-10-23T08:06:01+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Capgemini-Consulting-Reviews-E589990.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.capgemini.com/invent"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-ITeeth-EI_IE1921458.11,17.htm",
"company_name": "ITeeth",
"company_id": 1921458,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Denver, CO",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-ITeeth-EI_IE1921458.11,17.htm",
"record_create_dt": "2019-10-23T08:06:04+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/ITeeth-Reviews-E1921458.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.iteethpc.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Q-Lab-EI_IE895902.11,16.htm",
"company_name": "Q-Lab",
"company_id": 895902,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable",
"industry": "Electrical & Electronic Manufacturing",
"headquarters": "Westlake, OH",
"part_of": "",
"founded": 1956,
"competitors": "Unknown",
"Reviews": 14,
"Jobs": 25,
"Salaries": 6,
"Interviews": 1,
"Benefits": 1,
"Photos": 29,
"url": "https://www.glassdoor.com/Overview/Working-at-Q-Lab-EI_IE895902.11,16.htm",
"record_create_dt": "2019-10-23T08:06:20+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Q-Lab-Reviews-E895902.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.q-lab.com"
},
{
"country_id": 96,
"country": "Germany",
"company_url": "https://www.glassdoor.com/Overview/Working-at-commehr-EI_IE1336464.11,18.htm",
"company_name": "commehr",
"company_id": 1336464,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable",
"industry": "IT Services",
"headquarters": "Berlin (Germany)",
"part_of": "",
"founded": 2009,
"competitors": "Unknown",
"Reviews": 2,
"Jobs": 18,
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": 5,
"url": "https://www.glassdoor.com/Overview/Working-at-commehr-EI_IE1336464.11,18.htm",
"record_create_dt": "2019-10-23T08:06:31+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/commehr-Reviews-E1336464.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.commehr.de"
},
{
"country_id": 207,
"country": "Saudi Arabia",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Al-Sharq-Plastic-Industries-EI_IE1909257.11,38.htm",
"company_name": "Al Sharq Plastic Industries",
"company_id": 1909257,
"size": "201 to 500 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Riyadh (Saudi Arabia)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": 1,
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Al-Sharq-Plastic-Industries-EI_IE1909257.11,38.htm",
"record_create_dt": "2019-10-23T08:07:45+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Al-Sharq-Plastic-Industries-Reviews-E1909257.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.alsharqplastics.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Expedited-Logistic-Solutions-EI_IE1655876.11,39.htm",
"company_name": "Expedited Logistic Solutions",
"company_id": 1655876,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Trucking",
"headquarters": "Kenly, NC",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": 276,
"Salaries": 1,
"Interviews": "--",
"Benefits": 2,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Expedited-Logistic-Solutions-EI_IE1655876.11,39.htm",
"record_create_dt": "2019-10-23T08:07:00+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Expedited-Logistic-Solutions-Reviews-E1655876.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.elsfreight.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Kohler-EI_IE2866.11,17.htm",
"company_name": "Kohler",
"company_id": 2866,
"size": "10000+ employees",
"type": "Company - Private",
"revenue": "$2 to $5 billion (USD) per year",
"industry": "Consumer Products Manufacturing",
"headquarters": "Kohler, WI",
"part_of": "",
"founded": 1873,
"competitors": "TOTO, Moen, American Standard",
"Reviews": 690,
"Jobs": 384,
"Salaries": 1300,
"Interviews": 223,
"Benefits": 137,
"Photos": 19,
"url": "https://www.glassdoor.com/Overview/Working-at-Kohler-EI_IE2866.11,17.htm",
"record_create_dt": "2019-10-23T08:07:21+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Kohler-Reviews-E2866.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.kohlercompany.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-ASWB-Engineering-EI_IE1141175.11,27.htm",
"company_name": "ASWB Engineering",
"company_id": 1141175,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Less than $1 million (USD) per year",
"industry": "Unknown",
"headquarters": "Tustin, CA",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": 2,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-ASWB-Engineering-EI_IE1141175.11,27.htm",
"record_create_dt": "2019-10-23T08:07:37+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/ASWB-Engineering-Reviews-E1141175.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.aswb-engineering.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-STAR-Physical-Therapy-TN-EI_IE2102266.11,35.htm",
"company_name": "STAR Physical Therapy (TN)",
"company_id": 2102266,
"size": "501 to 1000 employees",
"type": "Company - Public",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Franklin, TN",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 2,
"Jobs": 1,
"Salaries": 6,
"Interviews": "--",
"Benefits": 17,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-STAR-Physical-Therapy-TN-EI_IE2102266.11,35.htm",
"record_create_dt": "2019-10-23T08:07:49+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/STAR-Physical-Therapy-TN-Reviews-E2102266.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.starpt.com"
},
{
"country_id": 36,
"country": "Brazil",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Cons%C3%B3rcio-Nacional-Massey-Ferguson-EI_IE2675809.11,45.htm",
"company_name": "Consórcio Nacional Massey Ferguson",
"company_id": 2675809,
"size": "Unknown",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 6,
"Jobs": "--",
"Salaries": 8,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Cons%C3%B3rcio-Nacional-Massey-Ferguson-EI_IE2675809.11,45.htm",
"record_create_dt": "2019-10-23T08:08:11+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Consrcio-Nacional-Massey-Ferguson-Reviews-E2675809.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.cnmf.com.br"
},
{
"country_id": 36,
"country": "Brazil",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Confiance-Medical-Produtos-M%C3%A9dicos-EI_IE2491683.11,45.htm",
"company_name": "Confiance Medical Produtos Médicos",
"company_id": 2491683,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Rio de Janeiro (Brazil)",
"part_of": "",
"founded": 2002,
"competitors": "Unknown",
"Reviews": 10,
"Jobs": 4,
"Salaries": 10,
"Interviews": 1,
"Benefits": 2,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Confiance-Medical-Produtos-M%C3%A9dicos-EI_IE2491683.11,45.htm",
"record_create_dt": "2019-10-23T08:08:36+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Confiance-Medical-Produtos-Mdicos-Reviews-E2491683.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.confiancemedical.com.br"
},
{
"country_id": 217,
"country": "Singapore",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Spinesoft-Technologies-EI_IE587038.11,33.htm",
"company_name": "Spinesoft Technologies",
"company_id": 587038,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "IT Services",
"headquarters": "Singapore (Singapore)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 2,
"Jobs": "--",
"Salaries": 1,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Spinesoft-Technologies-EI_IE587038.11,33.htm",
"record_create_dt": "2019-10-23T08:08:51+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Spinesoft-Technologies-Reviews-E587038.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.spine-soft.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Unique-Key-Resources-EI_IE278105.11,31.htm",
"company_name": "Unique Key Resources",
"company_id": 278105,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Less than $1 million (USD) per year",
"industry": "Consulting",
"headquarters": "Collierville, TN",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 8,
"Jobs": 17,
"Salaries": 192,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Unique-Key-Resources-EI_IE278105.11,31.htm",
"record_create_dt": "2019-10-23T08:09:01+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Unique-Key-Resources-Reviews-E278105.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.uniquekeyresources.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Oscaro-EI_IE1024573.11,17.htm",
"company_name": "Oscaro",
"company_id": 1024573,
"size": "201 to 500 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Automotive Parts & Accessories Stores",
"headquarters": "Paris (France)",
"part_of": "",
"founded": 2001,
"competitors": "Unknown",
"Reviews": 23,
"Jobs": 4,
"Salaries": 26,
"Interviews": "--",
"Benefits": 4,
"Photos": 3,
"url": "https://www.glassdoor.com/Overview/Working-at-Oscaro-EI_IE1024573.11,17.htm",
"record_create_dt": "2019-10-23T08:09:15+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Oscaro-Reviews-E1024573.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.oscaro.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-SFA-Design-Group-EI_IE938155.11,27.htm",
"company_name": "SFA Design Group",
"company_id": 938155,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Architectural & Engineering Services",
"headquarters": "Livermore, CA",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 6,
"Jobs": 1,
"Salaries": 3,
"Interviews": 1,
"Benefits": 2,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-SFA-Design-Group-EI_IE938155.11,27.htm",
"record_create_dt": "2019-10-23T08:09:29+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/SFA-Design-Group-Reviews-E938155.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.sfadg.com"
},
{
"country_id": 36,
"country": "Brazil",
"company_url": "https://www.glassdoor.com/Overview/Working-at-FGM-Produtos-Odontol%C3%B3gicos-EI_IE2485751.11,37.htm",
"company_name": "FGM Produtos Odontológicos",
"company_id": 2485751,
"size": "201 to 500 employees",
"type": "Company - Private",
"revenue": "$5 to $10 million (USD) per year",
"industry": "Unknown",
"headquarters": "Joinville (Brazil)",
"part_of": "",
"founded": 1993,
"competitors": "Unknown",
"Reviews": 14,
"Jobs": 1,
"Salaries": 48,
"Interviews": 4,
"Benefits": 3,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-FGM-Produtos-Odontol%C3%B3gicos-EI_IE2485751.11,37.htm",
"record_create_dt": "2019-10-23T08:10:42+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/FGM-Produtos-Odontolgicos-Reviews-E2485751.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.fgm.ind.br"
},
{
"country_id": 115,
"country": "India",
"company_url": "https://www.glassdoor.com/Overview/Working-at-UV-Tech-Solutions-EI_IE1383770.11,28.htm",
"company_name": "UV Tech Solutions",
"company_id": 1383770,
"size": "1 to 50 employees",
"type": "Company - Public",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Raipur, Chhattisgarh (India)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": 1,
"Interviews": "--",
"Benefits": 1,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-UV-Tech-Solutions-EI_IE1383770.11,28.htm",
"record_create_dt": "2019-10-23T08:10:04+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/UV-Tech-Solutions-Reviews-E1383770.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.uvtechsolution.com"
},
{
"country_id": 25,
"country": "Belgium",
"company_url": "https://www.glassdoor.com/Overview/Working-at-EurActiv-EI_IE372596.11,19.htm",
"company_name": "EurActiv",
"company_id": 372596,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "$1 to $5 million (USD) per year",
"industry": "News Outlet",
"headquarters": "London, England (UK)",
"part_of": "",
"founded": 1999,
"competitors": "Unknown",
"Reviews": 9,
"Jobs": 3,
"Salaries": 6,
"Interviews": "--",
"Benefits": 1,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-EurActiv-EI_IE372596.11,19.htm",
"record_create_dt": "2019-10-23T08:10:18+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/EurActiv-Reviews-E372596.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.euractiv.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Luster-NY-EI_IE1752884.11,20.htm",
"company_name": "Luster (NY)",
"company_id": 1752884,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Brooklyn, NY",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 12,
"Jobs": "--",
"Salaries": 3,
"Interviews": 1,
"Benefits": 16,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Luster-NY-EI_IE1752884.11,20.htm",
"record_create_dt": "2019-10-23T08:10:24+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Luster-NY-Reviews-E1752884.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.luster.cc"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Gulfstream-Strategic-Placements-EI_IE1069696.11,42.htm",
"company_name": "Gulfstream Strategic Placements",
"company_id": 1069696,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Less than $1 million (USD) per year",
"industry": "Staffing & Outsourcing",
"headquarters": "Los Angeles, CA",
"part_of": "",
"founded": 2014,
"competitors": "Unknown",
"Reviews": 2,
"Jobs": 884,
"Salaries": 2,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Gulfstream-Strategic-Placements-EI_IE1069696.11,42.htm",
"record_create_dt": "2019-10-23T08:10:40+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Gulfstream-Strategic-Placements-Reviews-E1069696.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.gulfstreamsp.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Meineke-EI_IE15868.11,18.htm",
"company_name": "Meineke",
"company_id": 15868,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "$10 to $25 million (USD) per year",
"industry": "Auto Repair & Maintenance",
"headquarters": "Charlotte, NC",
"part_of": "",
"founded": 1972,
"competitors": "Driven Brands",
"Reviews": 86,
"Jobs": 119,
"Salaries": 74,
"Interviews": 9,
"Benefits": 21,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Meineke-EI_IE15868.11,18.htm",
"record_create_dt": "2019-10-23T08:11:09+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Meineke-Reviews-E15868.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.meineke.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.ca/Overview/Working-at-1031-and-TIC-Investments-EI_IE279178.11,35.htm?countryRedirect=true",
"company_name": "1031 & TIC Investments",
"company_id": 279178,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Less than $1 million (CAD) per year",
"industry": "Investment Banking & Asset Management",
"headquarters": "Edina, MN (US)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 2,
"Jobs": "--",
"Salaries": 2,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.ca/Overview/Working-at-1031-and-TIC-Investments-EI_IE279178.11,35.htm?countryRedirect=true",
"record_create_dt": "2019-10-23T08:11:22+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/1031-and-TIC-Investments-Reviews-E279178.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.1031ticinvest.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Playground-Media-Group-EI_IE271356.11,33.htm",
"company_name": "Playground Media Group",
"company_id": 271356,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "$1 to $5 million (USD) per year",
"industry": "Health, Beauty, & Fitness",
"headquarters": "Pacific Palisades, CA",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": 1,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Playground-Media-Group-EI_IE271356.11,33.htm",
"record_create_dt": "2019-10-23T08:11:36+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Playground-Media-Group-Reviews-E271356.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.playgroundla.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Hemlock-Semiconductor-EI_IE354490.11,32.htm",
"company_name": "Hemlock Semiconductor",
"company_id": 354490,
"size": "501 to 1000 employees",
"type": "Company - Private",
"revenue": "$100 to $500 million (USD) per year",
"industry": "Industrial Manufacturing",
"headquarters": "Hemlock, MI",
"part_of": "",
"founded": 1961,
"competitors": "",
"Reviews": 44,
"Jobs": 7,
"Salaries": 45,
"Interviews": 7,
"Benefits": 12,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Hemlock-Semiconductor-EI_IE354490.11,32.htm",
"record_create_dt": "2019-10-23T08:11:53+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Hemlock-Semiconductor-Reviews-E354490.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.hscpoly.com"
},
{
"country_id": 178,
"country": "Netherlands",
"company_url": "https://www.glassdoor.com/Overview/Working-at-ERPScan-EI_IE2599068.11,18.htm",
"company_name": "ERPScan",
"company_id": 2599068,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Palo Alto, CA",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-ERPScan-EI_IE2599068.11,18.htm",
"record_create_dt": "2019-10-23T08:12:06+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/ERPScan-Reviews-E2599068.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.erpscan.io"
},
{
"country_id": 36,
"country": "Brazil",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Lar-e-Sa%C3%BAde-EI_IE2788460.11,22.htm",
"company_name": "Lar e Saúde",
"company_id": 2788460,
"size": "Unknown",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 3,
"Jobs": "--",
"Salaries": 12,
"Interviews": 1,
"Benefits": 2,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Lar-e-Sa%C3%BAde-EI_IE2788460.11,22.htm",
"record_create_dt": "2019-10-23T08:06:02+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Lar-e-Sade-Reviews-E2788460.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": ""
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Executive-Moving-Systems-EI_IE1349078.11,35.htm",
"company_name": "Executive Moving Systems",
"company_id": 1349078,
"size": "51 to 200 employees",
"type": "Company - Public",
"revenue": "$5 to $10 million (USD) per year",
"industry": "Unknown",
"headquarters": "Woodbridge, VA",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 3,
"Jobs": "--",
"Salaries": 4,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Executive-Moving-Systems-EI_IE1349078.11,35.htm",
"record_create_dt": "2019-10-23T08:06:06+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Executive-Moving-Systems-Reviews-E1349078.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.thebestmove.com"
},
{
"country_id": 115,
"country": "India",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Sravan-Technologies-EI_IE928172.11,30.htm",
"company_name": "Sravan Technologies",
"company_id": 928172,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "IT Services",
"headquarters": "Noida (India)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 6,
"Jobs": "--",
"Salaries": 5,
"Interviews": 1,
"Benefits": 1,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Sravan-Technologies-EI_IE928172.11,30.htm",
"record_create_dt": "2019-10-23T08:06:22+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Sravan-Technologies-Reviews-E928172.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.sravantechnologies.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Massage-Addict-EI_IE987886.11,25.htm",
"company_name": "Massage Addict",
"company_id": 987886,
"size": "501 to 1000 employees",
"type": "Franchise",
"revenue": "Unknown / Non-Applicable",
"industry": "Health Care Services & Hospitals",
"headquarters": "Toronto, ON (Canada)",
"part_of": "",
"founded": 2008,
"competitors": "Unknown",
"Reviews": 31,
"Jobs": 26,
"Salaries": 17,
"Interviews": 5,
"Benefits": 5,
"Photos": 4,
"url": "https://www.glassdoor.com/Overview/Working-at-Massage-Addict-EI_IE987886.11,25.htm",
"record_create_dt": "2019-10-23T08:06:33+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Massage-Addict-Reviews-E987886.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.massageaddict.ca"
},
{
"country_id": 115,
"country": "India",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Antique-Stock-Broking-EI_IE1914849.11,32.htm",
"company_name": "Antique Stock Broking",
"company_id": 1914849,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Mumbai (India)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Antique-Stock-Broking-EI_IE1914849.11,32.htm",
"record_create_dt": "2019-10-23T08:07:47+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Antique-Stock-Broking-Reviews-E1914849.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.antiquelimited.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-GR-Trucking-EI_IE756300.11,22.htm",
"company_name": "GR Trucking",
"company_id": 756300,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Truck Rental & Leasing",
"headquarters": "El Paso, TX",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 3,
"Jobs": "--",
"Salaries": 1,
"Interviews": 1,
"Benefits": 6,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-GR-Trucking-EI_IE756300.11,22.htm",
"record_create_dt": "2019-10-23T08:07:01+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/GR-Trucking-Reviews-E756300.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": ""
},
{
"country_id": 249,
"country": "Venezuela",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Banco-de-Venezuela-EI_IE2014934.11,29.htm",
"company_name": "Banco de Venezuela",
"company_id": 2014934,
"size": "5001 to 10000 employees",
"type": "Government",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Caracas, Capital District (Venezuela)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Banco-de-Venezuela-EI_IE2014934.11,29.htm",
"record_create_dt": "2019-10-23T08:07:23+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Banco-de-Venezuela-Reviews-E2014934.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.bancodevenezuela.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Brooks-County-Schools-EI_IE233491.11,32.htm",
"company_name": "Brooks County Schools",
"company_id": 233491,
"size": "201 to 500 employees",
"type": "School / School District",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Preschool & Child Care",
"headquarters": "",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 2,
"Jobs": "--",
"Salaries": 4,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Brooks-County-Schools-EI_IE233491.11,32.htm",
"record_create_dt": "2019-10-23T08:07:38+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Brooks-County-Schools-Reviews-E233491.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "brookscountyschools.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Face-to-Face-Health-and-Counseling-EI_IE1418141.11,45.htm",
"company_name": "Face to Face Health & Counseling",
"company_id": 1418141,
"size": "51 to 200 employees",
"type": "Nonprofit Organization",
"revenue": "$1 to $5 million (USD) per year",
"industry": "Health Care Services & Hospitals",
"headquarters": "Saint Paul, MN",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": 17,
"Salaries": 1,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Face-to-Face-Health-and-Counseling-EI_IE1418141.11,45.htm",
"record_create_dt": "2019-10-23T08:07:51+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Face-to-Face-Health-and-Counseling-Reviews-E1418141.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.face2face.org"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Superior-Property-Management-EI_IE834364.11,39.htm",
"company_name": "Superior Property Management",
"company_id": 834364,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Less than $1 million (USD) per year",
"industry": "Building & Personnel Services",
"headquarters": "New Orleans, LA",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 4,
"Jobs": 4,
"Salaries": 1,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Superior-Property-Management-EI_IE834364.11,39.htm",
"record_create_dt": "2019-10-23T08:08:13+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Superior-Property-Management-Reviews-E834364.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.superprop.com"
},
{
"country_id": 217,
"country": "Singapore",
"company_url": "https://www.glassdoor.com/Overview/Working-at-AETOS-Holdings-EI_IE1087971.11,25.htm",
"company_name": "AETOS Holdings",
"company_id": 1087971,
"size": "1001 to 5000 employees",
"type": "Subsidiary or Business Segment",
"revenue": "$100 to $500 million (USD) per year",
"industry": "Unknown",
"headquarters": "Singapore (Singapore)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 6,
"Jobs": 2,
"Salaries": 7,
"Interviews": 1,
"Benefits": 11,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-AETOS-Holdings-EI_IE1087971.11,25.htm",
"record_create_dt": "2019-10-23T08:08:38+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/AETOS-Holdings-Reviews-E1087971.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.aetos.com.sg"
},
{
"country_id": 203,
"country": "Romania",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Euroweb-EI_IE798541.11,18.htm",
"company_name": "Euroweb",
"company_id": 798541,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Telecommunications Services",
"headquarters": "Bucharest (Romania)",
"part_of": "",
"founded": 1998,
"competitors": "Unknown",
"Reviews": 6,
"Jobs": "--",
"Salaries": 1,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Euroweb-EI_IE798541.11,18.htm",
"record_create_dt": "2019-10-23T08:08:53+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Euroweb-Reviews-E798541.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.euroweb.ro"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Generous-Deals-EI_IE410735.11,25.htm",
"company_name": "Generous Deals",
"company_id": 410735,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Motion Picture Production & Distribution",
"headquarters": "Glen Ellyn, IL",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 2,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Generous-Deals-EI_IE410735.11,25.htm",
"record_create_dt": "2019-10-23T08:09:03+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Generous-Deals-Reviews-E410735.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.generousdeals.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-FLYR-EI_IE1500905.11,15.htm",
"company_name": "FLYR",
"company_id": 1500905,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable",
"industry": "Internet",
"headquarters": "San Francisco, CA",
"part_of": "",
"founded": 2013,
"competitors": "Unknown",
"Reviews": 5,
"Jobs": 16,
"Salaries": 2,
"Interviews": 5,
"Benefits": "--",
"Photos": 7,
"url": "https://www.glassdoor.com/Overview/Working-at-FLYR-EI_IE1500905.11,15.htm",
"record_create_dt": "2019-10-23T08:09:21+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/FLYR-Reviews-E1500905.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.flyrlabs.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Center-for-Story-based-Strategy-EI_IE2443091.11,42.htm",
"company_name": "Center for Story-based Strategy",
"company_id": 2443091,
"size": "1 to 50 employees",
"type": "Nonprofit Organization",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Oakland, CA",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Center-for-Story-based-Strategy-EI_IE2443091.11,42.htm",
"record_create_dt": "2019-10-23T08:09:31+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Center-for-Story-based-Strategy-Reviews-E2443091.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.storybasedstrategy.org"
},
{
"country_id": 16,
"country": "Australia",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Banjo-s-Corporation-EI_IE2608328.11,30.htm",
"company_name": "Banjo’s Corporation",
"company_id": 2608328,
"size": "Unknown",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "Hobart (Australia)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": 23,
"Salaries": 1,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Banjo-s-Corporation-EI_IE2608328.11,30.htm",
"record_create_dt": "2019-10-23T08:10:43+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Banjo-s-Corporation-Reviews-E2608328.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "banjos.com.au"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.ca/Overview/Working-at-Specialty-Fabrications-EI_IE1725370.11,33.htm?countryRedirect=true",
"company_name": "Specialty Fabrications",
"company_id": 1725370,
"size": "1 to 50 employees",
"type": "Company - Private",
"revenue": "$10 to $25 million (CAD) per year",
"industry": "Unknown",
"headquarters": "Simi Valley, CA (US)",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.ca/Overview/Working-at-Specialty-Fabrications-EI_IE1725370.11,33.htm?countryRedirect=true",
"record_create_dt": "2019-10-23T08:10:06+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Specialty-Fabrications-Reviews-E1725370.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.specfabinc.com"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-St-Charles-Community-School-District-EI_IE211047.11,47.htm",
"company_name": "St. Charles Community School District",
"company_id": 211047,
"size": "1001 to 5000 employees",
"type": "School / School District",
"revenue": "$100 to $500 million (USD) per year",
"industry": "Preschool & Child Care",
"headquarters": "Saint Charles, IL",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": 1,
"Salaries": 4,
"Interviews": 1,
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-St-Charles-Community-School-District-EI_IE211047.11,47.htm",
"record_create_dt": "2019-10-23T08:10:19+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/St-Charles-Community-School-District-Reviews-E211047.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.st-charles.k12.il.us"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Matrix-Finance-and-Accounting-EI_IE753891.11,40.htm",
"company_name": "Matrix Finance and Accounting",
"company_id": 753891,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "$5 to $10 million (USD) per year",
"industry": "Accounting",
"headquarters": "Seattle, WA",
"part_of": "",
"founded": 2009,
"competitors": "Unknown",
"Reviews": 22,
"Jobs": 41,
"Salaries": 7,
"Interviews": 1,
"Benefits": 3,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Matrix-Finance-and-Accounting-EI_IE753891.11,40.htm",
"record_create_dt": "2019-10-23T08:10:26+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Matrix-Finance-and-Accounting-Reviews-E753891.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.matrix-fa.com"
},
{
"country_id": 36,
"country": "Brazil",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Language-Associates-EI_IE2683022.11,30.htm",
"company_name": "Language Associates",
"company_id": 2683022,
"size": "Unknown",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 4,
"Jobs": 1,
"Salaries": 3,
"Interviews": 1,
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Language-Associates-EI_IE2683022.11,30.htm",
"record_create_dt": "2019-10-23T08:10:42+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Language-Associates-Reviews-E2683022.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "https:www.associates.com.br"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Chesley-Brown-EI_IE423854.11,24.htm",
"company_name": "Chesley Brown",
"company_id": 423854,
"size": "201 to 500 employees",
"type": "Contract",
"revenue": "$10 to $25 million (USD) per year",
"industry": "Security Services",
"headquarters": "Smyrna, GA",
"part_of": "",
"founded": 1990,
"competitors": "Unknown",
"Reviews": 30,
"Jobs": 18,
"Salaries": 23,
"Interviews": 2,
"Benefits": 1,
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Chesley-Brown-EI_IE423854.11,24.htm",
"record_create_dt": "2019-10-23T08:11:10+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Chesley-Brown-Reviews-E423854.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.chesleybrown.com"
},
{
"country_id": 169,
"country": "Mexico",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Jelpmi-EI_IE2794239.11,17.htm",
"company_name": "Jelpmi",
"company_id": 2794239,
"size": "Unknown",
"type": "Company - Private",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Unknown",
"headquarters": "",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": 2,
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-Jelpmi-EI_IE2794239.11,17.htm",
"record_create_dt": "2019-10-23T08:11:24+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Jelpmi-Reviews-E2794239.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "jelpmi.mx"
},
{
"country_id": 1,
"country": "United States",
"company_url": "https://www.glassdoor.com/Overview/Working-at-North-Maine-Community-Church-EI_IE905679.11,39.htm",
"company_name": "North Maine Community Church",
"company_id": 905679,
"size": "1 to 50 employees",
"type": "Nonprofit Organization",
"revenue": "Unknown / Non-Applicable per year",
"industry": "Religious Organizations",
"headquarters": "Chicago, IL",
"part_of": "",
"founded": "Unknown",
"competitors": "Unknown",
"Reviews": 1,
"Jobs": "--",
"Salaries": "--",
"Interviews": "--",
"Benefits": "--",
"Photos": "--",
"url": "https://www.glassdoor.com/Overview/Working-at-North-Maine-Community-Church-EI_IE905679.11,39.htm",
"record_create_dt": "2019-10-23T08:11:38+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/North-Maine-Community-Church-Reviews-E905679.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.northmaine.org"
},
{
"country_id": 115,
"country": "India",
"company_url": "https://www.glassdoor.com/Overview/Working-at-Thinkitive-Technologies-EI_IE1103435.11,34.htm",
"company_name": "Thinkitive Technologies",
"company_id": 1103435,
"size": "51 to 200 employees",
"type": "Company - Private",
"revenue": "$1 to $5 million (USD) per year",
"industry": "Enterprise Software & Network Solutions",
"headquarters": "Pune (India)",
"part_of": "",
"founded": 2015,
"competitors": "Unknown",
"Reviews": 27,
"Jobs": 6,
"Salaries": 11,
"Interviews": 24,
"Benefits": 14,
"Photos": 44,
"url": "https://www.glassdoor.com/Overview/Working-at-Thinkitive-Technologies-EI_IE1103435.11,34.htm",
"record_create_dt": "2019-10-23T08:11:54+00:00",
"feed_code": "AEID2412",
"site": "glassdoor.com",
"source_country": "US",
"context_identifier": "input url-https://www.glassdoor.com/Reviews/Fidel-IT-Services-Reviews-E1103435.htm",
"record_create_by": "AEID2412_Glassdoor_Companies",
"execution_id": "AEID2412/1571817919",
"file_create_dt": "10/23/2019",
"website": "www.thinkitive.com"
}
]
[
{
"company_name": "State of Alaska",
"li_company_name": "State of Alaska",
"li_company_url": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3nj4i46d800&fromjk=4cedf242e4f36484",
"company_website": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3nj4i46d800&fromjk=4cedf242e4f36484",
"job_title": "Analyst/Programmer 4",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=4cedf242e4f36484",
"job_loc": "Alaska",
"job_city": "",
"job_state": "",
"job_state_code": "AK",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Walmart",
"li_company_name": "Walmart",
"li_company_url": "https://www.indeed.com/cmp/Walmart?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4293jqut800&fromjk=4d9514820be7796a",
"company_website": "https://www.indeed.com/cmp/Walmart?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4293jqut800&fromjk=4d9514820be7796a",
"job_title": "Software Engineer II",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=4d9514820be7796a",
"job_loc": "Bentonville, AR 72712",
"job_city": "Bentonville",
"job_state": "",
"job_state_code": "AR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 72712
},
{
"company_name": "Adobe",
"li_company_name": "Adobe",
"li_company_url": "https://www.indeed.com/cmp/Adobe?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq45j0i477800&fromjk=cc5f0b8ca4990ec4",
"company_website": "https://www.indeed.com/cmp/Adobe?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq45j0i477800&fromjk=cc5f0b8ca4990ec4",
"job_title": "Software Development Engineer",
"job_description": "O",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=cc5f0b8ca4990ec4",
"job_loc": "San Jose, CA 95110",
"job_city": "San Jose",
"job_state": "",
"job_state_code": "CA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 95110
},
{
"company_name": "The Travelers Companies, Inc.",
"li_company_name": "The Travelers Companies, Inc.",
"li_company_url": "https://www.indeed.com/cmp/Travelers-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4sskj30m800&fromjk=2d50326eddb2d2c7",
"company_website": "https://www.indeed.com/cmp/Travelers-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4sskj30m800&fromjk=2d50326eddb2d2c7",
"job_title": "Senior DevOps Engineer, Salesforce/Copado",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "2 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=2d50326eddb2d2c7",
"job_loc": "Hartford, CT",
"job_city": "Hartford",
"job_state": "",
"job_state_code": "CT",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "American Partner Solutions",
"li_company_name": "American Partner Solutions",
"li_company_url": "https://www.indeed.com/cmp/American-Partner-Solutions?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4p3fk2n6800&fromjk=3c89e3a6869ab7d4",
"company_website": "https://www.indeed.com/cmp/American-Partner-Solutions?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4p3fk2n6800&fromjk=3c89e3a6869ab7d4",
"job_title": "Junior Level PHP Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=3c89e3a6869ab7d4",
"job_loc": "Tampa, FL 33634",
"job_city": "Tampa",
"job_state": "",
"job_state_code": "FL",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 33634
},
{
"company_name": "SAIC",
"li_company_name": "SAIC",
"li_company_url": "https://www.indeed.com/cmp/SAIC?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5d8e2ipu005&fromjk=f70b7bb150641dad",
"company_website": "https://www.indeed.com/cmp/SAIC?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5d8e2ipu005&fromjk=f70b7bb150641dad",
"job_title": "Database Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=f70b7bb150641dad",
"job_loc": "Pearl City, HI 96782",
"job_city": "Pearl City",
"job_state": "",
"job_state_code": "HI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 96782
},
{
"company_name": "Everlast Brands",
"li_company_name": "Everlast Brands",
"li_company_url": "https://www.indeed.com/cmp/Everlast-Brands?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5gtmj3tr800&fromjk=2ad8e27ac52debb2",
"company_website": "https://www.indeed.com/cmp/Everlast-Brands?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5gtmj3tr800&fromjk=2ad8e27ac52debb2",
"job_title": "Website Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=2ad8e27ac52debb2",
"job_loc": "Idaho Falls, ID 83402",
"job_city": "Idaho Falls",
"job_state": "",
"job_state_code": "ID",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 83402
},
{
"company_name": "General Dynamics Information Technology",
"li_company_name": "General Dynamics Information Technology",
"li_company_url": "https://www.indeed.com/cmp/General-Dynamics-Information-Technology?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5ltmghri800&fromjk=18e5008407c8266b",
"company_website": "https://www.indeed.com/cmp/General-Dynamics-Information-Technology?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5ltmghri800&fromjk=18e5008407c8266b",
"job_title": "Instructional Developer - Remote",
"job_description": "C",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=18e5008407c8266b",
"job_loc": "Indiana",
"job_city": "",
"job_state": "",
"job_state_code": "IN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "OnTrac",
"li_company_name": "OnTrac",
"li_company_url": "https://www.indeed.com/cmp/Ontrac-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq65u7kc1l800&fromjk=d5174bc400401aeb",
"company_website": "https://www.indeed.com/cmp/Ontrac-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq65u7kc1l800&fromjk=d5174bc400401aeb",
"job_title": "Senior Developer - Software",
"job_description": "S",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=d5174bc400401aeb",
"job_loc": "Louisville, KY 40218",
"job_city": "Louisville",
"job_state": "",
"job_state_code": "KY",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 40218
},
{
"company_name": "Veson Nautical",
"li_company_name": "Veson Nautical",
"li_company_url": "https://www.indeed.com/cmp/Veson-Nautical-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6ftsi6n1800&fromjk=cff5917b7fc2ad47",
"company_website": "https://www.indeed.com/cmp/Veson-Nautical-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6ftsi6n1800&fromjk=cff5917b7fc2ad47",
"job_title": "Software Engineering Manager",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=cff5917b7fc2ad47",
"job_loc": "Boston, MA 02110",
"job_city": "Boston",
"job_state": "",
"job_state_code": "MA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 2110
},
{
"company_name": "Microsoft",
"li_company_name": "Microsoft",
"li_company_url": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6mv328f1000&fromjk=382e42587ef47acf",
"company_website": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6mv328f1000&fromjk=382e42587ef47acf",
"job_title": "Senior Software Engineer - Linux",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=382e42587ef47acf",
"job_loc": "Poland, ME",
"job_city": "Poland",
"job_state": "",
"job_state_code": "ME",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Provation",
"li_company_name": "Provation",
"li_company_url": "https://www.indeed.com/cmp/Fortive?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq74clikch803&fromjk=de8f76313956fcd8",
"company_website": "https://www.indeed.com/cmp/Fortive?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq74clikch803&fromjk=de8f76313956fcd8",
"job_title": "Sr. Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=de8f76313956fcd8",
"job_loc": "Minneapolis, MN",
"job_city": "Minneapolis",
"job_state": "",
"job_state_code": "MN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Camgian",
"li_company_name": "Camgian",
"li_company_url": "https://www.indeed.com/cmp/Camgian?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7goqip8m801&fromjk=84326422fafcfea1",
"company_website": "https://www.indeed.com/cmp/Camgian?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7goqip8m801&fromjk=84326422fafcfea1",
"job_title": "SOFTWARE ENGINEER",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=84326422fafcfea1",
"job_loc": "Starkville, MS 39759",
"job_city": "Starkville",
"job_state": "",
"job_state_code": "MS",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 39759
},
{
"company_name": "Lockheed Martin Corporation",
"li_company_name": "Lockheed Martin Corporation",
"li_company_url": "https://www.indeed.com/cmp/Lockheed-Martin?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7nkei6jt800&fromjk=8c65b4e998f9a78f",
"company_website": "https://www.indeed.com/cmp/Lockheed-Martin?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7nkei6jt800&fromjk=8c65b4e998f9a78f",
"job_title": "Remote Sensing Geospatial Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=8c65b4e998f9a78f",
"job_loc": "Greensboro, NC",
"job_city": "Greensboro",
"job_state": "",
"job_state_code": "NC",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Ameritas",
"li_company_name": "Ameritas",
"li_company_url": "https://www.indeed.com/cmp/Ameritas-Life-Insurance-Corp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7rkv21a4000&fromjk=dc159b79e201aae7",
"company_website": "https://www.indeed.com/cmp/Ameritas-Life-Insurance-Corp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7rkv21a4000&fromjk=dc159b79e201aae7",
"job_title": "Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=dc159b79e201aae7",
"job_loc": "Lincoln, NE 68510",
"job_city": "Lincoln",
"job_state": "",
"job_state_code": "NE",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 68510
},
{
"company_name": "BeaconFire Solution",
"li_company_name": "BeaconFire Solution",
"li_company_url": "https://www.indeed.com/cmp/Beaconfire-Solution?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq85ba21a4001&fromjk=9fe74f1c11f73874",
"company_website": "https://www.indeed.com/cmp/Beaconfire-Solution?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq85ba21a4001&fromjk=9fe74f1c11f73874",
"job_title": "Entry Level Full Stack Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=9fe74f1c11f73874",
"job_loc": "Princeton, NJ",
"job_city": "Princeton",
"job_state": "",
"job_state_code": "NJ",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Skillz Inc.",
"li_company_name": "Skillz Inc.",
"li_company_url": "https://www.indeed.com/cmp/Skillz?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8gb7i7lr800&fromjk=78703d578cce8268",
"company_website": "https://www.indeed.com/cmp/Skillz?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8gb7i7lr800&fromjk=78703d578cce8268",
"job_title": "Lead / Senior Software Engineer, Mobile SDK",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=78703d578cce8268",
"job_loc": "Las Vegas, NV",
"job_city": "Las Vegas",
"job_state": "",
"job_state_code": "NV",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "CACI",
"li_company_name": "CACI",
"li_company_url": "https://www.indeed.com/cmp/CACI-International-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8opsia0r800&fromjk=858b0837437a151e",
"company_website": "https://www.indeed.com/cmp/CACI-International-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8opsia0r800&fromjk=858b0837437a151e",
"job_title": "Software Developer 1",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=858b0837437a151e",
"job_loc": "Fairborn, OH 45324",
"job_city": "Fairborn",
"job_state": "",
"job_state_code": "OH",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 45324
},
{
"company_name": "Oregon State University",
"li_company_name": "Oregon State University",
"li_company_url": "https://www.indeed.com/cmp/Oregon-State-University?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9l49gsrn802&fromjk=497093627774c883",
"company_website": "https://www.indeed.com/cmp/Oregon-State-University?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9l49gsrn802&fromjk=497093627774c883",
"job_title": "Programmer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=497093627774c883",
"job_loc": "Corvallis, OR 97331",
"job_city": "Corvallis",
"job_state": "",
"job_state_code": "OR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 97331
},
{
"company_name": "Fidelity Investments",
"li_company_name": "Fidelity Investments",
"li_company_url": "https://www.indeed.com/cmp/Fidelity-Investments?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9dclg0m9800&fromjk=83b808cb12fa9908",
"company_website": "https://www.indeed.com/cmp/Fidelity-Investments?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9dclg0m9800&fromjk=83b808cb12fa9908",
"job_title": "Senior Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=83b808cb12fa9908",
"job_loc": "Smithfield, RI 02917",
"job_city": "Smithfield",
"job_state": "",
"job_state_code": "RI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 2917
},
{
"company_name": "Sbs Cybersecurity Llc",
"li_company_name": "Sbs Cybersecurity Llc",
"li_company_url": "https://www.indeed.com/cmp/Sbs-Cybersecurity?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9tdugsrn800&fromjk=15f9b988165a16c4",
"company_website": "https://www.indeed.com/cmp/Sbs-Cybersecurity?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9tdugsrn800&fromjk=15f9b988165a16c4",
"job_title": "Sr Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=15f9b988165a16c4",
"job_loc": "Madison, SD 57042",
"job_city": "Madison",
"job_state": "",
"job_state_code": "SD",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 57042
},
{
"company_name": "ViaOne Services",
"li_company_name": "ViaOne Services",
"li_company_url": "https://www.indeed.com/cmp/Viaone-Services?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqa3bgg2ot800&fromjk=bebb2ce9d377e7da",
"company_website": "https://www.indeed.com/cmp/Viaone-Services?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqa3bgg2ot800&fromjk=bebb2ce9d377e7da",
"job_title": "Manager, Software Development & Scrum (Sponsorship Unavailable at this Time)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=bebb2ce9d377e7da",
"job_loc": "Dallas, TX 75234",
"job_city": "Dallas",
"job_state": "",
"job_state_code": "TX",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 75234
},
{
"company_name": "Prevailance, Inc.",
"li_company_name": "Prevailance, Inc.",
"li_company_url": "https://www.indeed.com/cmp/Prevailance,-Inc.-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqab46k5rt800&fromjk=e1f9b5ff62d9422f",
"company_website": "https://www.indeed.com/cmp/Prevailance,-Inc.-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqab46k5rt800&fromjk=e1f9b5ff62d9422f",
"job_title": "Strategic Analyst - Net Assessment",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=e1f9b5ff62d9422f",
"job_loc": "Norfolk, VA 23511",
"job_city": "Norfolk",
"job_state": "",
"job_state_code": "VA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 23511
},
{
"company_name": "Stoke Space",
"li_company_name": "Stoke Space",
"li_company_url": "",
"company_website": "",
"job_title": "Senior Backend Software Development Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=58ce56dec13b9566",
"job_loc": "Kent, WA",
"job_city": "Kent",
"job_state": "",
"job_state_code": "WA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Peraton",
"li_company_name": "Peraton",
"li_company_url": "https://www.indeed.com/cmp/Peraton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqb0nmih39800&fromjk=0e99d0d7cb717d1a",
"company_website": "https://www.indeed.com/cmp/Peraton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqb0nmih39800&fromjk=0e99d0d7cb717d1a",
"job_title": "Junior .Net Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "3 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=0e99d0d7cb717d1a",
"job_loc": "Charleston, WV",
"job_city": "Charleston",
"job_state": "",
"job_state_code": "WV",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "State of Alaska",
"li_company_name": "State of Alaska",
"li_company_url": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3pm9k2mi800&fromjk=a27f073ef9d2fc52",
"company_website": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3pm9k2mi800&fromjk=a27f073ef9d2fc52",
"job_title": "Analyst/Programmer 1/2/3/4 Flex",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "3 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=a27f073ef9d2fc52",
"job_loc": "Anchorage, AK",
"job_city": "Anchorage",
"job_state": "",
"job_state_code": "AK",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "University of Arkansas",
"li_company_name": "University of Arkansas",
"li_company_url": "https://www.indeed.com/cmp/University-of-Arkansas?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq44bbg2ot800&fromjk=b4556e863a339545",
"company_website": "https://www.indeed.com/cmp/University-of-Arkansas?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq44bbg2ot800&fromjk=b4556e863a339545",
"job_title": "Principal Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=b4556e863a339545",
"job_loc": "Little Rock, AR",
"job_city": "Little Rock",
"job_state": "",
"job_state_code": "AR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "State Compensation Insurance Fund",
"li_company_name": "State Compensation Insurance Fund",
"li_company_url": "https://www.indeed.com/cmp/State-Compensation-Insurance-Fund?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq46rbi6j9800&fromjk=1cc75e8348eff025",
"company_website": "https://www.indeed.com/cmp/State-Compensation-Insurance-Fund?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq46rbi6j9800&fromjk=1cc75e8348eff025",
"job_title": "Software Development Engineer in Test",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=1cc75e8348eff025",
"job_loc": "Stockton, CA",
"job_city": "Stockton",
"job_state": "",
"job_state_code": "CA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Trexquant Investment",
"li_company_name": "Trexquant Investment",
"li_company_url": "https://www.indeed.com/cmp/Trexquant-Investment-Lp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4uoqih39800&fromjk=5983cf6b41e1d3cc",
"company_website": "https://www.indeed.com/cmp/Trexquant-Investment-Lp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4uoqih39800&fromjk=5983cf6b41e1d3cc",
"job_title": "DevOps Engineer (USA)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "2 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=5983cf6b41e1d3cc",
"job_loc": "Stamford, CT",
"job_city": "Stamford",
"job_state": "",
"job_state_code": "CT",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Optm",
"li_company_name": "Optm",
"li_company_url": "https://www.indeed.com/cmp/Optm?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4r9hk5p1801&fromjk=b91304e368a11937",
"company_website": "https://www.indeed.com/cmp/Optm?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4r9hk5p1801&fromjk=b91304e368a11937",
"job_title": "Sr. Front End Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=b91304e368a11937",
"job_loc": "West Palm Beach, FL",
"job_city": "West Palm Beach",
"job_state": "",
"job_state_code": "FL",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Booz Allen Hamilton",
"li_company_name": "Booz Allen Hamilton",
"li_company_url": "https://www.indeed.com/cmp/Booz-Allen-Hamilton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5f88is21800&fromjk=b8cf57c3d8d72660",
"company_website": "https://www.indeed.com/cmp/Booz-Allen-Hamilton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5f88is21800&fromjk=b8cf57c3d8d72660",
"job_title": "Full Stack Software Engineer, Mid",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "2 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=b8cf57c3d8d72660",
"job_loc": "Camp H M Smith, HI",
"job_city": "Camp H M Smith",
"job_state": "",
"job_state_code": "HI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Information Systems Laboratories",
"li_company_name": "Information Systems Laboratories",
"li_company_url": "https://www.indeed.com/cmp/Information-Systems-Laboratories?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5jf8kc0s800&fromjk=145d7c2cbac814b8",
"company_website": "https://www.indeed.com/cmp/Information-Systems-Laboratories?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5jf8kc0s800&fromjk=145d7c2cbac814b8",
"job_title": "Entry Level Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=145d7c2cbac814b8",
"job_loc": "Idaho Falls, ID 83404",
"job_city": "Idaho Falls",
"job_state": "",
"job_state_code": "ID",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 83404
},
{
"company_name": "Productive Resources LLC",
"li_company_name": "Productive Resources LLC",
"li_company_url": "https://www.indeed.com/cmp/Productive-Resources?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5nlfi7lr801&fromjk=a2b3c112706f89a9",
"company_website": "https://www.indeed.com/cmp/Productive-Resources?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5nlfi7lr801&fromjk=a2b3c112706f89a9",
"job_title": "Embedded Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=a2b3c112706f89a9",
"job_loc": "Fort Wayne, IN 46809",
"job_city": "Fort Wayne",
"job_state": "",
"job_state_code": "IN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 46809
},
{
"company_name": "Bamboo Health",
"li_company_name": "Bamboo Health",
"li_company_url": "https://www.indeed.com/cmp/Bamboo-Health?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6854ikch800&fromjk=4a1af00c0e3defc2",
"company_website": "https://www.indeed.com/cmp/Bamboo-Health?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6854ikch800&fromjk=4a1af00c0e3defc2",
"job_title": "Sr. Software Engineer (Ruby)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=4a1af00c0e3defc2",
"job_loc": "Louisville, KY",
"job_city": "Louisville",
"job_state": "",
"job_state_code": "KY",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Astrion",
"li_company_name": "Astrion",
"li_company_url": "",
"company_website": "",
"job_title": "Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=d1646ef8cc671298",
"job_loc": "Bedford, MA 01730",
"job_city": "Bedford",
"job_state": "",
"job_state_code": "MA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 1730
},
{
"company_name": "WEX Inc.",
"li_company_name": "WEX Inc.",
"li_company_url": "https://www.indeed.com/cmp/Wex-Inc.?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6oihis21801&fromjk=d492884eeee164ad",
"company_website": "https://www.indeed.com/cmp/Wex-Inc.?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6oihis21801&fromjk=d492884eeee164ad",
"job_title": "Software Development Engineer 2-2",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "3 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=d492884eeee164ad",
"job_loc": "Portland, ME 04101",
"job_city": "Portland",
"job_state": "",
"job_state_code": "ME",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 4101
},
{
"company_name": "Teradyne",
"li_company_name": "Teradyne",
"li_company_url": "https://www.indeed.com/cmp/Teradyne?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7h4rghri801&fromjk=5fd7521b8d508581",
"company_website": "https://www.indeed.com/cmp/Teradyne?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7h4rghri801&fromjk=5fd7521b8d508581",
"job_title": "Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=5fd7521b8d508581",
"job_loc": "Fridley, MN",
"job_city": "Fridley",
"job_state": "",
"job_state_code": "MN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Siemens Energy",
"li_company_name": "Siemens Energy",
"li_company_url": "https://www.indeed.com/cmp/Siemens-Energy?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7igch4cl800&fromjk=6a2d748adcf227cd",
"company_website": "https://www.indeed.com/cmp/Siemens-Energy?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7igch4cl800&fromjk=6a2d748adcf227cd",
"job_title": "Application Engineer & Business Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=6a2d748adcf227cd",
"job_loc": "Richland, MS 39218",
"job_city": "Richland",
"job_state": "",
"job_state_code": "MS",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 39218
},
{
"company_name": "Red Hat Software",
"li_company_name": "Red Hat Software",
"li_company_url": "https://www.indeed.com/cmp/Red-Hat?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7pscgsrn800&fromjk=52352c7629094d17",
"company_website": "https://www.indeed.com/cmp/Red-Hat?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7pscgsrn800&fromjk=52352c7629094d17",
"job_title": "Manager, Site Reliability Engineering",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=52352c7629094d17",
"job_loc": "Raleigh, NC 27601",
"job_city": "Raleigh",
"job_state": "",
"job_state_code": "NC",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 27601
},
{
"company_name": "CyncHealth",
"li_company_name": "CyncHealth",
"li_company_url": "https://www.indeed.com/cmp/Cynchealth?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7tqji7lb801&fromjk=bf0cf330c69dc1e6",
"company_website": "https://www.indeed.com/cmp/Cynchealth?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7tqji7lb801&fromjk=bf0cf330c69dc1e6",
"job_title": "Full Stack Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=bf0cf330c69dc1e6",
"job_loc": "Omaha, NE",
"job_city": "Omaha",
"job_state": "",
"job_state_code": "NE",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "The Cigna Group",
"li_company_name": "The Cigna Group",
"li_company_url": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq87pfg2ot800&fromjk=51303ca2c87c0f19",
"company_website": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq87pfg2ot800&fromjk=51303ca2c87c0f19",
"job_title": "Software Engineering Sr Manager - Evernorth Home-Based Care",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=51303ca2c87c0f19",
"job_loc": "Morris Plains, NJ 07950",
"job_city": "Morris Plains",
"job_state": "",
"job_state_code": "NJ",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 7950
},
{
"company_name": "Four Queens Hotel and Casino",
"li_company_name": "Four Queens Hotel and Casino",
"li_company_url": "https://www.indeed.com/cmp/Four-Queens-Hotel-&-Casino?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8hr8ii0s804&fromjk=6b8bf93a00a89398",
"company_website": "https://www.indeed.com/cmp/Four-Queens-Hotel-&-Casino?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8hr8ii0s804&fromjk=6b8bf93a00a89398",
"job_title": "Next Gaming-Gaming Software Eng",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=6b8bf93a00a89398",
"job_loc": "Las Vegas, NV 89101",
"job_city": "Las Vegas",
"job_state": "",
"job_state_code": "NV",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 89101
},
{
"company_name": "LyondellBasell Industries",
"li_company_name": "LyondellBasell Industries",
"li_company_url": "https://www.indeed.com/cmp/Lyondellbasell?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8thighre801&fromjk=9c56c371e25e8507",
"company_website": "https://www.indeed.com/cmp/Lyondellbasell?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8thighre801&fromjk=9c56c371e25e8507",
"job_title": "Product and Applications Development (PAD) Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=9c56c371e25e8507",
"job_loc": "Akron, OH 44310",
"job_city": "Akron",
"job_state": "",
"job_state_code": "OH",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 44310
},
{
"company_name": "University of Oregon",
"li_company_name": "University of Oregon",
"li_company_url": "https://www.indeed.com/cmp/University-of-Oregon?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9nqsjm62805&fromjk=09a64fd5afe79ec2",
"company_website": "https://www.indeed.com/cmp/University-of-Oregon?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9nqsjm62805&fromjk=09a64fd5afe79ec2",
"job_title": "Business Operations Analyst",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=09a64fd5afe79ec2",
"job_loc": "Eugene, OR",
"job_city": "Eugene",
"job_state": "",
"job_state_code": "OR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Vista Higher Learning",
"li_company_name": "Vista Higher Learning",
"li_company_url": "https://www.indeed.com/cmp/Vista-Higher-Learning-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9fi2kc2i800&fromjk=a1289e3a7896e829",
"company_website": "https://www.indeed.com/cmp/Vista-Higher-Learning-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9fi2kc2i800&fromjk=a1289e3a7896e829",
"job_title": "Sr. Software Developer/Engineer (Back End)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=a1289e3a7896e829",
"job_loc": "Rhode Island",
"job_city": "",
"job_state": "",
"job_state_code": "RI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Phase Technologies",
"li_company_name": "Phase Technologies",
"li_company_url": "https://www.indeed.com/cmp/Phase-Technologies?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9vo9glr6800&fromjk=523cfb5a9518c092",
"company_website": "https://www.indeed.com/cmp/Phase-Technologies?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9vo9glr6800&fromjk=523cfb5a9518c092",
"job_title": "Web Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=523cfb5a9518c092",
"job_loc": "Rapid City, SD 57701",
"job_city": "Rapid City",
"job_state": "",
"job_state_code": "SD",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 57701
},
{
"company_name": "The Cigna Group",
"li_company_name": "The Cigna Group",
"li_company_url": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqam64i9jb801&fromjk=1cbf1dc77997e330",
"company_website": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqam64i9jb801&fromjk=1cbf1dc77997e330",
"job_title": "Application Development Advisor - Hybrid",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=1cbf1dc77997e330",
"job_loc": "Plano, TX 75093",
"job_city": "Plano",
"job_state": "",
"job_state_code": "TX",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 75093
},
{
"company_name": "E Business International Inc",
"li_company_name": "E Business International Inc",
"li_company_url": "https://www.indeed.com/cmp/E-Business-International-Inc?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqad0eiqvi801&fromjk=eec73780dd45cbeb",
"company_website": "https://www.indeed.com/cmp/E-Business-International-Inc?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqad0eiqvi801&fromjk=eec73780dd45cbeb",
"job_title": "Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=eec73780dd45cbeb",
"job_loc": "Lynchburg, VA",
"job_city": "Lynchburg",
"job_state": "",
"job_state_code": "VA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Microsoft",
"li_company_name": "Microsoft",
"li_company_url": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqan1qi6j9800&fromjk=0fbf5239bc2f8b40",
"company_website": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqan1qi6j9800&fromjk=0fbf5239bc2f8b40",
"job_title": "Software Engineer II",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=0fbf5239bc2f8b40",
"job_loc": "Redmond, WA 98052",
"job_city": "Redmond",
"job_state": "",
"job_state_code": "WA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 98052
}
]
[
{
"company_name": "State of Alaska",
"li_company_name": "State of Alaska",
"li_company_url": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3nj4i46d800&fromjk=4cedf242e4f36484",
"company_website": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3nj4i46d800&fromjk=4cedf242e4f36484",
"job_title": "Analyst/Programmer 4",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=4cedf242e4f36484",
"job_loc": "Alaska",
"job_city": "",
"job_state": "",
"job_state_code": "AK",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Walmart",
"li_company_name": "Walmart",
"li_company_url": "https://www.indeed.com/cmp/Walmart?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4293jqut800&fromjk=4d9514820be7796a",
"company_website": "https://www.indeed.com/cmp/Walmart?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4293jqut800&fromjk=4d9514820be7796a",
"job_title": "Software Engineer II",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=4d9514820be7796a",
"job_loc": "Bentonville, AR 72712",
"job_city": "Bentonville",
"job_state": "",
"job_state_code": "AR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 72712
},
{
"company_name": "Adobe",
"li_company_name": "Adobe",
"li_company_url": "https://www.indeed.com/cmp/Adobe?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq45j0i477800&fromjk=cc5f0b8ca4990ec4",
"company_website": "https://www.indeed.com/cmp/Adobe?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq45j0i477800&fromjk=cc5f0b8ca4990ec4",
"job_title": "Software Development Engineer",
"job_description": "O",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=cc5f0b8ca4990ec4",
"job_loc": "San Jose, CA 95110",
"job_city": "San Jose",
"job_state": "",
"job_state_code": "CA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 95110
},
{
"company_name": "The Travelers Companies, Inc.",
"li_company_name": "The Travelers Companies, Inc.",
"li_company_url": "https://www.indeed.com/cmp/Travelers-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4sskj30m800&fromjk=2d50326eddb2d2c7",
"company_website": "https://www.indeed.com/cmp/Travelers-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4sskj30m800&fromjk=2d50326eddb2d2c7",
"job_title": "Senior DevOps Engineer, Salesforce/Copado",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "2 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=2d50326eddb2d2c7",
"job_loc": "Hartford, CT",
"job_city": "Hartford",
"job_state": "",
"job_state_code": "CT",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "American Partner Solutions",
"li_company_name": "American Partner Solutions",
"li_company_url": "https://www.indeed.com/cmp/American-Partner-Solutions?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4p3fk2n6800&fromjk=3c89e3a6869ab7d4",
"company_website": "https://www.indeed.com/cmp/American-Partner-Solutions?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4p3fk2n6800&fromjk=3c89e3a6869ab7d4",
"job_title": "Junior Level PHP Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=3c89e3a6869ab7d4",
"job_loc": "Tampa, FL 33634",
"job_city": "Tampa",
"job_state": "",
"job_state_code": "FL",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 33634
},
{
"company_name": "SAIC",
"li_company_name": "SAIC",
"li_company_url": "https://www.indeed.com/cmp/SAIC?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5d8e2ipu005&fromjk=f70b7bb150641dad",
"company_website": "https://www.indeed.com/cmp/SAIC?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5d8e2ipu005&fromjk=f70b7bb150641dad",
"job_title": "Database Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=f70b7bb150641dad",
"job_loc": "Pearl City, HI 96782",
"job_city": "Pearl City",
"job_state": "",
"job_state_code": "HI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 96782
},
{
"company_name": "Everlast Brands",
"li_company_name": "Everlast Brands",
"li_company_url": "https://www.indeed.com/cmp/Everlast-Brands?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5gtmj3tr800&fromjk=2ad8e27ac52debb2",
"company_website": "https://www.indeed.com/cmp/Everlast-Brands?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5gtmj3tr800&fromjk=2ad8e27ac52debb2",
"job_title": "Website Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=2ad8e27ac52debb2",
"job_loc": "Idaho Falls, ID 83402",
"job_city": "Idaho Falls",
"job_state": "",
"job_state_code": "ID",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 83402
},
{
"company_name": "General Dynamics Information Technology",
"li_company_name": "General Dynamics Information Technology",
"li_company_url": "https://www.indeed.com/cmp/General-Dynamics-Information-Technology?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5ltmghri800&fromjk=18e5008407c8266b",
"company_website": "https://www.indeed.com/cmp/General-Dynamics-Information-Technology?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5ltmghri800&fromjk=18e5008407c8266b",
"job_title": "Instructional Developer - Remote",
"job_description": "C",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=18e5008407c8266b",
"job_loc": "Indiana",
"job_city": "",
"job_state": "",
"job_state_code": "IN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "OnTrac",
"li_company_name": "OnTrac",
"li_company_url": "https://www.indeed.com/cmp/Ontrac-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq65u7kc1l800&fromjk=d5174bc400401aeb",
"company_website": "https://www.indeed.com/cmp/Ontrac-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq65u7kc1l800&fromjk=d5174bc400401aeb",
"job_title": "Senior Developer - Software",
"job_description": "S",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=d5174bc400401aeb",
"job_loc": "Louisville, KY 40218",
"job_city": "Louisville",
"job_state": "",
"job_state_code": "KY",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 40218
},
{
"company_name": "Veson Nautical",
"li_company_name": "Veson Nautical",
"li_company_url": "https://www.indeed.com/cmp/Veson-Nautical-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6ftsi6n1800&fromjk=cff5917b7fc2ad47",
"company_website": "https://www.indeed.com/cmp/Veson-Nautical-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6ftsi6n1800&fromjk=cff5917b7fc2ad47",
"job_title": "Software Engineering Manager",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=cff5917b7fc2ad47",
"job_loc": "Boston, MA 02110",
"job_city": "Boston",
"job_state": "",
"job_state_code": "MA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 2110
},
{
"company_name": "Microsoft",
"li_company_name": "Microsoft",
"li_company_url": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6mv328f1000&fromjk=382e42587ef47acf",
"company_website": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6mv328f1000&fromjk=382e42587ef47acf",
"job_title": "Senior Software Engineer - Linux",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=382e42587ef47acf",
"job_loc": "Poland, ME",
"job_city": "Poland",
"job_state": "",
"job_state_code": "ME",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Provation",
"li_company_name": "Provation",
"li_company_url": "https://www.indeed.com/cmp/Fortive?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq74clikch803&fromjk=de8f76313956fcd8",
"company_website": "https://www.indeed.com/cmp/Fortive?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq74clikch803&fromjk=de8f76313956fcd8",
"job_title": "Sr. Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=de8f76313956fcd8",
"job_loc": "Minneapolis, MN",
"job_city": "Minneapolis",
"job_state": "",
"job_state_code": "MN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Camgian",
"li_company_name": "Camgian",
"li_company_url": "https://www.indeed.com/cmp/Camgian?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7goqip8m801&fromjk=84326422fafcfea1",
"company_website": "https://www.indeed.com/cmp/Camgian?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7goqip8m801&fromjk=84326422fafcfea1",
"job_title": "SOFTWARE ENGINEER",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=84326422fafcfea1",
"job_loc": "Starkville, MS 39759",
"job_city": "Starkville",
"job_state": "",
"job_state_code": "MS",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 39759
},
{
"company_name": "Lockheed Martin Corporation",
"li_company_name": "Lockheed Martin Corporation",
"li_company_url": "https://www.indeed.com/cmp/Lockheed-Martin?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7nkei6jt800&fromjk=8c65b4e998f9a78f",
"company_website": "https://www.indeed.com/cmp/Lockheed-Martin?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7nkei6jt800&fromjk=8c65b4e998f9a78f",
"job_title": "Remote Sensing Geospatial Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=8c65b4e998f9a78f",
"job_loc": "Greensboro, NC",
"job_city": "Greensboro",
"job_state": "",
"job_state_code": "NC",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Ameritas",
"li_company_name": "Ameritas",
"li_company_url": "https://www.indeed.com/cmp/Ameritas-Life-Insurance-Corp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7rkv21a4000&fromjk=dc159b79e201aae7",
"company_website": "https://www.indeed.com/cmp/Ameritas-Life-Insurance-Corp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7rkv21a4000&fromjk=dc159b79e201aae7",
"job_title": "Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=dc159b79e201aae7",
"job_loc": "Lincoln, NE 68510",
"job_city": "Lincoln",
"job_state": "",
"job_state_code": "NE",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 68510
},
{
"company_name": "BeaconFire Solution",
"li_company_name": "BeaconFire Solution",
"li_company_url": "https://www.indeed.com/cmp/Beaconfire-Solution?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq85ba21a4001&fromjk=9fe74f1c11f73874",
"company_website": "https://www.indeed.com/cmp/Beaconfire-Solution?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq85ba21a4001&fromjk=9fe74f1c11f73874",
"job_title": "Entry Level Full Stack Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=9fe74f1c11f73874",
"job_loc": "Princeton, NJ",
"job_city": "Princeton",
"job_state": "",
"job_state_code": "NJ",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Skillz Inc.",
"li_company_name": "Skillz Inc.",
"li_company_url": "https://www.indeed.com/cmp/Skillz?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8gb7i7lr800&fromjk=78703d578cce8268",
"company_website": "https://www.indeed.com/cmp/Skillz?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8gb7i7lr800&fromjk=78703d578cce8268",
"job_title": "Lead / Senior Software Engineer, Mobile SDK",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=78703d578cce8268",
"job_loc": "Las Vegas, NV",
"job_city": "Las Vegas",
"job_state": "",
"job_state_code": "NV",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "CACI",
"li_company_name": "CACI",
"li_company_url": "https://www.indeed.com/cmp/CACI-International-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8opsia0r800&fromjk=858b0837437a151e",
"company_website": "https://www.indeed.com/cmp/CACI-International-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8opsia0r800&fromjk=858b0837437a151e",
"job_title": "Software Developer 1",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=858b0837437a151e",
"job_loc": "Fairborn, OH 45324",
"job_city": "Fairborn",
"job_state": "",
"job_state_code": "OH",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 45324
},
{
"company_name": "Oregon State University",
"li_company_name": "Oregon State University",
"li_company_url": "https://www.indeed.com/cmp/Oregon-State-University?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9l49gsrn802&fromjk=497093627774c883",
"company_website": "https://www.indeed.com/cmp/Oregon-State-University?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9l49gsrn802&fromjk=497093627774c883",
"job_title": "Programmer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=497093627774c883",
"job_loc": "Corvallis, OR 97331",
"job_city": "Corvallis",
"job_state": "",
"job_state_code": "OR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 97331
},
{
"company_name": "Fidelity Investments",
"li_company_name": "Fidelity Investments",
"li_company_url": "https://www.indeed.com/cmp/Fidelity-Investments?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9dclg0m9800&fromjk=83b808cb12fa9908",
"company_website": "https://www.indeed.com/cmp/Fidelity-Investments?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9dclg0m9800&fromjk=83b808cb12fa9908",
"job_title": "Senior Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=83b808cb12fa9908",
"job_loc": "Smithfield, RI 02917",
"job_city": "Smithfield",
"job_state": "",
"job_state_code": "RI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 2917
},
{
"company_name": "Sbs Cybersecurity Llc",
"li_company_name": "Sbs Cybersecurity Llc",
"li_company_url": "https://www.indeed.com/cmp/Sbs-Cybersecurity?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9tdugsrn800&fromjk=15f9b988165a16c4",
"company_website": "https://www.indeed.com/cmp/Sbs-Cybersecurity?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9tdugsrn800&fromjk=15f9b988165a16c4",
"job_title": "Sr Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=15f9b988165a16c4",
"job_loc": "Madison, SD 57042",
"job_city": "Madison",
"job_state": "",
"job_state_code": "SD",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 57042
},
{
"company_name": "ViaOne Services",
"li_company_name": "ViaOne Services",
"li_company_url": "https://www.indeed.com/cmp/Viaone-Services?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqa3bgg2ot800&fromjk=bebb2ce9d377e7da",
"company_website": "https://www.indeed.com/cmp/Viaone-Services?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqa3bgg2ot800&fromjk=bebb2ce9d377e7da",
"job_title": "Manager, Software Development & Scrum (Sponsorship Unavailable at this Time)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=bebb2ce9d377e7da",
"job_loc": "Dallas, TX 75234",
"job_city": "Dallas",
"job_state": "",
"job_state_code": "TX",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 75234
},
{
"company_name": "Prevailance, Inc.",
"li_company_name": "Prevailance, Inc.",
"li_company_url": "https://www.indeed.com/cmp/Prevailance,-Inc.-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqab46k5rt800&fromjk=e1f9b5ff62d9422f",
"company_website": "https://www.indeed.com/cmp/Prevailance,-Inc.-1?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqab46k5rt800&fromjk=e1f9b5ff62d9422f",
"job_title": "Strategic Analyst - Net Assessment",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=e1f9b5ff62d9422f",
"job_loc": "Norfolk, VA 23511",
"job_city": "Norfolk",
"job_state": "",
"job_state_code": "VA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 23511
},
{
"company_name": "Stoke Space",
"li_company_name": "Stoke Space",
"li_company_url": "",
"company_website": "",
"job_title": "Senior Backend Software Development Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=58ce56dec13b9566",
"job_loc": "Kent, WA",
"job_city": "Kent",
"job_state": "",
"job_state_code": "WA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Peraton",
"li_company_name": "Peraton",
"li_company_url": "https://www.indeed.com/cmp/Peraton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqb0nmih39800&fromjk=0e99d0d7cb717d1a",
"company_website": "https://www.indeed.com/cmp/Peraton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqb0nmih39800&fromjk=0e99d0d7cb717d1a",
"job_title": "Junior .Net Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "3 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=0e99d0d7cb717d1a",
"job_loc": "Charleston, WV",
"job_city": "Charleston",
"job_state": "",
"job_state_code": "WV",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "State of Alaska",
"li_company_name": "State of Alaska",
"li_company_url": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3pm9k2mi800&fromjk=a27f073ef9d2fc52",
"company_website": "https://www.indeed.com/cmp/State-of-Alaska?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq3pm9k2mi800&fromjk=a27f073ef9d2fc52",
"job_title": "Analyst/Programmer 1/2/3/4 Flex",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "3 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=a27f073ef9d2fc52",
"job_loc": "Anchorage, AK",
"job_city": "Anchorage",
"job_state": "",
"job_state_code": "AK",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "University of Arkansas",
"li_company_name": "University of Arkansas",
"li_company_url": "https://www.indeed.com/cmp/University-of-Arkansas?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq44bbg2ot800&fromjk=b4556e863a339545",
"company_website": "https://www.indeed.com/cmp/University-of-Arkansas?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq44bbg2ot800&fromjk=b4556e863a339545",
"job_title": "Principal Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=b4556e863a339545",
"job_loc": "Little Rock, AR",
"job_city": "Little Rock",
"job_state": "",
"job_state_code": "AR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "State Compensation Insurance Fund",
"li_company_name": "State Compensation Insurance Fund",
"li_company_url": "https://www.indeed.com/cmp/State-Compensation-Insurance-Fund?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq46rbi6j9800&fromjk=1cc75e8348eff025",
"company_website": "https://www.indeed.com/cmp/State-Compensation-Insurance-Fund?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq46rbi6j9800&fromjk=1cc75e8348eff025",
"job_title": "Software Development Engineer in Test",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=1cc75e8348eff025",
"job_loc": "Stockton, CA",
"job_city": "Stockton",
"job_state": "",
"job_state_code": "CA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Trexquant Investment",
"li_company_name": "Trexquant Investment",
"li_company_url": "https://www.indeed.com/cmp/Trexquant-Investment-Lp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4uoqih39800&fromjk=5983cf6b41e1d3cc",
"company_website": "https://www.indeed.com/cmp/Trexquant-Investment-Lp?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4uoqih39800&fromjk=5983cf6b41e1d3cc",
"job_title": "DevOps Engineer (USA)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "2 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=5983cf6b41e1d3cc",
"job_loc": "Stamford, CT",
"job_city": "Stamford",
"job_state": "",
"job_state_code": "CT",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Optm",
"li_company_name": "Optm",
"li_company_url": "https://www.indeed.com/cmp/Optm?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4r9hk5p1801&fromjk=b91304e368a11937",
"company_website": "https://www.indeed.com/cmp/Optm?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq4r9hk5p1801&fromjk=b91304e368a11937",
"job_title": "Sr. Front End Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=b91304e368a11937",
"job_loc": "West Palm Beach, FL",
"job_city": "West Palm Beach",
"job_state": "",
"job_state_code": "FL",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Booz Allen Hamilton",
"li_company_name": "Booz Allen Hamilton",
"li_company_url": "https://www.indeed.com/cmp/Booz-Allen-Hamilton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5f88is21800&fromjk=b8cf57c3d8d72660",
"company_website": "https://www.indeed.com/cmp/Booz-Allen-Hamilton?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5f88is21800&fromjk=b8cf57c3d8d72660",
"job_title": "Full Stack Software Engineer, Mid",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "2 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=b8cf57c3d8d72660",
"job_loc": "Camp H M Smith, HI",
"job_city": "Camp H M Smith",
"job_state": "",
"job_state_code": "HI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Information Systems Laboratories",
"li_company_name": "Information Systems Laboratories",
"li_company_url": "https://www.indeed.com/cmp/Information-Systems-Laboratories?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5jf8kc0s800&fromjk=145d7c2cbac814b8",
"company_website": "https://www.indeed.com/cmp/Information-Systems-Laboratories?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5jf8kc0s800&fromjk=145d7c2cbac814b8",
"job_title": "Entry Level Software Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=145d7c2cbac814b8",
"job_loc": "Idaho Falls, ID 83404",
"job_city": "Idaho Falls",
"job_state": "",
"job_state_code": "ID",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 83404
},
{
"company_name": "Productive Resources LLC",
"li_company_name": "Productive Resources LLC",
"li_company_url": "https://www.indeed.com/cmp/Productive-Resources?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5nlfi7lr801&fromjk=a2b3c112706f89a9",
"company_website": "https://www.indeed.com/cmp/Productive-Resources?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq5nlfi7lr801&fromjk=a2b3c112706f89a9",
"job_title": "Embedded Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=a2b3c112706f89a9",
"job_loc": "Fort Wayne, IN 46809",
"job_city": "Fort Wayne",
"job_state": "",
"job_state_code": "IN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 46809
},
{
"company_name": "Bamboo Health",
"li_company_name": "Bamboo Health",
"li_company_url": "https://www.indeed.com/cmp/Bamboo-Health?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6854ikch800&fromjk=4a1af00c0e3defc2",
"company_website": "https://www.indeed.com/cmp/Bamboo-Health?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6854ikch800&fromjk=4a1af00c0e3defc2",
"job_title": "Sr. Software Engineer (Ruby)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=4a1af00c0e3defc2",
"job_loc": "Louisville, KY",
"job_city": "Louisville",
"job_state": "",
"job_state_code": "KY",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Astrion",
"li_company_name": "Astrion",
"li_company_url": "",
"company_website": "",
"job_title": "Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=d1646ef8cc671298",
"job_loc": "Bedford, MA 01730",
"job_city": "Bedford",
"job_state": "",
"job_state_code": "MA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 1730
},
{
"company_name": "WEX Inc.",
"li_company_name": "WEX Inc.",
"li_company_url": "https://www.indeed.com/cmp/Wex-Inc.?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6oihis21801&fromjk=d492884eeee164ad",
"company_website": "https://www.indeed.com/cmp/Wex-Inc.?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq6oihis21801&fromjk=d492884eeee164ad",
"job_title": "Software Development Engineer 2-2",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "3 days ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=d492884eeee164ad",
"job_loc": "Portland, ME 04101",
"job_city": "Portland",
"job_state": "",
"job_state_code": "ME",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 4101
},
{
"company_name": "Teradyne",
"li_company_name": "Teradyne",
"li_company_url": "https://www.indeed.com/cmp/Teradyne?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7h4rghri801&fromjk=5fd7521b8d508581",
"company_website": "https://www.indeed.com/cmp/Teradyne?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7h4rghri801&fromjk=5fd7521b8d508581",
"job_title": "Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=5fd7521b8d508581",
"job_loc": "Fridley, MN",
"job_city": "Fridley",
"job_state": "",
"job_state_code": "MN",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Siemens Energy",
"li_company_name": "Siemens Energy",
"li_company_url": "https://www.indeed.com/cmp/Siemens-Energy?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7igch4cl800&fromjk=6a2d748adcf227cd",
"company_website": "https://www.indeed.com/cmp/Siemens-Energy?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7igch4cl800&fromjk=6a2d748adcf227cd",
"job_title": "Application Engineer & Business Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=6a2d748adcf227cd",
"job_loc": "Richland, MS 39218",
"job_city": "Richland",
"job_state": "",
"job_state_code": "MS",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 39218
},
{
"company_name": "Red Hat Software",
"li_company_name": "Red Hat Software",
"li_company_url": "https://www.indeed.com/cmp/Red-Hat?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7pscgsrn800&fromjk=52352c7629094d17",
"company_website": "https://www.indeed.com/cmp/Red-Hat?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7pscgsrn800&fromjk=52352c7629094d17",
"job_title": "Manager, Site Reliability Engineering",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=52352c7629094d17",
"job_loc": "Raleigh, NC 27601",
"job_city": "Raleigh",
"job_state": "",
"job_state_code": "NC",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 27601
},
{
"company_name": "CyncHealth",
"li_company_name": "CyncHealth",
"li_company_url": "https://www.indeed.com/cmp/Cynchealth?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7tqji7lb801&fromjk=bf0cf330c69dc1e6",
"company_website": "https://www.indeed.com/cmp/Cynchealth?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq7tqji7lb801&fromjk=bf0cf330c69dc1e6",
"job_title": "Full Stack Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=bf0cf330c69dc1e6",
"job_loc": "Omaha, NE",
"job_city": "Omaha",
"job_state": "",
"job_state_code": "NE",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "The Cigna Group",
"li_company_name": "The Cigna Group",
"li_company_url": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq87pfg2ot800&fromjk=51303ca2c87c0f19",
"company_website": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq87pfg2ot800&fromjk=51303ca2c87c0f19",
"job_title": "Software Engineering Sr Manager - Evernorth Home-Based Care",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=51303ca2c87c0f19",
"job_loc": "Morris Plains, NJ 07950",
"job_city": "Morris Plains",
"job_state": "",
"job_state_code": "NJ",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 7950
},
{
"company_name": "Four Queens Hotel and Casino",
"li_company_name": "Four Queens Hotel and Casino",
"li_company_url": "https://www.indeed.com/cmp/Four-Queens-Hotel-&-Casino?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8hr8ii0s804&fromjk=6b8bf93a00a89398",
"company_website": "https://www.indeed.com/cmp/Four-Queens-Hotel-&-Casino?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8hr8ii0s804&fromjk=6b8bf93a00a89398",
"job_title": "Next Gaming-Gaming Software Eng",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=6b8bf93a00a89398",
"job_loc": "Las Vegas, NV 89101",
"job_city": "Las Vegas",
"job_state": "",
"job_state_code": "NV",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 89101
},
{
"company_name": "LyondellBasell Industries",
"li_company_name": "LyondellBasell Industries",
"li_company_url": "https://www.indeed.com/cmp/Lyondellbasell?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8thighre801&fromjk=9c56c371e25e8507",
"company_website": "https://www.indeed.com/cmp/Lyondellbasell?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq8thighre801&fromjk=9c56c371e25e8507",
"job_title": "Product and Applications Development (PAD) Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=9c56c371e25e8507",
"job_loc": "Akron, OH 44310",
"job_city": "Akron",
"job_state": "",
"job_state_code": "OH",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 44310
},
{
"company_name": "University of Oregon",
"li_company_name": "University of Oregon",
"li_company_url": "https://www.indeed.com/cmp/University-of-Oregon?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9nqsjm62805&fromjk=09a64fd5afe79ec2",
"company_website": "https://www.indeed.com/cmp/University-of-Oregon?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9nqsjm62805&fromjk=09a64fd5afe79ec2",
"job_title": "Business Operations Analyst",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=09a64fd5afe79ec2",
"job_loc": "Eugene, OR",
"job_city": "Eugene",
"job_state": "",
"job_state_code": "OR",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Vista Higher Learning",
"li_company_name": "Vista Higher Learning",
"li_company_url": "https://www.indeed.com/cmp/Vista-Higher-Learning-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9fi2kc2i800&fromjk=a1289e3a7896e829",
"company_website": "https://www.indeed.com/cmp/Vista-Higher-Learning-2?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9fi2kc2i800&fromjk=a1289e3a7896e829",
"job_title": "Sr. Software Developer/Engineer (Back End)",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "1 day ago",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=a1289e3a7896e829",
"job_loc": "Rhode Island",
"job_city": "",
"job_state": "",
"job_state_code": "RI",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Phase Technologies",
"li_company_name": "Phase Technologies",
"li_company_url": "https://www.indeed.com/cmp/Phase-Technologies?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9vo9glr6800&fromjk=523cfb5a9518c092",
"company_website": "https://www.indeed.com/cmp/Phase-Technologies?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlq9vo9glr6800&fromjk=523cfb5a9518c092",
"job_title": "Web Developer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Today",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=523cfb5a9518c092",
"job_loc": "Rapid City, SD 57701",
"job_city": "Rapid City",
"job_state": "",
"job_state_code": "SD",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 57701
},
{
"company_name": "The Cigna Group",
"li_company_name": "The Cigna Group",
"li_company_url": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqam64i9jb801&fromjk=1cbf1dc77997e330",
"company_website": "https://www.indeed.com/cmp/The-Cigna-Group?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqam64i9jb801&fromjk=1cbf1dc77997e330",
"job_title": "Application Development Advisor - Hybrid",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=1cbf1dc77997e330",
"job_loc": "Plano, TX 75093",
"job_city": "Plano",
"job_state": "",
"job_state_code": "TX",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 75093
},
{
"company_name": "E Business International Inc",
"li_company_name": "E Business International Inc",
"li_company_url": "https://www.indeed.com/cmp/E-Business-International-Inc?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqad0eiqvi801&fromjk=eec73780dd45cbeb",
"company_website": "https://www.indeed.com/cmp/E-Business-International-Inc?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqad0eiqvi801&fromjk=eec73780dd45cbeb",
"job_title": "Software Engineer",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=eec73780dd45cbeb",
"job_loc": "Lynchburg, VA",
"job_city": "Lynchburg",
"job_state": "",
"job_state_code": "VA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": ""
},
{
"company_name": "Microsoft",
"li_company_name": "Microsoft",
"li_company_url": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqan1qi6j9800&fromjk=0fbf5239bc2f8b40",
"company_website": "https://www.indeed.com/cmp/Microsoft?campaignid=mobvjcmp&from=mobviewjob&tk=1hhlqan1qi6j9800&fromjk=0fbf5239bc2f8b40",
"job_title": "Software Engineer II",
"job_description": "",
"employment_type": "",
"date_job": "",
"job_age": "Just posted",
"company_job_posting_url": "",
"company_page_url": "",
"job_source": "",
"job_url": "https://www.indeed.com/viewjob?viewtype=embedded&jk=0fbf5239bc2f8b40",
"job_loc": "Redmond, WA 98052",
"job_city": "Redmond",
"job_state": "",
"job_state_code": "WA",
"job_country": "United States",
"job_country_code": "US",
"job_zip": 98052
}
]
.border__location {
border-bottom: 1px solid #000;
}
1 // default file icon 2 // default document 3 // default exe file 4 // closed folder 5 // opened folder 6 // 5 1/4 disk 7 // 3 1/2 disk 8 // other removeable media 9 // hard drive 10 // network drive 11 // disconnected network drive 12 // cd-rom drive 13 // ram drive 14 // network (globe) 15 // network (mouse) 16 // my computer 17 // printer 18 // network computer 19 // entire network 20 // program group 21 // my recent documents 22 // control panel 23 // find 24 // help 25 // run 26 // good night (old log off?) 27 // undock 28 // shutdown 29 // shared 30 // shortcut 31 // scheduled task overlay 32 // recycle bin empty 33 // recycle bin full 34 // telephony 35 // desktop 36 // old settings 37 // program group, same as 20 38 // old printer 39 // fonts 40 // taskbar properties 41 // music cd 42 // tree 43 // old computer folder 44 // favorites 45 // log off 46 // find in folder 47 // windows update 48 // lock 49 // computer app ? 50 // empty - ignore 51 // empty - ignore 52 // empty - ignore 53 // empty - ignore 54 // old mistery drive 133 // file stack 134 // find files 135 // find computer glyph 137 // control panel, same as 22 138 // printer folder 139 // add printer 140 // network printer 141 // print to file 142 // old recycle bin full 143 // old recycle bin full of folders 144 // old recycle bin full of folders and files 145 // can't copy (overwrite?) file 146 // move to folder 147 // old rename 148 // old settings copy 151 // ini file 152 // txt file 153 // bat file 154 // dll file 155 // font file 156 // true type font file 157 // other font file 160 // run, same as 25 161 // old delete 165 // copy to disk 166 // error checking 167 // defragment 168 // printer ok 169 // network printer ok 170 // printer ok, file 171 // file tree structure 172 // network folder 173 // favorites 174 // old weird folder 175 // network (connect to globe) 176 // add network folder 177 // old htt file 178 // add network 179 // old network terminal thing 180 // screen full 181 // screen empty 182 // folder options: window image with webview 183 // folder options: window image without webview 184 // folder options: open in same window 185 // folder options: open in new window 186 // folder options: click files (link style) 187 // folder options: click files (normal style) 191 // old bin empty 192 // old bin full 193 // network folder 194 // old login (keys) 196 // fax 197 // fax ok 198 // network fax ok 199 // network fax 200 // stop 210 // folder settings 220 // old key users 221 // shutdown (blue circle) 222 // dvd disk 223 // some files 224 // video files 225 // music files 226 // image files 227 // various music/video files 228 // old music disk 229 // hub ? 230 // zip drive 231 // down overlay 232 // down overlay again 233 // other removeable media, same as 8 234 // no disk drive disabled 235 // my documents 236 // my pictures 237 // my music 238 // my videos 239 // msn 240 // delete (webview) 241 // copy (webview) 242 // rename (webview) 243 // files (webview) 244 // globe w/ arrow 245 // printer printing 246 // green arrow (webview) 247 // music (webview) 248 // camera 249 // board 250 // display properties 251 // network images 252 // print images 253 // ok file (webview) 254 // bin empty 255 // green cool arrow (webview) 256 // move 257 // network connection 258 // network drive red thing 259 // network home 260 // write cd (webview) 261 // cd thing (webview) 262 // destroy cd (webview) 263 // help, same as 24 264 // move to folder (webview) 265 // send mail (webview) 266 // move to cd (webview) 267 // shared folder 268 // accessibilty options 269 // users xp 270 // screen palette 271 // add or remove programs 272 // mouse printer 273 // network computers 274 // gear, settings 275 // drive use (piechart) 276 // network calender, syncronise ? 277 // music cpanel 278 // app settings 279 // user xp, same as 269 281 // find files 282 // talking computer 283 // screen keyboard 284 // black thingy 289 // help file 290 // go arrow ie 291 // dvd drive 292 // music+ cd 293 // unknown cd 294 // cd-rom 295 // cd-r 296 // cd-rw 297 // dvd-ram 298 // dvd-r 299 // walkman 300 // cassete drive 301 // smaller cassete drive 302 // cd 303 // red thing 304 // dvd-rom 305 // other removeable media, same as 8 and 233 306 // cards ? 307 // cards ? 2 308 // cards ? 3 309 // camera, same as before 310 // cellphone 311 // network printer globe 312 // jazz drive 313 // zip drive, same as before 314 // pda 315 // scanner 316 // scanner and camera 317 // video camera 318 // dvd-rw, same as before 319 // new folder (red thing) 320 // move to disk (webview) 321 // control panel, third time 322 // start menu favorites (smaller icon) 323 // start menu find (smaller icon) 324 // start menu help (smaller icon) 325 // start menu logoff (smaller icon) 326 // start menu program group (smaller icon) 327 // start menu recent documents (smaller icon) 328 // start menu run (smaller icon) 329 // start menu shutdown (smaller icon) 330 // start menu control panel(smaller icon) 331 // start menu logoff or something (smaller icon) 337 // old lookup phonebook 338 // stop, again 512 // internet explorer 1001 // question 1002 // printer red ok (webview) 1003 // drive ok (webview) 1004 // help file, again 1005 // move file (webview) 1006 // printer file (webview) 1007 // red ok file (webview) 1008 // printer pause (webview) 1009 // printer play (webview) 1010 // shared printer (webview) 1011 // fax, again 8240 // old logoff 16710 // old delete 16715 // old delete 16717 // old delete 16718 // old delete 16721 // old delete
Addus Technologies' Binance clone script is a pre-built, customizable software solution for entrepreneurs and companies looking to establish their own cryptocurrency exchange platform similar to Binance. With complete functionality, easy setup, and white-label solutions, this bug-free, efficient platform ensures smooth integration into the crypto sector. This end-to-end solution allows you to explore the future of crypto trading, observe Binance's success, attract traders, and maximize profits. Trust Addus Technologies for advanced cryptocurrency solutions, and begin your journey now! https://www.addustechnologies.com/binance-clone-script
devopsvent@gmail.com
const fetchMovies = async () => {
// set the loading state to true so the loading indicator is displayed as soon as the function is called
setIsLoading(true);
try {
// endpoint for fetching movies and sorting them by popularity (descending)
const endpoint = `${API_BASE_URL}/discover/movie?sort_by=popularity.desc`;
// calling the endpoint with the API options
const response = await fetch(endpoint, API_OPTIONS);
// parsing the response into a json object
if (!response.ok) {
throw new Error('Failed to fetch movies');
}
const data = await response.json(); // if successful response, parse the data
console.log(data); // just to see what we get from the API (over 48000 pages and almost a million movies)
// if we get no response, set the error message, and set the movies state to an empty array
if(data.Response === 'False') {
setErrorMessage(data.Error || 'Failed to fetch movies');
setMovies([]);
return; // exit out of the function
}
// if we get a response, set the movies state with the fetched data
setMovies(data.results || []);
/*
The empty array in `setMovies(data.results || [])` ensures that the `movies` state is always set to a valid array,
even if the API response does not include the expected `results` property or if it is `null` or `undefined`.
*/
} catch (error) {
console.error(`Error while fetching movies: ${error}`);
setErrorMessage('An error occurred while fetching movies. Please try again later.');
} finally {
// set the loading state to false after the fetch is complete (whether successful or not)
setIsLoading(false);
}
}
::-webkit-scrollbar{width:10px; height:50px;}::-moz-scrollbar{width:10px}::-o-scrollbar{width:10px}::-webkit-scrollbar-thumb{border-radius:10px;background:#7E2671}::-moz-scrollbar-thumb{border-radius:10px;background:#7E2671}::-o-scrollbar-thumb{border-radius:10px;background:#7E2671}
<a href="tel: (888) 994-0894">Call Now (888) 994-0894 </a>
{% for rassicurazione in shop.metaobjects.rassicurazioni.values %}
<div class="rassicurazione-item">
<h3>{{ rassicurazione.mostra_nome }}</h3>
<a href="{{ rassicurazione.url }}">{{ rassicurazione.url }}</a>
<img src="{{ rassicurazione.immagine | file_url }}" alt="{{ rassicurazione.mostra_nome }}">
</div>
{% endfor %}
input#searchInput, input#scoreDropdownInput {
position: unset !important;
}
svg.yotpo-search-icon {
position: absolute !important;
left: -75px !important;
}
Se ingresa al 16.4 Se modifica el web.config de ClientesLK para cambiar la ip 16.2 a 16.4 y se cambia el puerto de 8181 a 8182. Se guarda y se restablece el sitio con IIS. Se prueba ingresando a clientes.logikard.com y este debe redirigir al 8182
#baccaratgame #baccaratgamedevelopment #baccaratgamedevelopmentcompany
What company is best for developing a Baccarat Game?In the ever-evolving world of online casinos, running a successful platform isn’t just about offering a variety of games. It’s about delivering unique, exciting, and unforgettable experiences that players love. With their timeless appeal, Baccarat games remain a cornerstone of casino gaming. However, to stay competitive in the online casino industry, providing a premium baccarat experience is one of the smartest decisions you can make to stand out in a crowded market. Maticz, the leading Baccarat Game development company that delivers top-notch gaming services by creating customized, scalable, and engaging baccarat experiences. They ensure that entrepreneurs stay ahead in this rapidly evolving industry. Their expertise and innovative approach shine through in every baccarat game they develop, ensuring it is perfectly tailored to match your casino’s brand. With high-quality graphics, smooth gameplay, and mobile optimization, we craft a seamless experience that keeps players returning. Their games are built with trust, security, and compliance in mind, ensuring fair, safe, and legally sound options for your players.
#got wget? if yes, then: wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb #no issues? then: sudo dpkg -i google-chrome-stable_current_amd64.deb #issues? then: sudo apt-get install -f #and/or: sudo apt --fix-broken install #happy? then: google-chrome
Sub RenameTXTFiles()
Dim FSO As Object
Dim sourceFolder As Object
Dim file As Object
Dim folderPath As String
Dim newName As String
Dim counter As Integer
' Create a FileSystemObject
Set FSO = CreateObject("Scripting.FileSystemObject")
' Specify the folder path (change this to your desired folder)
folderPath = "C:\Users\sumit\Downloads\"
' Check if the folder exists
If FSO.FolderExists(folderPath) Then
Set sourceFolder = FSO.GetFolder(folderPath)
' Initialize counter
counter = 1
' Loop through each file in the folder
For Each file In sourceFolder.Files
' Check if the file has a .txt extension
If LCase(FSO.GetExtensionName(file.Name)) = "txt" Then
' Create new name (you can modify this format as needed)
newName = "NewFile_" & file.name & ".txt"
' Rename the file
file.Name = newName
Sub RenameMultipleFiles()
Dim ws As Worksheet
Dim FolderPath As String
Dim oldFileName As String
Dim newFileName As String
Dim lastRow As Long
Dim i As Long
Set ws = ActiveSheet
lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row
For i = 2 To lastRow
oldFilePath = ws.Cells(i, 1).Value & "\" & ws.Cells(i, 2).Value
newFilePath = ws.Cells(i, 1).Value & "\" & ws.Cells(i, 3).Value
If Dir(oldFilePath) <> "" Then
Name oldFilePath As newFilePath
Else
MsgBox "File was not found: " & oldFilePath
End If
Next i
MsgBox "Files renaming complete"
End Sub
Option Explicit
Sub CopyFilesFromSubFolders()
Dim FSO As Object
Dim FromPath As String
Dim ToPath As String
Dim FileExt As String
Dim SubFolder As Object
Dim CurrentFile As Object
FromPath = "F:\test\top\" '<= Change to suit
ToPath = "F:\test\everything\" '<= Change to suit
Set FSO = CreateObject("Scripting.FileSystemObject")
For Each SubFolder In FSO.GetFolder(FromPath).SubFolders
For Each CurrentFile In SubFolder.Files
CurrentFile.Copy (FSO.BuildPath(ToPath, CurrentFile.Name))
Next
Next SubFolder
Set FSO = Nothing
Set SubFolder = Nothing
Set CurrentFile = Nothing
MsgBox "Done"
End Sub
# Options AutoCreateDatabase=true Cached=true # Blank: an empty project Blank= # WordPress WordPress=https://wordpress.org/latest.tar.gz # Joomla Joomla=https://github.com/joomla/joomla-cms/releases/download/3.8.11/Joomla_3.8.11-Stable-Full_Package.tar.gz # Prestashop Prestashop=https://github.com/PrestaShop/PrestaShop/releases/download/1.7.4.2/prestashop_1.7.4.2.zip ------------------------------------------------------ # Drupal Drupal 8=https://ftp.drupal.org/files/projects/drupal-8.5.5.tar.gz ### Drupal 7=https://ftp.drupal.org/files/projects/drupal-7.59.tar.gz ------------------------------------------------------ # Laravel Laravel=composer create-project laravel/laravel %s --prefer-dist Laravel 7z=https://github.com/leokhoa/quick-create-laravel/releases/download/5.6.21/laravel-5.6.21.7z ### Laravel dev-develop=composer create-project laravel/laravel %s dev-develop ### Laravel 4=composer create-project laravel/laravel %s 4.2 --prefer-dist Lumen=composer create-project laravel/lumen %s --prefer-dist ------------------------------------------------------ # CakePHP CakePHP=composer create-project --prefer-dist cakephp/app %s # Symfony Symfony=composer create-project symfony/framework-standard-edition %s
- 👋 Hi, I’m @BAHATI44
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Inscription BuloMED">
<meta name="keywords" content="inscription, BuloMED, santé">
<meta name="author" content="Salomo B.M">
<title>Inscription BuloMED</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/css/intlTelInput.css">
<link rel="icon" type="image/png" sizes="32x32" href="BuloMED.PNG">
<!-- Sécurité supplémentaire -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https: 'unsafe-inline' 'unsafe-eval';">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="X-Frame-Options" content="DENY">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.form-wrapper {
position: relative;
padding: 5px;
border-radius: 15px;
background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ff00ff, #ffff00);
background-size: 200% 200%;
animation: gradientAnimation 3s ease infinite;
display: flex;
}
/* Exemple de media queries pour petits écrans */
@media (max-width: 600px) {
.form-container {
width: 90%;
/* Utiliser une largeur en pourcentage pour s'adapter */
max-width: none;
/* Supprimer la limite fixe */
padding: 10px;
/* Réduire les espaces si nécessaire */
}
.form-group input {
width: 100%;
/* Assurer que les inputs prennent toute la largeur disponible */
font-size: 1rem;
/* Ajuster la taille de police pour plus de lisibilité */
}
.button-container {
flex-direction: column;
/* Sur petits écrans, empiler les boutons */
gap: 5px;
}
}
/* Optionnel : règles pour les écrans moyens */
@media (min-width: 601px) and (max-width: 1024px) {
.form-container {
width: 80%;
padding: 12px;
}
.form-group input {
font-size: 1.1rem;
}
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.form-container {
background-color: #7b7c7c;
padding: 15px;
border-radius: 8px;
box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 350px;
position: relative;
z-index: 1;
}
.form-container h2 {
text-align: center;
margin-bottom: 25px;
color: #fff;
}
.form-group {
margin-bottom: 15px;
position: relative;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input {
width: 95%;
padding: 10px;
border: 2px solid #ccc;
border-radius: 8px;
}
.password-toggle {
position: absolute;
right: 10px;
top: 35px;
cursor: pointer;
}
.loading-spinner {
display: none;
border: 3px solid #f3f3f3;
border-top: 3px solid #4CAF50;
border-radius: 50%;
width: 20px;
height: 20px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Nouveau style pour aligner les boutons côte à côte */
.button-container {
display: flex;
justify-content: space-between;
gap: 10px;
}
.button-container button {
flex: 1;
}
/* Style du popup de succès */
.success-popup {
display: none;
position: fixed;
top: 20px;
right: 20px;
background-color: #4CAF50;
color: white;
padding: 15px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
</style>
</head>
<body>
<div class="form-wrapper">
<div class="form-container">
<h2>Inscription</h2>
<form id="registrationForm">
<div class="form-group">
<label for="username">Nom d'utilisateur</label>
<input type="text" id="username" name="username" maxlength="50" placeholder="Saisir le nom D'utilisateur" required>
<div class="error" id="usernameError"></div>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" maxlength="50" placeholder="Saisir l'Email" required>
<div class="error" id="emailError"></div>
</div>
<div class="form-group">
<label for="password">Mot de passe</label>
<input type="password" id="password" name="password" maxlength="50" placeholder="Saisir Votre Mot de Passe" required>
<i class="fa fa-eye password-toggle" id="togglePassword"></i>
<div class="password-strength" id="passwordStrength"></div>
<div class="error" id="passwordError"></div>
</div>
<div class="form-group">
<label for="phone">Numéro de téléphone</label>
<input type="tel" id="phone" name="phone" maxlength="13" required>
<div class="error" id="phoneError"></div>
</div>
<!-- Conteneur pour les deux boutons -->
<div class="button-container">
<button type="submit">
<span class="button-text">S'inscrire</span>
<div class="loading-spinner"></div>
</button>
<button type="button" id="loginButton">Se connecter</button>
</div>
</form>
</div>
</div>
<!-- Popup de succès -->
<div id="successPopup" class="success-popup">Connexion réussie !</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/intlTelInput.min.js"></script>
<script>
// Empêcher le clic droit pour bloquer l'accès au menu contextuel
document.addEventListener('contextmenu', function(e) {
e.preventDefault();
return false;
});
// Bloquer les raccourcis clavier (Ctrl+Shift+I, Ctrl+U, F12, etc.)
document.addEventListener('keydown', function(e) {
if (e.ctrlKey || e.keyCode === 123 || e.keyCode === 85) {
e.preventDefault();
return false;
}
});
// Détection des outils de développement
setInterval(function() {
if (window.outerWidth - window.innerWidth > 100 ||
window.outerHeight - window.innerHeight > 100) {
window.location.href = "about:blank";
}
}, 1000);
// Empêcher la sélection de texte
document.body.style.userSelect = 'none';
document.body.style.webkitUserSelect = 'none';
// Initialisation des éléments du formulaire
document.addEventListener('DOMContentLoaded', function() {
const phoneInput = document.getElementById('phone');
const passwordInput = document.getElementById('password');
const passwordStrength = document.getElementById('passwordStrength');
const togglePassword = document.getElementById('togglePassword');
const form = document.getElementById('registrationForm');
const loginButton = document.getElementById('loginButton');
const successPopup = document.getElementById('successPopup');
// Initialisation du sélecteur de numéro de téléphone
if (window.intlTelInput) {
const iti = window.intlTelInput(phoneInput, {
initialCountry: "auto",
utilsScript: "https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/utils.js"
});
} else {
console.error("intlTelInput library is not loaded correctly.");
}
// Vérification de la force du mot de passe
passwordInput.addEventListener('input', function() {
const hasMixedCase = /(?=.*[a-z])(?=.*[A-Z])/.test(this.value);
const hasNumbers = /\d/.test(this.value);
const hasSpecial = /[!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/?]/.test(this.value);
if (hasMixedCase && hasNumbers && hasSpecial) {
passwordStrength.className = 'password-strength strong';
} else if ((hasMixedCase && hasNumbers) || (hasNumbers && hasSpecial)) {
passwordStrength.className = 'password-strength medium';
} else {
passwordStrength.className = 'password-strength weak';
}
});
// Basculer la visibilité du mot de passe
togglePassword.addEventListener('click', function() {
const type = passwordInput.type === 'password' ? 'text' : 'password';
passwordInput.type = type;
this.classList.toggle('fa-eye-slash');
});
// Gestion de la soumission du formulaire
form.addEventListener('submit', function(event) {
event.preventDefault();
const button = form.querySelector('button[type="submit"]');
button.disabled = true;
button.querySelector('.loading-spinner').style.display = 'inline-block';
button.querySelector('.button-text').textContent = 'Traitement...';
// Simuler un traitement de 1,5 seconde
setTimeout(() => {
button.querySelector('.loading-spinner').style.display = 'none';
button.disabled = false;
button.querySelector('.button-text').textContent = 'S\'inscrire';
// Afficher le popup de succès
successPopup.style.display = 'block';
setTimeout(() => {
successPopup.style.display = 'none';
}, 3000);
// Redirection vers la page d'accueil après 3 secondes
setTimeout(() => {
window.location.href = 'accueil.html';
}, 3000);
}, 1500);
});
// Navigation vers la page de connexion
loginButton.addEventListener('click', function() {
window.location.href = 'connexion.html';
});
});
</script>
</body>
</html>
Public gFolders As String
Public Sub GetFolderNames()
Dim oSession As Outlook.NameSpace
Dim oFolder As Outlook.MAPIFolder
Dim oNewMail As Outlook.mailItem
Set oSession = Outlook.Application.GetNamespace("MAPI")
Set oFolder = oSession.PickFolder
If (oFolder Is Nothing) Then Exit Sub
ProcessFolder oFolder
Set oNewMail = Application.CreateItem(olMailItem)
oNewMail.Body = gFolders
oNewMail.Display
gFolders = ""
End Sub
Sub ProcessFolder(CurrentFolder As Outlook.MAPIFolder)
Dim i As Long
Dim oSubFolder As Outlook.MAPIFolder
Dim oFolder As Outlook.MAPIFolder
Dim sFolderPaths As String
For i = CurrentFolder.Folders.Count To 1 Step -1
Set oFolder = CurrentFolder.Folders(i)
sFolderPaths = oFolder.FolderPath
gFolders = gFolders & vbCrLf & sFolderPaths & " " & oFolder.Items.Count
Next
For Each oSubFolder In CurrentFolder.Folders
If oSubFolder.Name <> "Deleted Items" Then
ProcessFolder oSubFolder
End If
Next
End Sub
Private Sub CommandButton2_Click()
Dim a As Attachments
Dim myitem As Folder
Dim myitem1 As MailItem
Dim j As Long
Dim i As Integer
Set myitem = Session.GetDefaultFolder(olFolderDrafts)
For i = 1 To myitem.Items.Count
If myitem.Items(i) = test1 Then
Set myitem1 = myitem.Items(i)
Set a = myitem1.Attachments
MsgBox a.Count
' added this code
For j = 1 To myitem1.Attachments.Count
MsgBox myitem1.Attachments.Item(i).DisplayName ' or .Filename
Next j
End If
Next i
End Sub
Option Explicit
Private lRow As Long, x As Date, oWS As Worksheet
Sub GetFromInbox()
Const olFolderInbox = 6
Dim olApp As Object, olNs As Object
Dim oRootFldr As Object ' Root folder to start
Dim lCalcMode As Long
Set olApp = CreateObject("Outlook.Application")
Set olNs = olApp.GetNamespace("MAPI")
Set oRootFldr = olNs.GetDefaultFolder(olFolderInbox).Folders("PRE Customer")
Set oWS = ActiveSheet
x = Date
lRow = 1
lCalcMode = Application.Calculation
Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
GetFromFolder oRootFldr
Application.ScreenUpdating = True
Application.Calculation = lCalcMode
Set oWS = Nothing
Set oRootFldr = Nothing
Set olNs = Nothing
Set olApp = Nothing
End Sub
Private Sub GetFromFolder(oFldr As Object)
Dim oItem As Object, oSubFldr As Object
' Process all mail items in this folder
For Each oItem In oFldr.Items
If TypeName(oItem) = "MailItem" Then
Sub RemoveProtection()
Dim dialogBox As FileDialog
Dim sourceFullName As String
Dim sourceFilePath As String
Dim sourceFileName As String
Dim sourceFileType As String
Dim newFileName As Variant
Dim tempFileName As String
Dim zipFilePath As Variant
Dim oApp As Object
Dim FSO As Object
Dim xmlSheetFile As String
Dim xmlFile As Integer
Dim xmlFileContent As String
Dim xmlStartProtectionCode As Double
Dim xmlEndProtectionCode As Double
Dim xmlProtectionString As String
'Open dialog box to select a file
Set dialogBox = Application.FileDialog(msoFileDialogFilePicker)
dialogBox.AllowMultiSelect = False
dialogBox.Title = "Select file to remove protection from"
If dialogBox.Show = -1 Then
sourceFullName = dialogBox.SelectedItems(1)
Else
Exit Sub
End If
'Get folder path, file type and file name from the sourceFullName
sourceFilePath = Left(sourceFullName, InStrRev(sourceFullName, "\"))
sourceFileType = Mid(sourceFullName, InStrRev(sourceFullName, ".") + 1)
sourceFileName = Mid(sourceFullName, Len(sourceFilePath) + 1)
sourceFileName = Left(sourceFileName, InStrRev(sourceFileName, ".") - 1)
'Use the date and time to create a unique file name
tempFileName = "Temp" & Format(Now, " dd-mmm-yy h-mm-ss")
'Copy and rename original file to a zip file with a unique name
newFileName = sourceFilePath & tempFileName & ".zip"
On Error Resume Next
FileCopy sourceFullName, newFileName
If Err.Number <> 0 Then
MsgBox "Unable to copy " & sourceFullName & vbNewLine _
& "Check the file is closed and try again"
Exit Sub
End If
On Error GoTo 0
'Create folder to unzip to
zipFilePath = sourceFilePath & tempFileName & "\"
MkDir zipFilePath
'Extract the files into the newly created folder
Set oApp = CreateObject("Shell.Application")
oApp.Namespace(zipFilePath).CopyHere oApp.Namespace(newFileName).items
'loop through each file in the \xl\worksheets folder of the unzipped file
xmlSheetFile = Dir(zipFilePath & "\xl\worksheets\*.xml*")
Do While xmlSheetFile <> ""
'Read text of the file to a variable
xmlFile = FreeFile
Open zipFilePath & "xl\worksheets\" & xmlSheetFile For Input As xmlFile
xmlFileContent = Input(LOF(xmlFile), xmlFile)
Close xmlFile
'Manipulate the text in the file
xmlStartProtectionCode = 0
xmlStartProtectionCode = InStr(1, xmlFileContent, "<sheetProtection")
If xmlStartProtectionCode > 0 Then
xmlEndProtectionCode = InStr(xmlStartProtectionCode, _
xmlFileContent, "/>") + 2 '"/>" is 2 characters long
xmlProtectionString = Mid(xmlFileContent, xmlStartProtectionCode, _
xmlEndProtectionCode - xmlStartProtectionCode)
xmlFileContent = Replace(xmlFileContent, xmlProtectionString, "")
End If
'Remove Range Protection
xmlStartProtectionCode = 0
xmlStartProtectionCode = InStr(1, xmlFileContent, "<protectedRanges")
If xmlStartProtectionCode > 0 Then
xmlEndProtectionCode = InStr(xmlStartProtectionCode, _
xmlFileContent, "</protectedRanges>") + 18 '"</protectedRanges>" is 18 characters long
xmlProtectionString = Mid(xmlFileContent, xmlStartProtectionCode, _
xmlEndProtectionCode - xmlStartProtectionCode)
xmlFileContent = Replace(xmlFileContent, xmlProtectionString, "")
End If
'Output the text of the variable to the file
xmlFile = FreeFile
Open zipFilePath & "xl\worksheets\" & xmlSheetFile For Output As xmlFile
Print #xmlFile, xmlFileContent
Close xmlFile
'Loop to next xmlFile in directory
xmlSheetFile = Dir
Loop
'Read text of the xl\workbook.xml file to a variable
xmlFile = FreeFile
Open zipFilePath & "xl\workbook.xml" For Input As xmlFile
xmlFileContent = Input(LOF(xmlFile), xmlFile)
Close xmlFile
'Manipulate the text in the file to remove the workbook protection
xmlStartProtectionCode = 0
xmlStartProtectionCode = InStr(1, xmlFileContent, "<workbookProtection")
If xmlStartProtectionCode > 0 Then
xmlEndProtectionCode = InStr(xmlStartProtectionCode, _
xmlFileContent, "/>") + 2 ''"/>" is 2 characters long
xmlProtectionString = Mid(xmlFileContent, xmlStartProtectionCode, _
xmlEndProtectionCode - xmlStartProtectionCode)
xmlFileContent = Replace(xmlFileContent, xmlProtectionString, "")
End If
'Manipulate the text in the file to remove the modify password
xmlStartProtectionCode = 0
xmlStartProtectionCode = InStr(1, xmlFileContent, "<fileSharing")
If xmlStartProtectionCode > 0 Then
xmlEndProtectionCode = InStr(xmlStartProtectionCode, xmlFileContent, _
"/>") + 2 '"/>" is 2 characters long
xmlProtectionString = Mid(xmlFileContent, xmlStartProtectionCode, _
xmlEndProtectionCode - xmlStartProtectionCode)
xmlFileContent = Replace(xmlFileContent, xmlProtectionString, "")
End If
'Output the text of the variable to the file
xmlFile = FreeFile
Open zipFilePath & "xl\workbook.xml" & xmlSheetFile For Output As xmlFile
Print #xmlFile, xmlFileContent
Close xmlFile
'Create empty Zip File
Open sourceFilePath & tempFileName & ".zip" For Output As #1
Print #1, Chr$(80) & Chr$(75) & Chr$(5) & Chr$(6) & String(18, 0)
Close #1
'Move files into the zip file
oApp.Namespace(sourceFilePath & tempFileName & ".zip").CopyHere _
oApp.Namespace(zipFilePath).items
'Keep script waiting until Compressing is done
On Error Resume Next
Do Until oApp.Namespace(sourceFilePath & tempFileName & ".zip").items.Count = _
oApp.Namespace(zipFilePath).items.Count
Application.Wait (Now + TimeValue("0:00:01"))
Loop
On Error GoTo 0
'Delete the files & folders created during the sub
Set FSO = CreateObject("scripting.filesystemobject")
FSO.deletefolder sourceFilePath & tempFileName
'Rename the final file back to an xlsx file
Name sourceFilePath & tempFileName & ".zip" As sourceFilePath & sourceFileName _
& "_" & Format(Now, "dd-mmm-yy h-mm-ss") & "." & sourceFileType
'Show message box
MsgBox "The workbook and worksheet protection passwords have been removed.", _
vbInformation + vbOKOnly, Title:="Password protection"
End Sub
{
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": ":shiba-love: Boost Days - What's On This Week :shiba-love:"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "\n\n Good morning Melbourne,\n\n Please see what's on for the week below!"
}
},
{
"type": "divider"
},
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Xero Café :coffee:",
"emoji": true
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "\n :new-thing: *This week we are offering:* \n\n :rose: Valentines Cupcakes \n\n *Weekly Café Special:* _Caramel Macchiato_"
}
},
{
"type": "header",
"text": {
"type": "plain_text",
"text": " Wednesday, 12th February :calendar-date-12:",
"emoji": true
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": " \n\n :lunch: *Light Lunch*: Provided by Kartel Catering from *12pm* in the L3 Kitchen & Wominjeka Breakout Space. \n\n"
}
},
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Thursday, 13th February :calendar-date-13:",
"emoji": true
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":breakfast: *Breakfast*: Provided by *Kartel Catering* from *8:30am - 10:30am* in the Wominjeka Breakout Space. \n\n"
}
},
{
"type": "header",
"text": {
"type": "plain_text",
"text": "Friday, 14th February :14thfeb:",
"emoji": true
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": ":stevevamos: *9am - 10am:* Speaker Series Event with Steve Vamos \n\n :hands: *10am - 10:30am:* Global All Hands streaming in the Wominjeka Breakout Space"
}
},
{
"type": "divider"
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Stay tuned for more fun throughout the year. \n\n Love, WX :party-wx:"
}
}
]
}
// Create the button element
const button = document.createElement('button');
// Set button properties (optional)
button.textContent = 'Click Me';
button.id = 'myButton';
button.style.backgroundColor = 'lightblue';
button.style.padding = '10px 20px';
button.style.border = 'none';
button.style.borderRadius = '5px';
button.style.cursor = 'pointer';
// Add an event listener (optional)
button.addEventListener('click', function() {
alert('Button clicked!');
});
// Append the button to the body or any other element
document.body.appendChild(button);
# PHP # https://windows.php.net/download/ # NTS = Non Thread Safe *PHP-8.4=https://windows.php.net/downloads/releases/php-8.4.1-nts-Win32-vs17-x64.zip *PHP-8.3=https://windows.php.net/downloads/releases/php-8.3.14-nts-Win32-vs16-x64.zip *PHP-8.2=https://windows.php.net/downloads/releases/php-8.2.26-nts-Win32-vs16-x64.zip *PHP-8.1=https://windows.php.net/downloads/releases/php-8.1.31-nts-Win32-vs16-x64.zip --- # Node.js # https://nodejs.org/en/download/prebuilt-binaries/current node-23=https://nodejs.org/dist/v23.4.0/node-v23.4.0-win-x64.zip node-22=https://nodejs.org/dist/v22.12.0/node-v22.12.0-win-x64.zip --- # phpMyAdmin # After download, visit -> http://localhost/phpmyadmin phpmyadmin=https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.zip # DB Tools DBeaver=https://dbeaver.io/files/dbeaver-ce-latest-win32.win32.x86_64.zip # Menu > Tools > DBeaver --- # MySQL # https://dev.mysql.com/downloads/mysql/ mysql-9.1=https://dev.mysql.com/get/Downloads/MySQL-9.1/mysql-9.1.0-winx64.zi
Sun Feb 09 2025 08:35:48 GMT+0000 (Coordinated Universal Time) https://adultiptv.net/
Sun Feb 09 2025 07:46:24 GMT+0000 (Coordinated Universal Time) https://github.com/vercel/ai-chatbot
Sun Feb 09 2025 06:24:31 GMT+0000 (Coordinated Universal Time) https://www.google.com/search?q
Sun Feb 09 2025 05:18:51 GMT+0000 (Coordinated Universal Time) https://dzone.com/articles/ceate-a-login-system-using-html-php-and-mysql
Sat Feb 08 2025 16:12:42 GMT+0000 (Coordinated Universal Time) https://www.thiscodeworks.com/extension/initializing?newuser
Sat Feb 08 2025 11:27:08 GMT+0000 (Coordinated Universal Time) https://dkzelenograd.ru/afisha/spektakli/rok-opera-yunona-i-avos
Sat Feb 08 2025 09:42:02 GMT+0000 (Coordinated Universal Time) https://bank118.com/%D8%B1%D8%A8%D8%A7%D8%AA-%D9%88%D8%A7%D8%AA%D8%B3%D8%A7%D9%BE/
Sat Feb 08 2025 08:44:01 GMT+0000 (Coordinated Universal Time) https://superuser.com/questions/1406594/is-there-a-reference-for-the-full-list-of-windows-10-shell-icon-numbers
Sat Feb 08 2025 06:17:29 GMT+0000 (Coordinated Universal Time) https://www.addustechnologies.com/binance-clone-script
Sat Feb 08 2025 00:31:07 GMT+0000 (Coordinated Universal Time) https://www.youtube.com/watch?v=dCLhUialKPQ&t=1478s
Fri Feb 07 2025 12:39:39 GMT+0000 (Coordinated Universal Time) https://appticz.com/lyft-clone-app
Fri Feb 07 2025 12:08:15 GMT+0000 (Coordinated Universal Time) https://maticz.com/baccarat-game-development
@austinparker #baccaratgame #baccaratgamedevelopment #baccaratgamedevelopmentcompany
Fri Feb 07 2025 11:23:09 GMT+0000 (Coordinated Universal Time) https://www.wikihow.com/Install-Google-Chrome-Using-Terminal-on-Linux
Fri Feb 07 2025 08:40:35 GMT+0000 (Coordinated Universal Time) https://trumpexcel.com/excel-vba/rename-files/
Fri Feb 07 2025 08:40:27 GMT+0000 (Coordinated Universal Time) https://trumpexcel.com/excel-vba/rename-files/
Fri Feb 07 2025 07:07:13 GMT+0000 (Coordinated Universal Time) https://laragon.org/docs/quick-app
Fri Feb 07 2025 06:05:38 GMT+0000 (Coordinated Universal Time) https://github.com/
Fri Feb 07 2025 05:38:23 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/11809782/list-the-filenames-of-attachments
Fri Feb 07 2025 05:36:56 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/23746344/how-to-retrieve-emails-from-outlook-using-excel-vba
Fri Feb 07 2025 05:24:58 GMT+0000 (Coordinated Universal Time) https://exceloffthegrid.com/removing-cracking-excel-passwords-with-vba/
Fri Feb 07 2025 01:05:53 GMT+0000 (Coordinated Universal Time) https://github.com/leokhoa/laragon/releases


