Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions CreatePascalCoinRepository.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
echo Skybuck Flying here !
echo
echo Welcome, this batchfile will create a usuable PascalCoin repository for you.
echo
echo Step 1 clone your fork, this must be editted by you
git clone https://github.com/SkybuckFlying/PascalCoin.git

echo Step 2 change to the PascalCoin folder
cd PascalCoin

echo Step 3 add remote to PascalCoinDev
git remote add PascalCoinDev https://github.com/PascalCoinDev/PascalCoin.git

echo Step 4 add remote to PascalCoin
git remote add PascalCoin https://github.com/PascalCoin/PascalCoin.git

echo Step 5 fetch PascalCoinDev repository
git fetch PascalCoinDev

echo Step 6 fetch PascalCoin repository
git fetch PascalCoin

echo Step 7 create local branch for PascalCoinDev/master
git checkout PascalCoinDev/master -b PascalCoinDevMaster

echo Step 8 create local branch for PascalCoin/master
git checkout PascalCoin/master -b PascalCoinMaster

echo Step 9 configure line endings for Microsoft Windows Operating Systems
echo Step 9 (convert CRLF to LF on commit) and (LF to CRLF on checkouts)
git config --global core.autocrlf true








74 changes: 74 additions & 0 deletions PIP/Sky-PIP-0002.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<pre>
PIP: *reserved for PIP editor*
Title: Sky-PIP-0002, Ask for PASA Server + Client + Captchas.
Type: Protocol | Backend | Front-End | Informational | Process
Impact: [Hard-Fork|Soft-Fork|None] - [Protcol | API | GUI | Mobile | Other]
Author: Skybuck Flying <i>&lt;[email protected]&gt;</i>
Comments-URI: *reserved for PIP editor*
Status: Draft
Created: 2022-01-13
</pre>

## Summary

Ask for PASA Server + Client component for PascalCoin

## Motivation

Currently the Ask for PASA functionality seems to be gone/disabled.

The PASA functionality was disabled because of mis-use/abuse of the Ask for PASA feature.

Aledgedly a script was used to collect a lot of free PASAs.

To prevent scripting it is necessary to fall back to a method that requires human interaction.

A captcha comes to mind. A captcha is a visual image containing letters, symbols, digits or even words or other objects
that must be recgonized by a human but is hard for a computer to recgonize.

## Specification

Users/Miners of PascalCoin should be able to offer their excessive PASAs to a PASA Server.

The PASA Server components runs on their machine.

The PASA Server component generates a Captcha whenever a PASA Client requests a free PASA.

The PASA Client randomly selects one of the available PASA Servers.

The PASA Server components "register/announce" themselfes on the PascalCoin network through propagation messages.

The human behind the PASA Client needs to visually and/or audioaly/sonically decode the Captcha.

The decode code/captcha is then send back to the server for verification.

Only the server who generated the captcha knows the correct answer/code/captcha.

Once the server establishes that the code was correctly entered the server sends one PASA to the PASA Client.

The client also passes any information required to obtain the free pasa as well as the server so the client can take control of it.

## Rationale

No alternate designs are currently functioning. In the past there were web based and telegram based designs all of which have failed or be torn down.

It is time to try and solve this issue once and for all by implementing a stable and long lasting protocol inside the PascalCoin software itself.

The implementation should be flexible enough to allow new/more advanced Captcha plugins to be created in case advanced algorithms and artificial intelligence
successfully decode the captchas.

Captchas are still in use today by many internet/web based services and has proven to be a successfull technique against massive scripting/botting.

## Backwards Compatibility

Since this is a new idea for PascalCoin no backwards compatibility is required, though there may be some existing code/infrastructure that could be re-used
for this purpose.

## Reference Implementation

No reference implemention exists yet, first testing the waters if this idea is viable, perhaps main developer can implement most of it if not all of it with
help of captcha generators/plugins.

## Links

No references or links as of yet.