start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| ################################################################## | |
| # A Project of TNET Services, Inc | |
| # | |
| # Title: WiFi_Check | |
| # | |
| # Purpose: | |
| # | |
| # Script checks to see if WiFi has a network IP and if not | |
| # restart WiFi |
| """ | |
| This is a small python script to clear up old gitlab build artifacts. | |
| There are 3 variables you should modify: | |
| * base_url: path to your gitlab | |
| * access_token: your personal access token to make gitlab api calls | |
| * delete_everything_older_than: configure the timedelta as you wish | |
| !!IMPORTANT!! | |
| By default this script does only make dry-runs and does not actually delete any files! |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <appender name="Console" | |
| class="ch.qos.logback.core.ConsoleAppender"> | |
| <layout class="ch.qos.logback.classic.PatternLayout"> | |
| <pattern>[%d{yyyy/MM/dd HH:mm:ss:SSS}] %yellow([%thread]) %highlight(%-5level) [%cyan(%logger{15}):%green(%M):%magenta(%L)] - %m%n</pattern> | |
| </layout> | |
| </appender> | |
| <appender name="RollingFile" | |
| class="ch.qos.logback.core.rolling.RollingFileAppender"> |
| #!/bin/sh | |
| aws cloudformation deploy \ | |
| --template-file stack.yaml \ | |
| --stack-name edge-lambda-test \ | |
| --capabilities CAPABILITY_IAM \ | |
| --parameter-overrides Nonce=$RANDOM |
| " Vim configuration by jotajr | |
| " Seta o numero de linhas que o vim tem que lembrar | |
| set history=500 | |
| " Seta a auto deteccao de sintaxe | |
| syntax on | |
| " Sempre mostra a posicao corrente | |
| set ruler |
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Description": "GERTEC MDM Lambda Functions Templates for Lambda", | |
| "Parameters": { | |
| "REGION": { | |
| "Type": "String", | |
| "Default": "us-east-1" | |
| } | |
| }, | |
| "Resources": { |
While using the seven rules of a great Git commit message: