This file contains 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
package main | |
import ( | |
"errors" | |
"fmt" | |
"os" | |
"github.com/jedib0t/go-pretty/v6/text" | |
"github.com/spf13/cobra" | |
) |
This file contains 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
#!/usr/bin/python | |
"""Replacement for htpasswd""" | |
# Original author: Eli Carter | |
import os | |
import sys | |
import random | |
from optparse import OptionParser | |
# We need a crypt module, but Windows doesn't have one by default. Try to find |
This file contains 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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC5qOiaVIZ9KR6iwSUMIu48Xi4v03xq5rul8hH2Ld3pHph7dzOLxnmjOmMKjuGagcHmqnzkyH9t8kz280uOgQ384wqqlYtZuxT3JX9LbWIXqgITXhe+iEJy74HD+8ablzM+3FLMNIcfjmGgXWs5nERUzjAQEENS5IAfdHZ5OK66K88bTPBHGnRkhG+pehbeTKKLO9UF+eaePBJIwnbAGVzy18vJZiBin/P5LCAdUd8FYCJrOR2i6iJUrDm0WMEXTrRWRJdeL+gJyosRBSImGg4DrUx51b7E6D7i5oatfMSdbYTdA3J28eUwMfInih7TaKNotOTYrsRX91xxtcA2PGQz alex@Philae.local |
This file contains 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
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}✘" | |
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}✔" | |
ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg[red]%}➦" | |
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[cyan]%} ✈" | |
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[yellow]%} ✭" | |
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✗" | |
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%} ➦" |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title></title> | |
<link rel="stylesheet" href="style.css"> | |
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
var computerNumber = Math.floor(Math.random() * 10); // Generates a random number between 1 and 10. |