get equipped with: obnoxious

This commit is contained in:
xenia 2020-11-07 16:42:43 -05:00
parent 6a7c453f3e
commit 5a94dc3751
9 changed files with 156 additions and 2 deletions

View File

@ -1,3 +1,20 @@
# crossfire: distributed brute force infrastructure
#
# Copyright (C) 2020 haskal
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
.PHONY: all clean
all:

View File

@ -1,3 +1,21 @@
<!--
crossfire: distributed brute force infrastructure
Copyright (C) 2020 haskal
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
# crossfire
distributed brute force infrastructure

View File

@ -1,4 +1,20 @@
#lang racket/base
;; crossfire: distributed brute force infrastructure
;;
;; Copyright (C) 2020 haskal
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(require racket/match racket/runtime-path
scribble/text (rename-in scribble/text/output [output scribble-output]))

View File

@ -1,4 +1,22 @@
@; vim: ft=c
@;; crossfire: distributed brute force infrastructure
@;;
@;; Copyright (C) 2020 haskal
@;;
@;; This program is free software: you can redistribute it and/or modify
@;; it under the terms of the GNU Affero General Public License as published by
@;; the Free Software Foundation, either version 3 of the License, or
@;; (at your option) any later version.
@;;
@;; This program is distributed in the hope that it will be useful,
@;; but WITHOUT ANY WARRANTY; without even the implied warranty of
@;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@;; GNU Affero General Public License for more details.
@;;
@;; You should have received a copy of the GNU Affero General Public License
@;; along with this program. If not, see <https://www.gnu.org/licenses/>.
@;; vim: ft=c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -1,6 +1,22 @@
#lang info
;; crossfire: distributed brute force infrastructure
;;
;; Copyright (C) 2020 haskal
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(define pkg-desc "a package. whoa")
(define pkg-desc "distributed brute force infrastructure")
(define version "0.1")
(define pkg-authors '(haskal))

View File

@ -1,4 +1,20 @@
#lang racket/base
;; crossfire: distributed brute force infrastructure
;;
;; Copyright (C) 2020 haskal
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(require racket/bool racket/function racket/match
(for-syntax racket/base racket/syntax)

View File

@ -1,4 +1,20 @@
#lang racket/base
;; crossfire: distributed brute force infrastructure
;;
;; Copyright (C) 2020 haskal
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(require racket/list racket/match)

View File

@ -1,4 +1,21 @@
#lang scribble/manual
@;; crossfire: distributed brute force infrastructure
@;;
@;; Copyright (C) 2020 haskal
@;;
@;; This program is free software: you can redistribute it and/or modify
@;; it under the terms of the GNU Affero General Public License as published by
@;; the Free Software Foundation, either version 3 of the License, or
@;; (at your option) any later version.
@;;
@;; This program is distributed in the hope that it will be useful,
@;; but WITHOUT ANY WARRANTY; without even the implied warranty of
@;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
@;; GNU Affero General Public License for more details.
@;;
@;; You should have received a copy of the GNU Affero General Public License
@;; along with this program. If not, see <https://www.gnu.org/licenses/>.
@require[@for-label[crossfire
racket/base]]

20
license.template Normal file
View File

@ -0,0 +1,20 @@
#lang scribble/text
@(require racket/date "crossfire/info.rkt")
@(define year-now (date-year (current-date)))
@(define year (if (= year-now 2020) year-now @list{2020 - @year-now}))
;; @#%info-lookup['collection]: @#%info-lookup['pkg-desc]
;;
;; Copyright (C) @year @(add-between (#%info-lookup 'pkg-authors) ", ")
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU Affero General Public License for more details.
;;
;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.