- load module
module load singularity/3.9.5
- pull container
singularity pull tensorflow-notebook.sif docker://jupyter/tensorflow-notebook
module load singularity/3.9.5
singularity pull tensorflow-notebook.sif docker://jupyter/tensorflow-notebook
#!/bin/bash | |
clear && cat << EOF | |
##########################################| WARNING |########################################## | |
!THIS SCRIPT WILL DELETE ALL COMMIT HISTORY AND PUSH A NEW INITIAL COMMIT. | |
Make sure you really want to do this before proceeding. | |
##########################################| WARNING |########################################## |
alias loadsh="source ~/.zshrc" | |
alias rmgit="bash /Users/ive/works/tmp/scripts/remove_git_history.sh" | |
alias chore="git add . && git commit -m 'chore ~' && git push" | |
alias stree="tree -I '.git|__pycache__|.idea|venv|.venv|node_modules' -a -C -s -h --du" |
A1,A2,A3,A4,A5,A6,A7,A8,A9,A10,A11,A12,A13,A14,C | |
39, State-gov,77516, Bachelors,13, Never-married, Adm-clerical, Not-in-family, White, Male,2174,0,40, United-States, <=50K | |
50, Self-emp-not-inc,83311, Bachelors,13, Married-civ-spouse, Exec-managerial, Husband, White, Male,0,0,13, United-States, <=50K | |
38, Private,215646, HS-grad,9, Divorced, Handlers-cleaners, Not-in-family, White, Male,0,0,40, United-States, <=50K | |
53, Private,234721, 11th,7, Married-civ-spouse, Handlers-cleaners, Husband, Black, Male,0,0,40, United-States, <=50K | |
28, Private,338409, Bachelors,13, Married-civ-spouse, Prof-specialty, Wife, Black, Female,0,0,40, Cuba, <=50K | |
37, Private,284582, Masters,14, Married-civ-spouse, Exec-managerial, Wife, White, Female,0,0,40, United-States, <=50K | |
49, Private,160187, 9th,5, Married-spouse-absent, Other-service, Not-in-family, Black, Female,0,0,16, Jamaica, <=50K | |
52, Self-emp-not-inc,209642, HS-grad,9, Married-civ-spouse, Exec-managerial, Husband, White, Male,0,0,45, United-States, >50K | |
31, Private,45781, |
Trunk-based development is a source-control branching model where developers collaborate on code in a single branch called the "trunk" or "mainline." This model emphasizes continuous integration and frequent merging of code changes into the trunk to ensure that the codebase remains in a deployable state.
Image Source: Trunk-Based Development
main
or trunk
).#!/bin/bash | |
clear && cat << EOF | |
##########################################| WARNING |########################################## | |
!THIS SCRIPT WILL DELETE ALL COMMIT HISTORY AND PUSH A NEW INITIAL COMMIT. | |
Make sure you really want to do this before proceeding. | |
##########################################| WARNING |########################################## |
using System; | |
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
/// <summary> | |
/// Monitors and displays debug logs in a Unity application. | |
/// </summary> | |
public class Debugger : MonoBehaviour | |
{ |
%YAML 1.1 | |
%TAG !u! tag:unity3d.com,2011: | |
--- !u!114 &1 | |
MonoBehaviour: | |
m_ObjectHideFlags: 52 | |
m_CorrespondingSourceObject: {fileID: 0} | |
m_PrefabInstance: {fileID: 0} | |
m_PrefabAsset: {fileID: 0} | |
m_GameObject: {fileID: 0} | |
m_Enabled: 1 |
clear: | |
find . -name "__pycache__" -exec rm -rf {} \; | |
find . -name ".DS_Store" -exec rm -rf {} \; | |
fetp: | |
git fetch && git pull | |
save: | |
git add . && git commit -m "$(msg)" && git push |