Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>moxa_app_framework - Agent Session</title> | |
| <style> | |
| :root { | |
| --bg-primary: #f7f7fa; | |
| --bg-surface: #ffffff; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>zack - Agent Session</title> | |
| <style> | |
| :root { | |
| --bg-primary: #f7f7fa; | |
| --bg-surface: #ffffff; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>remote_agent_sdk - Agent Session</title> | |
| <style> | |
| :root { | |
| --bg-primary: #f7f7fa; | |
| --bg-surface: #ffffff; |
| #/bin/bash | |
| # apt-get update && apt-get install cdparanoia lame | |
| cdparanoia -B && \ | |
| for file in *.wav; do lame -V0 "$file" "${file/%wav/mp3}"; done && \ | |
| rm *.wav && \ | |
| eject |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "strconv" | |
| "github.com/miekg/dns" | |
| ) |
| notify: | |
| if: always() | |
| name: Notify | |
| needs: | |
| - job1 | |
| - job2 | |
| - job11 | |
| - job3 | |
| - job4 | |
| runs-on: ubuntu-latest |
| #!/bin/bash | |
| BITLOCKER_PARTITION="${1}" | |
| BITLOCKER_PASSWORD="${2}" | |
| function usage() { | |
| echo "$(basename ${0}) <partition> <password>" | |
| echo "Unlocks and mounts a bitlocker partition as read-only" | |
| } | |
| if [ -z "${BITLOCKER_PARTITION}" ] |
| echo "****************************************************" | |
| echo "* *" | |
| echo "* CONVERT BARE REPO TO NORMAL REPO *" | |
| echo "* *" | |
| echo "****************************************************" | |
| echo " -> untar repo.tar.gz" | |
| tar -zxf repo.tar.gz | |
| for user in $(ls repositories/); do | |
| for repo in $(ls repositories/$user/); do | |
| pathRepo="repositories/$user/$repo/"; |