- Navigate to IAM within the AWS Console.
- Create a new user. For this example instructions, we'll set the username to be
test-user-dev
. For AWS access type, just check theProgrammatic access
checkbox. - Create a new group to use for developers to have access to one or more repositories. For this example, we'll create a new group called
dev-team
. Attach theAWSCodeCommitPowerUser
policy to this new group. - Click through the other defaults to create the new user.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Radeon 6000 series Graphics on Linux Mint | |
## Note: ensure nomodeset is not in your Grub config. Check/modify via `sudo bash -c "xed admin:///etc/default/grub"`. | |
## Note2: May have issues with games starting or saving to the cloud, such as Death Stranding. If that's the case, delete the data install. For example, for Death Stranding, execute "rm -rf ~/.steam/debian-installation/steamapps/compatdata/1190460" | |
## Todo: Need to -> purge amdgpu* as pre-caution? | |
sudo bash -c "add-apt-repository --remove ppa:oibaf/graphics-drivers" # just in case this is here, get rid of it | |
sudo bash -c "add-apt-repository ppa:kisak/kisak-mesa" | |
sudo bash -c "apt update && apt upgrade" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Simple ETL example | |
# Just extracting one table from a database and loading it into another | |
# Adapted from https://www.linkedin.com/pulse/easy-etl-python-beginners-oscar-valles | |
# Pre-req is Docker. If you are a savage and haven't used Docker yet, here are the install instructions on any disto with Ubuntu as the base: | |
# . /etc/os-release; RELEASE=$UBUNTU_CODENAME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git clone https://github.com/cilynx/rtl88x2BU_WiFi_linux_v5.3.1_27678.20180430_COEX20180427-5959 | |
cd rtl88x2BU* | |
make | |
sudo bash -c "make install" | |
sudo bash -c "modprobe 88x2bu" | |
sudo bash -c "apt install linux-headers-$(uname -r)" | |
sudo bash -c "cp -R . /usr/src/rtl88x2bu-5.3.1" |
- Use built in gnome-disks app to create the partition image.
- Note the size of actual contents. I.e., for the 500GB partition you just cloned, the actual contents might have been only 20 GB. We'll use this number to make sense of the 'truncate' command in step 3.
- Force partition size of actual contents:
sudo modprobe loop
sudo losetup -f # use the loop device returned. For this example, we'll use /dev/loop1
sudo losetup /dev/loop1 my-mintbox.img
sudo partprobe /dev/loop1
sudo gparted /dev/loop1 # while in gparted, unmount /dev/loop1 and re-size by moving slider all the way to size of actual contents. Apply!
sudo losetup -d /dev/loop1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install git cmake | |
git clone https://github.com/ptitSeb/box86.git | |
cd box86 | |
mkdir build && cd build && cmake .. -DRPI4=1 && make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Github deleting scripts? | |
Can't find my original linux-devel-setup.sh. Damn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a makefile for Andy Grind's Sonic 1 disassebly fork (https://github.com/andwn/s1disasm) | |
# and works with the Linux/Windows toolchain creaed from my script:that works with my toolchain. | |
# Script for my Linux toolchain -> https://gist.github.com/WillSams/c4cbf6235b467d8b595693969342237e | |
# Script for my Windows toolchain -> https://gist.github.com/WillSams/f592f9d494b51119945440f7e91079b0 | |
GENDEV=/opt/m68k | |
AS = $(GENDEV)/bin/m68k-elf-as | |
LD = $(GENDEV)/bin/m68k-elf-ld |
Hard to find good information on the Interwebs about this. See below on how to do this correctly:
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<PackageId>Otter</PackageId>
<Version>0.9.6-20200417</Version>
<IncludeAssets>all</IncludeAssets>
</PropertyGroup>