Skip to content

Instantly share code, notes, and snippets.

@ViewunitySystem
Last active January 31, 2024 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ViewunitySystem/296d1643e15fa0245bcceb3eefa60d5e to your computer and use it in GitHub Desktop.
Save ViewunitySystem/296d1643e15fa0245bcceb3eefa60d5e to your computer and use it in GitHub Desktop.
kernel
Example for the idea every sales reciept could be a gift voucher. System Viewunity. In All Languages The Theme About This Forum invent view unit global @: http://bible.cc/leviticus/27-30.htm
0.
10 customers buy every a thing for the price of 10 and give each 10% of this purchase in a pot then this pot with the purchase amount added come down to 10 and so the tenth customer would be so its contribution to the purchase and will fully able to recover the total price back. In this system everyone will reach once or more times the tenth place for this opportunity of money back why? Because to ad you to this system you need a bill for a thing you had purchased. With this bill the order of series sorted by date and time when ever client register the purchase bill in this web based system for the place from one up on to ten. Read more about from on at rule 1. for the explaination this idea what is a system in variation of money trading named view the unity that a gift voucher could be every bill.
For the money return control to give a better quote in hit rate the top place to the tenth only the numbers of amount before the decimal point of value will be recognized for paying out customers. But customers do paying the full share of the whole total amount to be part in this system and be able to assume. Otherwise there would be no or very few matches for each couple of pairs from ten to be formed by equal amount of ten percent of the sales value.
Please go on to read this and understand why this works.
If you have any question please post it.
Thank You very much for your audience in time for this information.
1.
Purchase of goods for exchange of money and a proof of purchase by a receipt. This happens every second night and day. That is the cause by this idea why everyone is to be able to get on up to the 10 place what means full money back.
2.
If no agreement (10% of the purchase value) could be found in the database one year after the receipt of 10% of the share purchase to those who participated in this idea it will be returned to them the purchased money.
3.
Finally, it is not important what is bought at any rate the value of share purchase price still determines how the groups of ten each time will be new merged.
4.
Programming of the database in order to calculate the row to the tenth place is further described on the website that shows this idea.
5.
The bill is part of this idea to record this be done at the POS machines automatically print out this receipt the bill, each with a unique username and password including the total price and send this information to the hosted websites for this idea then clients who like to participate in this idea can log in to make use of this idea the system in variation of money trading.
6.
Financing This Idea:
The global markets have an average daily turnover of 3 trillion U.S. dollars.
10% of of this global daily turnover is thus 10% of 3 trillion U.S. dollars invested in this idea and this would following in this idea every day, this would allow this idea to keep running global worldwide.
Unnecessary surplus of this 10% would again return to the markets.
7.
Why do the stock exchanges should use this idea:
Because they can only exist if consumer consumption is willing to be done.
The value of this consumption by these consumers are the global markets worldwide. If the consumption of these consumers is encouraged so it is also encourages exchange of these stock markets and provides grants for these markets with more value and revenue now and in the future.
This idea the system in variation of money trading named view the unity that a gift voucher could be every bill and this in a company that promotes consumer purchasing as a power community so therefore the turnover of these exchanges stock markets has to come out for this idea.
8.
It is one up to ten for everyone.
More information and motivation about this idea can be found at the website: http://www.viewunity.org/system
9.
Vote for this idea with the petition a petition is a request to do something, most commonly together to make a great idea get real in life Vote: http://petities.nl/petitie/kassabon
10.
I would like to see the principle about this idea I'am sharing with you to view the unity idea the system in variation of money trading in real life.
Money is a circle of loops in every change of it and this has not to be broken down in no system if does this could increase a much more higher risk for a total global financial crisis.
And although do not ever forget any human on this earth inthis circle of money sharing about everyone otherwise if does this increase risk for total global financial crisis. And human insanity !
Please forpeaced this information to anyone regarding this idea many thanks.
https://github.com/orgs/ViewUnitySystemT/teams/tel/discussions
@ViewunitySystem
Copy link
Author

Does anyone can write a program for this up above: one up to ten.

@ViewunitySystem
Copy link
Author

<title>Purchase Chain</title> <style> /* Add some basic styling here if needed */ </style>

Purchase Chain System

<div id="purchaseInfo">
    <p>Total Pool: $<span id="totalPool">0.00</span></p>
    <p>Total Customers: <span id="totalCustomers">0</span></p>
    <p>Free Purchases Given: <span id="freePurchases">0</span></p>
</div>

<button onclick="makePurchase()">Make Purchase</button>

<script>
    // JavaScript logic for the purchase chain
    let totalPool = 0;
    let totalCustomers = 0; 
    let freePurchases = 0;

    function makePurchase() {
        const purchaseAmount = 10; // Assume each purchase is $10
        totalCustomers++;

        // Contribute 10% to the pool
        totalPool += 0.1 * purchaseAmount;

        // Check if the 11th customer is eligible for a free purchase
        if (totalCustomers % 11 === 0) {
            freePurchases++;
            totalPool -= purchaseAmount;
            alert(`Congratulations! You've received a free purchase.`);
        }

        // Update the HTML elements with the latest data
        document.getElementById("totalPool").innerText = totalPool.toFixed(2);
        document.getElementById("totalCustomers").innerText = totalCustomers;
        document.getElementById("freePurchases").innerText = freePurchases;
    }
</script>

@ViewunitySystem
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment