- load module
module load singularity/3.9.5
- pull container
singularity pull tensorflow-notebook.sif docker://jupyter/tensorflow-notebook
[ | |
{ | |
"zipCode": "10100", | |
"subDistrictList": [ | |
{ | |
"subDistrictId": "100801", | |
"districtId": "1008", | |
"provinceId": "10", | |
"subDistrictName": "ป้อมปราบ" |
<arasblitzscene> | |
<data fileversion="1.0" exeversion="1.0.0.10" /> | |
<canvas clr="255,255,255,255" panX="-340.644" panY="292.1199" /> | |
<grid gclrclr="255,135,206,235" aclrclr="255,255,0,0" space="10" t="0" axisv="F" v="F" lclr="F" pX="0" pY="0" sizeX="3420.006" sizeY="2178.004" /> | |
<scene posX="0" posY="0" theta="0" scalex="1" scaley="1"> | |
<layers count="2" activendx="1"> | |
<layer name="Google Map" visible="T" locked="F" paint="F" posX="0" posY="0" theta="0" scale="1" lnclr="255,0,0,0" fillclr="255,0,0,0"> | |
<items count="0" /> | |
</layer> | |
<layer name="Default" visible="T" locked="F" paint="F" posX="0" posY="0" theta="0" scale="1" lnclr="255,0,0,0" fillclr="255,0,0,0"> |
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 | |
{ |