Skip to content

Commit

Permalink
first commit Wed Jun 12 22:32:38 MSK 2019
Browse files Browse the repository at this point in the history
  • Loading branch information
hyphop committed Jun 12, 2019
0 parents commit 7817bb7
Show file tree
Hide file tree
Showing 7 changed files with 83 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ,rsync.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# rs config
# host=zeru
pref=/tmp
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
logs
*.notready
tmp/*
out/*
bin/*
git_*
#syncit*
rel
34 changes: 34 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## ATTENTION

## hyphop ## this mark is just contraction and equivalent for this document,
and they must stay in same place, without any changes, everywhere
in source code and another places!

## AUTHOR & ALIASES

Artem Lapkin aka ART NIKPAL aka HYPHOP

## LICENSE

MIT License

Copyright (c) 2017 Artem Lapkin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# miZy images collection

![miZy - images](pics/mizy_images.gif)

mizy firmware images collection
Binary file added pics/mizy_images.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions tools/.git_add_commit_push
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/sh

## hyphop ##

## ugly git commit automate / for lazy guys as me

msg="$@"

[ "$msg" = "" ] && msg=`date`

echo "git add -A && git commit -m $msg && git push"

git add -A && git commit -m "$msg" && git push

19 changes: 19 additions & 0 deletions tools/.git_init
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/sh

## hyphop ##

## automate basic new git repository create
## USAGE
## ./tools/99_git_init

NAME=$(basename "$(realpath .)") #"#
GNME="https://github.com/hyphop/$NAME.git"

echo "[i] create GIt $NAME => $GNME">&2

git init
git add -A
git commit -m "first commit $(date)"
git remote add origin $GNME
git push -u origin master

0 comments on commit 7817bb7

Please sign in to comment.