Skip to content

Instantly share code, notes, and snippets.

View cygmris's full-sized avatar

Chris cygmris

View GitHub Profile
@mdziekon
mdziekon / xps_15_9570__dualboot_with_encryption__notes.md
Last active October 28, 2024 23:32
XPS 15 9570 - DualBoot with Encryption (Windows 10 with BitLocker + Ubuntu 18.04 with LVM on LUKS)
  • Based on https://askubuntu.com/a/293029/286776
  • Installation date: 15-09-2018
  • Additional notes based on my own experience
  • The process describes a completely fresh installation with a complete repartitioning, however it should work fine when Windows is already installed (eg. brand new machine with Windows preinstalled).
  • The process was conducted on Dell's XPS 15 9570 (2018) with specs:
    • CPU: i7-8750H
    • Screen: 4K with Touch
    • RAM: 16 GB (original) / 32 GB (manually upgraded)
  • Drive: 512 GB (SK Hynix PC401)
@jaeko44
jaeko44 / VirtEngine Installation
Created July 22, 2018 19:35
Install VirtEngine Ubuntu 16.04 & OpenNebula 5.6
Information:
[VirtEngine Website](https://virtengine.com)
[Public Cloud.tc Multi-Provider](https://cloud.tc)
[VirtEngine Installation](https://docs.virtengine.com)
[OpenNebula 5.6 Installation](https://docs.opennebula.org/5.6/deployment/node_installation/kvm_node_installation.html)
# Prep System:
apt-get update
@psachin
psachin / dhajare.sh
Last active September 2, 2018 16:09
dhajare.sh
rm file1.txt
for i in `openstack server list -f value -c Name`; do
SERVER_DETAIL=$(openstack server show inst2 -c created -c flavor -c project_id -f value | tr '\r\n' ' ')
created=$(echo $SERVER_DETAIL | awk '{print $1}')
flavor=$(echo $SERVER_DETAIL | awk '{print $2}')
project_id=$(echo $SERVER_DETAIL | awk '{print $4}')
FLAVOR_DETAIL=$(openstack flavor show $flavor -f value -c disk -c ram -c vcpus)
disk_size_gb=$(echo $FLAVOR_DETAIL | awk '{print $1}')
ram_mb=$(echo $FLAVOR_DETAIL | awk '{print $2}')
cpus=$(echo $FLAVOR_DETAIL | awk '{print $3}')

Ubuntu/Mint Install Nvidia Drivers GTX950-GTX TITAN X 2016

See https://www.youtube.com/watch?v=cVTsemATIyI

Ajoutée le 28 août 2015

This tutorial was made for the GTX 950, GTX 960, GTX 970, GTX 980, GTX 980 Ti, and GTX TITAN X.

UPDATE: I have updated the commands in here with the most recent driver Nvidia recommends for the GTX950-GTX TITAN X This guide will help you set up your Nvidia graphics card even if you boot to a blank sceen or are completely locked out of your GUI.

@BugRoger
BugRoger / volumes.sh
Created April 13, 2018 15:02
Nova Volume Mount Error Reproduction
#!/bin/bash
COUNT=2
PREFIX=dup
function openstack {
docker run \
-e http_proxy= \
-e https_proxy= \
-e no_proxy= \
@ThinGuy
ThinGuy / os_functions.sh
Created February 19, 2018 19:04
Basic openstack tests as functions
####OpenStack Test Functions######
#This file should be sourced, not ran
###Prettyfication section####
tstatus() {
RC=$(echo $?)
[[ $RC -eq 0 ]] && { printf '\e[75G\e[1;37m[ \e[1;32mOK\e[1;37m ]\e[0m\n';return $RC; }
[[ $RC -eq 1 ]] && { printf '\e[75G\e[1;37m[\e[1;31mFAIL\e[1;37m]\e[0m\n';return $RC; }
}
@sistemawebpro
sistemawebpro / .block
Last active December 14, 2019 14:51
d3.js v4 + Vue.js v2 - map + zoom + mark + drag
license: mit
@rveciana
rveciana / .block
Last active November 13, 2018 07:20
D3js v4 map zooming
licence: mit
@rstarmer
rstarmer / project_create.sh
Created May 5, 2017 10:46
Basic model for building an openstack project
#!/bin/bash
#
# This script is meant to be run once after running start for the first
# time. This script downloads a cirros image and registers it. Then it
# configures networking and nova quotas to allow 40 m1.small instances
# to be created.
IMAGE_URL=https://cloud-images.ubuntu.com/trusty/current/
IMAGE=trusty-server-cloudimg-amd64-disk1.img
IMAGE_NAME=Ubuntu1404
@calebklc
calebklc / My Manjaro Linux (GNOME) Web Development Environment Setup.md
Last active September 23, 2023 03:02
My Manjaro Linux (GNOME) Web Development Environment Setup