Ecosyste.ms: Repos

An open API service providing repository metadata for many open source software ecosystems.

GitHub topics: savings

PeterSkopal/savings-calculator

💰Calculator helping you find out how much you need to save each month to reach a certain savings goal.

Language: JavaScript - Size: 1.82 MB - Last synced: 3 days ago - Pushed: about 6 years ago - Stars: 0 - Forks: 0

sarvsav/wage-weave

Your Salary 💰, Your Portfolio 📊, Your Future 🌟.

Language: JavaScript - Size: 1000 KB - Last synced: 7 days ago - Pushed: 8 days ago - Stars: 2 - Forks: 0

bell-kevin/SavingsAccount

This project is very similar in design to the Mouse2 class and Mouse2Driver example in the book. Remember the project in Ch 4 about calculating the value of an account as it grows, which was enhanced in Ch 5 to look better? We’ll do the same work here but using OOP methodology. In this project, the user will specify the starting balance for a savings account, the interest rate, and the number of cycles it will grow at that interest rate. The program will display how much the account is worth at the end of that growth. We need a class that provides the blueprint for this savings account. What kind of variables do we need? The current balance is essential. Since this is a savings account that grows by adding earned interest, we need the value for the interest rate to be able to calculate that earned interest. You might want to know the customer who owns this account – but notice that the customer is the owner, not part of the account. Therefore, the customer info is not part of this account. So the data needed to provide the information about the account and its current state is balance and interest rate. What actions can this account take, what can it do? The first thing needed will be setting the balance and the interest rate, so we need “mutator” or “set” methods for those actions. We need to be able to see the balance, which is an “accessor” or “get” method. Is there any other method required for this class? We could stop here, and “grow” the account in the driver class or main method. But that doesn’t make the best use of OOP design and programming, so we’re going add a method to the class to “grow” the account. Next, consider if the instance variables are public or private – protected or open to the world? If you want methods outside of this class, other programmer’s methods, to be able to change the variable directly, then make it public. Most of the time, you’ll want to protect the variable, make sure it’s changed only by the methods provided in the class. For this account, we certainly want to protect the balance and interest rate, so they need to be private. Add a minus sign or hyphen in front of those two variables in the UML diagram to represent that access. Next consider the data type for each variable – double or integer? The balance is money, and interest rates require decimals, so the variables need to be doubles. The next step is to consider the methods. Are they private or public, available to the world outside of this class? All of them need to be public, because we are going to execute them from the driver class, which is outside of this class. What type of data will each method return? The “get” method will return the current value in the instance variable for balance, so it must return a double, matching data type of that variable. The two “set” methods don’t need to return anything, so their return type is “void”. The growAccount method is going to do work to change the account balance – does it need to return anything? No, its results will be in the balance variable, and we can get that number with the get method. So the growAccount method is also void. Do any of those methods need information passed into them when they are called? Usually the “set” methods need data to change the values in the variables. Here, we need to know the starting balance, the interest rate, and the number of cycles to grow the account, information provided by the user. For this project, we are going to use the driver class to ask the user for all that information. Therefore the driver class needs to pass the data to the methods in this class – the data will be provided to the method inside of its parentheses. The setBalance and setInterestRate methods need doubles passed to them. The growAccount method needs an integer for the number of cycles to grow the account. Begin by creating a new project and name it “Ch6SavingsAccount”. The IDE provides you the main class heading, which is the driver for this project. We’ll code that later; first, we need the class that will be the basis for that driver. In the File menu, click on “New File” – not new project, new FILE. Specify that the File Type is “Java Class”, and name it “Account”. This is the name of the class – the file name must match the name of the class. The IDE has again given you the starting point for this type of file. Now that the class exists, turn your attention to the driver or main code. What needs to happen here? The user needs to provide the starting balance, interest rate, and number of cycles to grow the account. As you have done in previous projects, you’ll ask the user to enter the necessary information. Take a moment to consider the interest rate value. The interest rate must be a double because it is a fraction of one whole unit. If someone says an interest rate is 7%, we don’t use “7” for the calculations – we use 7 / 100. Always make it clear to the user if they are supposed to enter percentage rates (7 for 7%) or the mathematical percentage (0.07 for 7%). It is usually best to have the user type it as if there was a percent symbol following it – 7 for 7% makes a lot more sense to a user than 0.07 for 7%. If the user types in a number like 7, you must do the math in the program to convert that to its decimal equivalent of 0.07 – divide the interest rate by 100. That code is in the class above. Notice that there are variables for balance, interest rate, and cycles in this driver class, which seem like a repetition of the instance variables in the Account class. The variables in the driver class are used to communicate with the user, to get the data to pass to the Account class to create a specific account. As discussed in the book, we could use different names for the variables, like “newBalance” or “inputInterestRate”, and sometimes that is helpful to make it very clear what data is being stored in each variable. But they really are the same data here, so we’ll use the same variable names in the driver class and the Account class. The prefix “this.” in the Account class helps to clarify that the data passed into the method is assigned to the private instance variable in the Account class. Take a screenshot of your program execution that matches the sample session, then run the program 2 more times with different data and take 2 more screenshots. Submission: 3 screenshots, and the root folder for the project Pay careful attention to the rubric for this assignment. Remember the standards that apply to every project. Note that you must use correct formatting in the code -- appropriate indentation is most important. You can use Shift-Alt-F to have NetBeans automatically format the code correctly. If the formatting is incorrect, it will be returned to you for changes with a grade of zero. Note: You need to submit the whole project for these assignments. In File Explorer, go to the location where you created the project. There will be a folder with the name of your project -- that is the root folder of the project. If you submit the root folder of the project, the instructor can run it on a different machine to grade it. If you don't submit the proper folder, it won't run on another machine, and the assignment will be marked with a zero.

Language: Java - Size: 44.9 KB - Last synced: 8 days ago - Pushed: almost 2 years ago - Stars: 0 - Forks: 0

123MwanjeMike/OS-Save Fork of isaacssemugenyi/hackathon

Built to work with the mojaloop api

Language: Pug - Size: 1.49 MB - Last synced: 8 days ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

123MwanjeMike/autoidle-saving

This is a demo application for how to cut costs on Heroku with AutoIdle in the article https://blog.mikemwanje.dev/autoidle-cuts-your-heroku-bill-by-auto-putting-your-staging-and-review-apps-to-sleep. Start fom the start branch as you follow along untill the code version in the main branch is reached.

Language: JavaScript - Size: 26.4 KB - Last synced: 8 days ago - Pushed: almost 2 years ago - Stars: 0 - Forks: 1

rafinder1/investment_keeper

This app write to keep information about savings and investment

Language: Dart - Size: 273 KB - Last synced: 8 days ago - Pushed: 9 days ago - Stars: 0 - Forks: 0

liguori/savings

Project your income into the future while also taking expenses into account. Technologies: Blazor, ASP.NET Core, EF Core and Electron

Language: C# - Size: 1.27 MB - Last synced: 7 days ago - Pushed: 8 days ago - Stars: 8 - Forks: 2

bell-kevin/Ch6SavingsAccount

This project is very similar in design to the Mouse2 class and Mouse2Driver example in the book (Introduction to Programming with Java: A Problem Solving Approach, Second Edition by John Dean and Raymond Dean). Remember the project in Ch 4 about calculating the value of an account as it grows, which was enhanced in Ch 5 to look better? We’ll do the same work here but using OOP methodology. In this project, the user will specify the starting balance for a savings account, the interest rate, and the number of cycles it will grow at that interest rate. The program will display how much the account is worth at the end of that growth. We need a class that provides the blueprint for this savings account. What kind of variables do we need? The current balance is essential. Since this is a savings account that grows by adding earned interest, we need the value for the interest rate to be able to calculate that earned interest. You might want to know the customer who owns this account – but notice that the customer is the owner, not part of the account. Therefore, the customer info is not part of this account. So the data needed to provide the information about the account and its current state is balance and interest rate. What actions can this account take, what can it do? The first thing needed will be setting the balance and the interest rate, so we need “mutator” or “set” methods for those actions. We need to be able to see the balance, which is an “accessor” or “get” method. Is there any other method required for this class? We could stop here, and “grow” the account in the driver class or main method. But that doesn’t make the best use of OOP design and programming, so we’re going add a method to the class to “grow” the account. Next, consider if the instance variables are public or private – protected or open to the world? If you want methods outside of this class, other programmer’s methods, to be able to change the variable directly, then make it public. Most of the time, you’ll want to protect the variable, make sure it’s changed only by the methods provided in the class. For this account, we certainly want to protect the balance and interest rate, so they need to be private. Add a minus sign or hyphen in front of those two variables in the UML diagram to represent that access. Next consider the data type for each variable – double or integer? The balance is money, and interest rates require decimals, so the variables need to be doubles. The next step is to consider the methods. Are they private or public, available to the world outside of this class? All of them need to be public, because we are going to execute them from the driver class, which is outside of this class. What type of data will each method return? The “get” method will return the current value in the instance variable for balance, so it must return a double, matching data type of that variable. The two “set” methods don’t need to return anything, so their return type is “void”. The growAccount method is going to do work to change the account balance – does it need to return anything? No, its results will be in the balance variable, and we can get that number with the get method. So the growAccount method is also void. Do any of those methods need information passed into them when they are called? Usually the “set” methods need data to change the values in the variables. Here, we need to know the starting balance, the interest rate, and the number of cycles to grow the account, information provided by the user. For this project, we are going to use the driver class to ask the user for all that information. Therefore the driver class needs to pass the data to the methods in this class – the data will be provided to the method inside of its parentheses. The setBalance and setInterestRate methods need doubles passed to them. The growAccount method needs an integer for the number of cycles to grow the account. Begin by creating a new project and name it “Ch6SavingsAccount”. The IDE provides you the main class heading, which is the driver for this project. We’ll code that later; first, we need the class that will be the basis for that driver. In the File menu, click on “New File” – not new project, new FILE. Specify that the File Type is “Java Class”, and name it “Account”. This is the name of the class – the file name must match the name of the class. The IDE has again given you the starting point for this type of file. Now that the class exists, turn your attention to the driver or main code. What needs to happen here? The user needs to provide the starting balance, interest rate, and number of cycles to grow the account. As you have done in previous projects, you’ll ask the user to enter the necessary information. Take a moment to consider the interest rate value. The interest rate must be a double because it is a fraction of one whole unit. If someone says an interest rate is 7%, we don’t use “7” for the calculations – we use 7 / 100. Always make it clear to the user if they are supposed to enter percentage rates (7 for 7%) or the mathematical percentage (0.07 for 7%). It is usually best to have the user type it as if there was a percent symbol following it – 7 for 7% makes a lot more sense to a user than 0.07 for 7%. If the user types in a number like 7, you must do the math in the program to convert that to its decimal equivalent of 0.07 – divide the interest rate by 100. That code is in the class above. Notice that there are variables for balance, interest rate, and cycles in this driver class, which seem like a repetition of the instance variables in the Account class. The variables in the driver class are used to communicate with the user, to get the data to pass to the Account class to create a specific account. As discussed in the book, we could use different names for the variables, like “newBalance” or “inputInterestRate”, and sometimes that is helpful to make it very clear what data is being stored in each variable. But they really are the same data here, so we’ll use the same variable names in the driver class and the Account class. The prefix “this.” in the Account class helps to clarify that the data passed into the method is assigned to the private instance variable in the Account class.

Language: Java - Size: 73.2 KB - Last synced: 8 days ago - Pushed: almost 2 years ago - Stars: 0 - Forks: 0

FlazeFy/Pocketer

created using nextjs

Language: JavaScript - Size: 796 KB - Last synced: 22 days ago - Pushed: over 1 year ago - Stars: 1 - Forks: 0

akramnarejo/savings-calculator

calculator to know your savings as per the number of years.

Language: JavaScript - Size: 3.52 MB - Last synced: 24 days ago - Pushed: about 1 month ago - Stars: 1 - Forks: 0

Pesabooks/Pesabooks

Pesabooks is a decentralized application that allows a group of people to save and invest together in the cryptocurrency market.

Language: TypeScript - Size: 3.18 MB - Last synced: 12 days ago - Pushed: 8 months ago - Stars: 6 - Forks: 0

Viperz75/Jar

Saving Jar. Keep track of your savings. Keep them in a JAR.

Language: Dart - Size: 2.03 MB - Last synced: 22 days ago - Pushed: 22 days ago - Stars: 1 - Forks: 1

mangoO-Microfinance/mangoO-Microfinance

A lightweight, yet powerfull solution for microfinance institutions based on web technologies

Language: PHP - Size: 19.8 MB - Last synced: 29 days ago - Pushed: almost 5 years ago - Stars: 62 - Forks: 89

timbornemann/Income-Insight-Engine

The Income Insight Engine is a tool designed to assist with personal finance management. It offers straightforward functionality for tracking and analyzing income and expenses

Language: C# - Size: 40.4 MB - Last synced: about 2 months ago - Pushed: about 2 months ago - Stars: 3 - Forks: 0

HelixSpiral/ElectricUtilityComparison

Checks the electrical Public Utility rates for cheaper providers in your area

Language: Go - Size: 108 KB - Last synced: 8 days ago - Pushed: about 4 years ago - Stars: 0 - Forks: 0

KenKundert/tvm

Time Value of Money

Language: Python - Size: 54.7 KB - Last synced: 30 days ago - Pushed: over 1 year ago - Stars: 8 - Forks: 1

Dare-marvel/FinAlly-SPIT_HACKATHON-

🎉 Welcome to our platform! We’re all about financial inclusion. Get rewarded, make informed investments 📈, and learn with our educational resources 📚. Enjoy automated fund transfers to SIPs, an intuitive dashboard for insights 📊, strategic investment recommendations 💡, and track your expenses đŸ’Œ. Join us for a financially secure future! 💰

Language: JavaScript - Size: 6.81 MB - Last synced: 3 months ago - Pushed: 3 months ago - Stars: 0 - Forks: 0

Kagwep/Akiba

Utilizing Non-Fungible Tokens (NFTs) to encourage and facilitate disciplined saving practices Near protocol.

Language: JavaScript - Size: 14.4 MB - Last synced: about 1 month ago - Pushed: 5 months ago - Stars: 0 - Forks: 0

sujan-s/pieman

PIEMan — A no-frills Personal Income and Expenditures MANager built on Google Sheets.

Size: 6.84 KB - Last synced: 7 months ago - Pushed: almost 6 years ago - Stars: 2 - Forks: 1

sharmaroshan/Europe-Political-Data-Analysis

This is Europe's Political data which consists of information about life expectancy, pollution, population, unemployment, work hours, weather, trust in police, trust in legal authorities, Income, GDP, leisure satisfaction, trust in politics, environment satisfaction, low savings and crime for all the countries in Europe. I am going to compare these political situations or sentiments of people living in different parts of Europe using Data Analytics and Data Visualization.

Language: Jupyter Notebook - Size: 82 KB - Last synced: 7 months ago - Pushed: almost 5 years ago - Stars: 3 - Forks: 2

walosha/glorifiers-server-fintech

It is fintech application

Language: JavaScript - Size: 640 KB - Last synced: 7 months ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

skipmcgee/expense_impact

Script to display the funds required to support a repeated expense indefinitely or in retirement. How much money do you need to save to support your coffee addiction or an entertainment subscription? Designed to communicate/teach some python fundamentals and concepts to folks new to python

Language: Python - Size: 51.8 KB - Last synced: 4 months ago - Pushed: almost 2 years ago - Stars: 2 - Forks: 0

YannickKae/Monthly-Savings-Calculator

This Shiny R app is a monthly savings calculator that allows users to calculate the monthly savings rate needed to reach a desired final amount, based on different possible return distributions and risk profiles.

Language: R - Size: 12.7 KB - Last synced: 3 months ago - Pushed: 10 months ago - Stars: 1 - Forks: 0

brndnsmth/disneyland-savings-calculator

Calculate how much money should be saved per day, week, or month to afford a trip to Disneyland in Anaheim, California.

Language: TypeScript - Size: 289 KB - Last synced: 26 days ago - Pushed: 2 months ago - Stars: 0 - Forks: 0

flobaader/VisuaLink

A Visualization app for the Danfoss Link System

Language: Java - Size: 1.43 MB - Last synced: 3 months ago - Pushed: over 1 year ago - Stars: 2 - Forks: 2

dj-neza/MoneyManager

Money manager web application for expenses tracking built with Django for a class project. EDIT: years later I wonder what's up with the design. 😅

Language: Python - Size: 26.6 MB - Last synced: 9 months ago - Pushed: over 7 years ago - Stars: 3 - Forks: 1

dokor/trading-java-bot

Bot Java de gestion automatique d'un portefeuille Binance

Language: Java - Size: 199 KB - Last synced: 3 months ago - Pushed: 3 months ago - Stars: 1 - Forks: 2

smartjef/tamakika2

Tamakika Savings Investment and credit limited is an investment Society under Tamakika Investments Limited. The society started in the year 2019 and has enjoyed successful growth towards achievement of its mission, vision and its objectives.

Language: HTML - Size: 8.06 MB - Last synced: 9 months ago - Pushed: over 1 year ago - Stars: 2 - Forks: 0

Durumsky/Minimalfin

Track your expenses to rise awareness of how you use your money and get inspiration to become a financial minimalist.

Language: JavaScript - Size: 5.32 MB - Last synced: 10 months ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

payscribe/php-sdk

official | payscribe php sdk

Language: PHP - Size: 320 KB - Last synced: 10 months ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

nodimhu/tyche

Tyche is a home savings tracking application named after the Greek Goddess of Fortune.

Language: TypeScript - Size: 248 KB - Last synced: 8 months ago - Pushed: 8 months ago - Stars: 0 - Forks: 0

elcharitas/harbor-finance

Revolutionizing Decentralised Savings

Language: TypeScript - Size: 598 KB - Last synced: 11 months ago - Pushed: 11 months ago - Stars: 1 - Forks: 0

Shuaib-8/budgetools

An App to demonstrate the utilities of budgeting, saving, and investing.

Language: Python - Size: 70.3 KB - Last synced: 6 months ago - Pushed: 10 months ago - Stars: 2 - Forks: 0

moneyindexin/MoneyIndex-in

destination for all things related to saving, investing, personal finance

Size: 1.95 KB - Last synced: 12 months ago - Pushed: 12 months ago - Stars: 0 - Forks: 0

nodimhu/tyche-sveltehack

Tyche is a home savings tracking application named after the Greek Goddess of Fortune. Made with love on SvelteKit for Sveltehack 2023.

Language: Svelte - Size: 354 KB - Last synced: about 1 year ago - Pushed: about 1 year ago - Stars: 0 - Forks: 0

Prem-ium/Interest-Calculator 📩

🏩 Calculate Future Compounding Interest Earnings/PaymentsđŸȘ™

Language: Java - Size: 834 KB - Last synced: about 1 year ago - Pushed: almost 2 years ago - Stars: 1 - Forks: 0

XadeFinance/sabex

SabeX by XADE

Language: Solidity - Size: 2.35 MB - Last synced: about 2 months ago - Pushed: 2 months ago - Stars: 1 - Forks: 1

colleowino/chamaconnect Fork of Chamaconnect/chamaconnect

Chama Connect : Group saving on android

Language: Java - Size: 2.09 MB - Last synced: about 1 year ago - Pushed: over 8 years ago - Stars: 1 - Forks: 0

sanketshevkar/zh2hackathon_tier-4

Goal Based Systematic Savings Plan To Save Money

Language: Java - Size: 688 KB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 1 - Forks: 3

Okiki-Olugunna/Generational-Savings

keep crypto wealth within your bloodline

Language: Python - Size: 20.1 MB - Last synced: almost 1 year ago - Pushed: almost 1 year ago - Stars: 1 - Forks: 0

MvMukesh/SpendingAnalysis-ProposedSavingOpportunitiesOf-729million

Analysing data of almost 3years and proposing saving of â‚č72.9 Cr

Size: 8.46 MB - Last synced: about 1 year ago - Pushed: about 1 year ago - Stars: 1 - Forks: 0

sergejmueller/binance-savings-rebalancer 📩

A bot for transfers between Binance Savings for higher interest rates

Language: JavaScript - Size: 77.1 KB - Last synced: about 1 year ago - Pushed: over 3 years ago - Stars: 12 - Forks: 2

sklinkert/etf-sparplan

Links zu ETF- und Sparplan-Ratgeber-Seiten

Size: 6.84 KB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 2 - Forks: 0

alofeoluwafemi/Piggy.Fi

PiggyFi is a Defi savings platform, without the need of an ethereum client e.g TrustWallet. That allows people from countries suffering from high inflation rates to save in a stable currency such as the USD, by leveraging on Stable cryptocurrencies such as USDT and generating interest on their savings through yield farming.

Language: JavaScript - Size: 152 KB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 9 - Forks: 3

Haidy777/bitvavo-savings-bot

A simple script to automatically buy crypto and transfer it to wallets on a regular basis.

Language: TypeScript - Size: 174 KB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

31Carlton7/budgetme

An app to save money and achieve your goal! Available on iOS & Android 🚀

Language: Dart - Size: 135 MB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 31 - Forks: 10

Hynitr/Savearns

A web application for savearns

Language: CSS - Size: 65.8 MB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

alexeykhan/assist

ĐŸĐ”Ń€ŃĐŸĐœĐ°Đ»ŃŒĐœŃ‹Đč Đ°ŃŃĐžŃŃ‚Đ”ĐœŃ‚ ĐŽĐ»Ń ĐżĐ»Đ°ĐœĐžŃ€ĐŸĐČĐ°ĐœĐžŃ Đ»ĐžŃ‡ĐœŃ‹Ń… Ń„ĐžĐœĐ°ĐœŃĐŸĐČ. ĐŸĐŸĐŒĐŸĐ¶Đ”Ń‚ рассчотать ŃŃƒĐŒĐŒŃƒ Đ”Đ¶Đ”ĐŒĐ”ŃŃŃ‡ĐœŃ‹Ń… ĐžĐœĐČДстОцОĐč про Ń€Đ°Đ·ĐœŃ‹Ń… ĐČĐČĐŸĐŽĐœŃ‹Ń… ĐŽĐ»Ń ĐŽĐŸŃŃ‚ĐžĐ¶Đ”ĐœĐžŃ ĐČашох цДлДĐč.

Language: Go - Size: 1.1 MB - Last synced: 6 months ago - Pushed: 6 months ago - Stars: 10 - Forks: 0

cfanatic/go-expenses

Track and analyze your monthly expenses (GUI)

Language: Go - Size: 843 KB - Last synced: 10 months ago - Pushed: almost 4 years ago - Stars: 7 - Forks: 0

edcsu/SavingPlatformApplication

savings platform

Language: C# - Size: 714 KB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

shoppinglistaustralia/shoppinglistaustralia

Website for shoppinglistaustralia

Language: HTML - Size: 2.73 MB - Last synced: about 1 year ago - Pushed: almost 2 years ago - Stars: 0 - Forks: 0

Luigi-PastorePica/FreeD

