Skip to content

Instantly share code, notes, and snippets.

View tghastings's full-sized avatar
🎯
Focusing

Tom Hastings tghastings

🎯
Focusing
View GitHub Profile
@tghastings
tghastings / January 16, 2023.md
Last active December 9, 2023 16:49
New Paper in IEEE: Continuous Verification of Open Source...

A new research paper published in support of the Ph.D: Continuous Verification of Open Source Components in a World of Weak Links https://ieeexplore.ieee.org/abstract/document/9985184 Abstract:

We are heading for a perfect storm, making open source software poisoning and next-generation supply chain attacks much easier to execute, which could have major im-plications for organizations. The widespread adoption of open source (99% of today's software utilizes open source), the ease of today's package managers, and the best practice of implementing continuous delivery for software projects provide an unprece-dented opportunity for attack. Once an adversary compromises a project, they can deploy malicious code into production under the auspicious of a software patch. Downstream projects will ingest the compromised patch, and now those projects are potentially running the malicious code. The impact could be implementing backdoors, gathering intelligenc

@tghastings
tghastings / gist:ac1cf4e1f06988791355156d708a8642
Created August 23, 2022 19:40
Remarkable2 Discount Code - Save $40
https://remarkable.com/referral/75UR-RK9Y

Hello World!

Tux, the Linux mascot

language: ruby
cache: bundler
bundler_args: --without production
rvm:
- 2.7.0
before_install:
- gem install bundler:2.2.11
[root@harper (/srv/docker/nginx/config)]# cat nginx.conf
worker_processes 5; ## Default: 1
error_log logs/error.log;
pid logs/nginx.pid;
worker_rlimit_nofile 8192;
events {
worker_connections 4096; ## Default: 1024
}
docker-compose.yml
version: '2.1'
services:
gitlab:
image: gitlab/gitlab-ce:latest
privileged: true
environment:
GITLAB_OMNIBUS_CONFIG: |
language: ruby
cache: bundler
bundler_args: --without production
rvm:
- 2.5.7
before_install:
- gem install bundler:2.0.2
@tghastings
tghastings / jira-docker-compose.yml
Last active September 18, 2020 18:57
jira-docker-compose.yml
version: '3'
services:
jira:
image: atlassian/jira-software
depends_on:
- postgresql
container_name: jira
restart: always
ports:
- '80:8080'
language: ruby
cache: bundler
bundler_args: --without production
rvm:
- 2.5.7
before_install:
- gem install bundler:2.0.2
@tghastings
tghastings / centos.install.boost.md
Created April 15, 2019 18:16 — forked from 1duo/centos.install.boost.md
Install Boost library from source on CentOS 7.

Download Boost Library: http://www.boost.org (Choose the expected version)

wget https://cfhcable.dl.sourceforge.net/project/boost/boost/1.54.0/boost_1_54_0.tar.gz
wget https://phoenixnap.dl.sourceforge.net/project/boost/boost/1.58.0/boost_1_58_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.64.0/source/boost_1_64_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.gz
wget https://dl.bintray.com/boostorg/release/1.67.0/source/boost_1_67_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz
wget https://dl.bintray.com/boostorg/release/1.69.0/source/boost_1_69_0.tar.gz