about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorsteew <steew@noreply.dev.steew.cyou>2021-11-03 22:28:58 +0000
committersteew <steew@noreply.dev.steew.cyou>2021-11-03 22:28:58 +0000
commit27462e85046b14a0bb5209159a49447d17cbe4a8 (patch)
tree127d440e0f11b424d0ef1f29c74e1770d9686039
downloadrpncalc-27462e85046b14a0bb5209159a49447d17cbe4a8.tar.gz
Initial commit
-rw-r--r--.gitignore51
-rw-r--r--LICENSE55
-rw-r--r--README.md3
3 files changed, 109 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c0df46a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,51 @@
+# ---> Emacs
+# -*- mode: gitignore; -*-
+*~
+\#*\#
+/.emacs.desktop
+/.emacs.desktop.lock
+*.elc
+auto-save-list
+tramp
+.\#*
+
+# Org-mode
+.org-id-locations
+*_archive
+
+# flymake-mode
+*_flymake.*
+
+# eshell files
+/eshell/history
+/eshell/lastdir
+
+# elpa packages
+/elpa/
+
+# reftex files
+*.rel
+
+# AUCTeX auto folder
+/auto/
+
+# cask packages
+.cask/
+dist/
+
+# Flycheck
+flycheck_*.el
+
+# server auth directory
+/server/
+
+# projectiles files
+.projectile
+
+# directory configuration
+.dir-locals.el
+
+# network security
+/network-security.data
+
+
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..c5402b9
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,55 @@
+# Blue Oak Model License
+
+Version 1.0.0
+
+## Purpose
+
+This license gives everyone as much permission to work with
+this software as possible, while protecting contributors
+from liability.
+
+## Acceptance
+
+In order to receive this license, you must agree to its
+rules.  The rules of this license are both obligations
+under that agreement and conditions to your license.
+You must not do anything with this software that triggers
+a rule that you cannot or will not follow.
+
+## Copyright
+
+Each contributor licenses you to do everything with this
+software that would otherwise infringe that contributor's
+copyright in it.
+
+## Notices
+
+You must ensure that everyone who gets a copy of
+any part of this software from you, with or without
+changes, also gets the text of this license or a link to
+<https://blueoakcouncil.org/license/1.0.0>.
+
+## Excuse
+
+If anyone notifies you in writing that you have not
+complied with [Notices](#notices), you can keep your
+license by taking all practical steps to comply within 30
+days after the notice.  If you do not do so, your license
+ends immediately.
+
+## Patent
+
+Each contributor licenses you to do everything with this
+software that would otherwise infringe any patent claims
+they can license or become able to license.
+
+## Reliability
+
+No contributor can revoke this license.
+
+## No Liability
+
+***As far as the law allows, this software comes as is,
+without any warranty or condition, and no contributor
+will be liable to anyone for any damages related to this
+software or this license, under any kind of legal claim.***
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..c037c73
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# rpncalc
+
+simple rpn calculator inspired by emacs calc
\ No newline at end of file