A simple tool to help users easily see the outlook for multiple personal debts. It is expected to assist the user in making decisions on where to allocate additional money to pay less in the long term. This software is intended to be used alongside a data visualization library to display graphs and other data that might be considered pertinent.

Language: Python - Size: 49.8 KB - Last synced: about 1 year ago - Pushed: over 3 years ago - Stars: 1 - Forks: 0

reedhaffner/CSV-RoundUps

Rounds up transactions in a CSV file for investing or saving

Language: Python - Size: 19.5 KB - Last synced: 3 days ago - Pushed: over 1 year ago - Stars: 1 - Forks: 1

amorehead/cense-ionic

Helping facilitate sensical personal finance practices.

Language: TypeScript - Size: 1.89 MB - Last synced: 29 days ago - Pushed: 29 days ago - Stars: 0 - Forks: 0

dime-worldbank/moz-proirri-savings

This repository contains the replication files for the paper "Do Private Consultants Promote Savings and Investments in Rural Mozambique?"

Language: Stata - Size: 4.15 MB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 2 - Forks: 2

webong/laravel-group-saving-api

A sample laravel api for managing group saving

Language: PHP - Size: 2.42 MB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

bumi/stacking-sats-binance

Stacking Sats with Binance and save yourself some Bitcoin

Language: Go - Size: 49.8 KB - Last synced: 9 months ago - Pushed: over 3 years ago - Stars: 5 - Forks: 0

goseind/sspc

A simple savings plan calculator to keep your portfolio balanced.

Language: HTML - Size: 59.6 KB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

CaoBittencourt/Econometrics-II

Estimação de modelos VAR(3) e VAR(10) para 91 países no período de 1960 a 2019, a fim de testar a causalidade de Granger entre as variåveis de Poupança Interna Bruta e crescimento do Produto Interno Bruto per capita.

Language: R - Size: 2.2 MB - Last synced: 7 months ago - Pushed: 7 months ago - Stars: 0 - Forks: 0

Yud-Bet/Eliteria

A savings account management app.

Language: C# - Size: 71 MB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 2 - Forks: 0

Valuedesk/Valuedesk

We make cost optimization to your core process. This saves you millions €.

Size: 6.84 KB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

alramalho/compound-composer

compound-composer.com

Language: JavaScript - Size: 1.16 MB - Last synced: about 1 year ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

charlierdm/Marble

An iOS/Android savings app to help cultivate positive habits.

Language: JavaScript - Size: 41.1 MB - Last synced: 12 months ago - Pushed: about 3 years ago - Stars: 0 - Forks: 0

NickFoden/paycheck-strategy

A React-Navi app for users to calculate the future paycheck date when their goal(s) will be reached.

Language: JavaScript - Size: 603 KB - Last synced: about 1 year ago - Pushed: over 5 years ago - Stars: 1 - Forks: 0

charlesumesi/BankAccount

A Python class that can simulate current (checking), savings, and balance accounts; fully interactive, non-GUI but easy to run and use.

Language: Python - Size: 59.6 KB - Last synced: 12 months ago - Pushed: almost 3 years ago - Stars: 0 - Forks: 0

2snEM6/BenefitsCalculator

A simple tool deployed to IPFS that lets you calculate your yearly savings when spending a fixed amount of money every month using your company benefits in Spain

Language: JavaScript - Size: 993 KB - Last synced: 7 months ago - Pushed: over 5 years ago - Stars: 9 - Forks: 1

KhinMeMeLatt/JavaFX_SuMel

Money box application implemented with JavaFX

Language: Java - Size: 23 MB - Last synced: about 1 year ago - Pushed: almost 3 years ago - Stars: 0 - Forks: 0

APACGAMONDE/APACGAMONDE-BANK-Card

APACGAMONDE BANK Credit Debit Card

Size: 119 KB - Last synced: about 1 year ago - Pushed: over 3 years ago - Stars: 2 - Forks: 4

FlorentF9/PersonalFinanceFormulas

A collection of useful but hard to remember personal finance formulas.

Language: Jupyter Notebook - Size: 1000 Bytes - Last synced: 12 months ago - Pushed: almost 7 years ago - Stars: 2 - Forks: 0

tadeaspaule/savings-forecast

Simple interactive tool to calculate how much and how long to save to achieve financial independance

Language: JavaScript - Size: 830 KB - Last synced: about 1 year ago - Pushed: about 3 years ago - Stars: 0 - Forks: 0

dimkael/InteractiveBezierCurves

Interactive bezier curves, that you can change with the mouse

Size: 666 KB - Last synced: 5 months ago - Pushed: about 3 years ago - Stars: 0 - Forks: 0

javaf/savings-account

A savings account is used to store salary/savings in a bank. This is a concurrent object (RAM) based account. For educational purposes only.

Language: Java - Size: 8.79 KB - Last synced: about 1 year ago - Pushed: over 3 years ago - Stars: 0 - Forks: 0

marlo22/My-Savings

[WIP] Android app to manage savings.

Language: JavaScript - Size: 40.7 MB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

ivarprudnikov/understanding-investments

Visualize compound interest and the way it affects savings

Language: JavaScript - Size: 4.98 MB - Last synced: 25 days ago - Pushed: over 3 years ago - Stars: 0 - Forks: 0

LordotU/my-savings-telegram-bot

đŸ€– This bot needs for simply storing your savings in a different currencies

Language: Go - Size: 38.1 KB - Last synced: 9 months ago - Pushed: over 3 years ago - Stars: 3 - Forks: 0

afsaa/Finanzas-Saludables

Proyecto para mi negocio personal Finanzas Saludables đŸ’Č💰

Language: TypeScript - Size: 1.76 MB - Last synced: about 1 year ago - Pushed: over 3 years ago - Stars: 0 - Forks: 0

spiray/house-box-calc

Language: JavaScript - Size: 7.81 KB - Last synced: about 1 year ago - Pushed: almost 4 years ago - Stars: 0 - Forks: 0

xdrr/hotsearch

Rapid search client for the lowest car rental prices

Language: Python - Size: 14.6 KB - Last synced: about 1 year ago - Pushed: about 4 years ago - Stars: 1 - Forks: 0

ThomasStorli/wine-db

Language: Vue - Size: 4.53 MB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 1

evgshk/nest-egg

Make tracking personal investments as easy as pie.

Language: TypeScript - Size: 2.35 MB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 3 - Forks: 2

smiklos/s3-downloader

A 'cost effective' way to download files

Language: Scala - Size: 722 KB - Last synced: about 1 year ago - Pushed: about 5 years ago - Stars: 1 - Forks: 0

Ndumisosizwe/personal_budget

A personal budget tool. Tracks your monthly and annual expenditure. Gives you useful reports about your shortfalls, your spending habits, strong and weak points.

Language: CSS - Size: 1.56 MB - Last synced: about 1 year ago - Pushed: over 5 years ago - Stars: 0 - Forks: 0

rafaeltovar/motoko-book-pdf

Hani Motoko (Japan, 1873–1957) household saving book PDF generator.

Language: PHP - Size: 1000 Bytes - Last synced: 9 months ago - Pushed: over 6 years ago - Stars: 0 - Forks: 0

wizardone/i_am_cheap

Savings app

Language: Elixir - Size: 71.3 KB - Last synced: 12 months ago - Pushed: over 6 years ago - Stars: 1 - Forks: 0

tarunisrani/DailyKharcha

It is an android app for tracking daily expenses and improving the habit of savings.

Language: Java - Size: 8.85 MB - Last synced: 23 days ago - Pushed: about 7 years ago - Stars: 0 - Forks: 1

deepdeev/kipcount

Keep count of your income and expenses all in a single place!

Language: JavaScript - Size: 520 KB - Last synced: about 1 year ago - Pushed: about 7 years ago - Stars: 0 - Forks: 3