Bitcoin Forum
April 24, 2024, 07:31:42 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: What should the ticker be for Aura/YouStock
YOU
ARA
AYO
AYS
XAR

Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 21 22 23 24 »  All
  Print  
Author Topic: [ANN][ETHASH][PoW] Aura - Smart Contract Ledger & YouStock - Tokenized Selfhood  (Read 31202 times)
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 28, 2018, 11:33:17 PM
 #181

Suggestions for Bounties
https://medium.com/@mustwin/building-an-oracle-for-an-ethereum-contract-6096d3e39551
http://www.oraclize.it/
https://www.smartcontract.com/link


Creating Tokens
https://www.ethereum.org/token
https://steemit.com/ethereum/@maxnachamkin/how-to-create-your-own-ethereum-token-in-an-hour-erc20-verified

1713987102
Hero Member
*
Offline Offline

Posts: 1713987102

View Profile Personal Message (Offline)

Ignore
1713987102
Reply with quote  #2

1713987102
Report to moderator
1713987102
Hero Member
*
Offline Offline

Posts: 1713987102

View Profile Personal Message (Offline)

Ignore
1713987102
Reply with quote  #2

1713987102
Report to moderator
1713987102
Hero Member
*
Offline Offline

Posts: 1713987102

View Profile Personal Message (Offline)

Ignore
1713987102
Reply with quote  #2

1713987102
Report to moderator
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 02:00:40 AM
 #182

Here is a Smart Contract someone can make into a YouStock

Code:
pragma solidity ^0.4.11;
 
contract Token {
    string public symbol = "";
    string public name = "";
    uint8 public constant decimals = 18;
    uint256 _totalSupply = 0;
    address owner = 0;
    bool setupDone = false;

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
 
    mapping(address => uint256) balances;
 
    mapping(address => mapping (address => uint256)) allowed;
 
    function Token(address adr) {
owner = adr;        
    }

function SetupToken(string tokenName, string tokenSymbol, uint256 tokenSupply)
{
if (msg.sender == owner && setupDone == false)
{
symbol = tokenSymbol;
name = tokenName;
_totalSupply = tokenSupply * 1000000000000000000;
balances[owner] = _totalSupply;
setupDone = true;
}
}
 
    function totalSupply() constant returns (uint256 totalSupply) {        
return _totalSupply;
    }
 
    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }
 
    function transfer(address _to, uint256 _amount) returns (bool success) {
        if (balances[msg.sender] >= _amount
            && _amount > 0
            && balances[_to] + _amount > balances[_to]) {
            balances[msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(msg.sender, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
 
    function transferFrom(
        address _from,
        address _to,
        uint256 _amount
    ) returns (bool success) {
        if (balances[_from] >= _amount
            && allowed[_from][msg.sender] >= _amount
            && _amount > 0
            && balances[_to] + _amount > balances[_to]) {
            balances[_from] -= _amount;
            allowed[_from][msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(_from, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
 
    function approve(address _spender, uint256 _amount) returns (bool success) {
        allowed[msg.sender][_spender] = _amount;
        Approval(msg.sender, _spender, _amount);
        return true;
    }
 
    function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }
}

Code:
[{"constant":true,"inputs":[],"name":"name","outputs":

[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":

[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":

[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":

[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},

{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},

{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":

[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":

[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},

{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":

[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":

[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},

{"constant":false,"inputs":[{"name":"_to","type":"address"},

{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":

[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":

[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},

{"name":"tokenSupply","type":"uint256"}],"name":"SetupToken","outputs":[],"payable":false,"type":"function"},

{"constant":true,"inputs":[{"name":"_owner","type":"address"},

{"name":"_spender","type":"address"}],"name":"allowance","outputs":

[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":

[{"name":"adr","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":

[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},

{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":

[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},

{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 04:17:37 AM
 #183

I am not absolutely positive, but I believe that this game can be played using Aura.
http://www.bspend.com/etherization

Here are some other Decentralized Apps Built on Ethereum, we may be able to use many of them on Aura.
https://www.stateofthedapps.com/
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 04:41:32 AM
 #184

I had not even thought of this until now, but apparently because you can create Smart Contracts (which can be apps) on the Ethereum Blockchain, and the Aura Blockchain...

We can actually create exchanges on the Aura Blockchain
https://www.stateofthedapps.com/dapps/etherdelta

EtherDelta is build on the Ethereum Blockchain apparently, I did not know that until a minute ago.

Here are more.
https://www.stateofthedapps.com/dapps/ico-wizard
https://www.stateofthedapps.com/dapps/decentrex
https://www.stateofthedapps.com/dapps/bitok-dice
https://wizard.oracles.org/
https://decentraland.org/
https://www.stateofthedapps.com/dapps/sportcrypt
https://www.stateofthedapps.com/dapps/blockjack
https://www.stateofthedapps.com/dapps/etherwall
https://www.stateofthedapps.com/dapps/slotthereum
https://www.stateofthedapps.com/dapps/realms-of-ether
https://www.stateofthedapps.com/dapps/ether-rock
https://www.stateofthedapps.com/dapps/tipeth
https://www.stateofthedapps.com/dapps/cryptoface
https://www.stateofthedapps.com/dapps/smartex

And one that many people may have heard about or read articles about, but didn't fully understand.
https://www.stateofthedapps.com/dapps/cryptokitties
beyondcr
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 29, 2018, 07:04:33 AM
Last edit: January 29, 2018, 07:17:49 AM by beyondcr
 #185

Spreading the word, ARA Sounds Good.

My wallet: 0xF8C82c1F5CB49561FFe6658BB924d9F25173a767

Best of Luck!
rquitage
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
January 29, 2018, 09:22:26 AM
 #186

hungarian translation reserved
feeleep
Legendary
*
Offline Offline

Activity: 1197
Merit: 1000


View Profile WWW
January 29, 2018, 12:36:37 PM
 #187

Hi - you are welcome to join our pool here: https://www2.coinmine.pl/aura/ (PPLNS, stable payouts, multiple geo nodes, 1% fee)

feeleep

youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
January 29, 2018, 03:32:51 PM
 #188

Hi - you are welcome to join our pool here: https://www2.coinmine.pl/aura/ (PPLNS, stable payouts, multiple geo nodes, 1% fee)

feeleep

Thanks, you've been added to the ANN and website.

Espacee
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
January 29, 2018, 06:33:45 PM
 #189

Does anyone know the value of 1 token aura?

At the moment, mining calculation result is 0.75$ mining cost of each Aura..
brothachen
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
January 29, 2018, 07:58:23 PM
 #190

Good luck.. I reviewed the github and there's nothing new in the source code other than a new word "toauraer" and a few parameter changes. Roll Eyes
Zoule
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
January 29, 2018, 09:14:32 PM
 #191

Alright, just joined the Discord and Telegram. First time taking a coin seriously and I'm trying to get people I know to join the community. Just one question, what is the node (the download on the website) exactly?

Wallet: 0xd25bCFf24EfF861499DC80430613A3E2012A7036

Good luck everyone!
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 09:29:10 PM
 #192

Good luck.. I reviewed the github and there's nothing new in the source code other than a new word "toauraer" and a few parameter changes. Roll Eyes

This is an Ethereum Clone. That is not being hidden.

The Temple Coin Team is currently working on new Source Code as well though, we will have our own version of Ethereum soon enough.

Aura was not made by Temple Coin, but I had just made my first Ethereum Clone, and was not sure how to make a GUI interface, and then the next day I randomly found that Aura had been created just a day after I first Cloned Ethereum.

And the YouStock is a good Focus, I am the Creator of the Cryptocurrency Towns Concept, so I am using Aura as the base for anyone who wants to make a Town Coin or a State Coin or a Government Coin or a Company Coin or whatever, but wants it to be like a Stock, or Coupon, we will use the Ethereum Token Model on the Aura Blockchain. And I like the name Aura, as it goes with the name Temple Coin.

So we don't really need large Scale Bitcoiner adoption, I already have the plans for what the Temple Community will do with it. And we will accept other Ethereum Clones/Forks as well.

But again, we also already have someone working on one with new Source Code.

Temple Coin is a Coin Network, and we are looking for New Coins.
youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
January 29, 2018, 09:36:54 PM
 #193

Good luck.. I reviewed the github and there's nothing new in the source code other than a new word "toauraer" and a few parameter changes. Roll Eyes

Thanks for reviewing the sourcecode.  Keep in mind, this project was never about creating a new blockchain protocol.  Instead, this project is mainly about "tokenized selfhood" and "people stocks", although it is completely open to anything users want to build on it, just like ethereum.  We decided to build on a separate blockchain to avoid the $2+ avg transaction fees we're now seeing on Ethereum, that will likely continue to increase as it continues to gain traction around the world.  Splitting projects into separate chains like this is one solution to the scaling problem.  If you're not involved in a particular subcommunity, you don't have to process their transactions.

youstock (OP)
Copper Member
Jr. Member
*
Offline Offline

Activity: 76
Merit: 1

Tokenized selfhood


View Profile WWW
January 29, 2018, 09:41:57 PM
 #194

Alright, just joined the Discord and Telegram. First time taking a coin seriously and I'm trying to get people I know to join the community. Just one question, what is the node (the download on the website) exactly?

Wallet: 0xd25bCFf24EfF861499DC80430613A3E2012A7036

Good luck everyone!

Welcome.  The node is what's called a "full node", it downloads the entire blockchain and verifies all transactions and blocks.  It's needed if you plan to solo mine.  It's also a command line wallet, you can check balances and make transactions, but it doesn't have a nice GUI to do those things for you. 

The web wallet on the other hand doesn't require downloading the full blockchain, and has a more user friendly interface for sending/receiving aura and deploying smart contracts.

immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 09:49:39 PM
 #195

And really, what is Ethereum Classic? And because that exists, what is Ethereum? Aren't they really just Clones of Etheruem with a few Parameter Changes.

EtherZero, what is a 0 Gas Price really but a Parameter change.

No one is really making massive changes to Ethereum, and they are going up to $100+. At least Aura has a new name, that has a meaning that is deeper than Xthereum and all these other random Coin names.

At least Ethereum is kind of an Asatru Spiritual thing, and Greek even. But what does "EtherZero" mean to someone that saw the word "Bitcoin" in a newspaper article.

Aura means something.
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 10:39:16 PM
 #196

Everyone should start making Aura Facebook groups, and you can make them General Coin based Groups, and then you can talk about all kinds of Coins in it. Then share the Group here and everyone here can join and we can all post in each others groups.
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 10:51:21 PM
 #197

Btw, Temple Coin is being done under the name of the Shaivite Temple, and on the Shaivite Temple Website. So there will be no Taxes for Religious Trading. No Taxes for Seeds, no Taxes for anything traded for Temple Coins with a Non-Profit Entity, or for Donations. And we may be able to work out Deductions for Cryptocurrency Donations on your Taxes. If they want to Tax it in your average situation, they need to Deduct it when you Donate it also probably.

When people begin making Tokens for their Non-Profit on the Aura Blockchain, and creating Apps that do simple Calculations.
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 11:11:15 PM
 #198

MySQL
https://www.youtube.com/watch?v=n6OwXJw2_eI&list=PLMrTtbMO6mv_Hn7DvpO62RxyxodHhkQda&index=1&spfreload=5

Powershell
https://www.youtube.com/watch?v=wQOONLaozjQ&list=PL8U9xbzeyGGbV8pqFuMK9WZn69IyinIMF

Java
https://www.youtube.com/watch?v=Hl-zzrqQoSE&list=PLFE2CE09D83EE3E28

PHP
https://www.youtube.com/watch?v=iCUV3iv9xOs&list=PL3FFCC41F80881A89

onnecting PHP and MySQL
https://www.youtube.com/watch?v=e0ssKVEISbQ&list=PLz_6dB4PItBEQEbVSAt6vrTOACQZD1K1E

Web Development
https://www.youtube.com/watch?v=Z077ADD4p3U&list=PLz_6dB4PItBFRZhRS9yvqa2N19zqpieuu
https://www.youtube.com/user/jsconfeu
https://www.youtube.com/user/GoogleDevelopers
https://www.youtube.com/watch?v=862r3XS2YB0&list=PLOU2XLYxmsILe6_eGvDN3GyiodoV3qNSC
https://www.youtube.com/channel/UCCoCAr73P_gdvxQSufAMB6g
https://www.youtube.com/watch?v=zKkUN-mJtPQ&list=PL6n9fhu94yhWKHkcL7RJmmXyxkuFB3KSl
https://www.youtube.com/watch?v=a59kOE2Ma1Q&list=PL6n9fhu94yhVDV697uvHpavA3K_eWGQap
https://www.youtube.com/watch?v=s6R0VEdoVt4&list=PLqq-6Pq4lTTYFJxC9NLJ7dSTI5Z1WWB6K
https://www.youtube.com/watch?v=K1EeEps-zXc&list=PLdoNy3Uq-ifyalRJfpx-to-1HdFtw3Jm_
https://www.youtube.com/watch?v=-o8hhJPK0m0&list=PLAwxTw4SYaPmRCRPu9EjK-fWSccPwTOnc

PROLOG

https://www.youtube.com/watch?v=SykxWpFwMGs
https://www.youtube.com/watch?v=gJOZZvYijqk&list=PLVmRRBrc2pRCWtYk752jCIfhD8GmoYfc_
https://www.youtube.com/watch?v=Ay2o3Nv1A-Q&list=PLmiQ7Pe7Po0w2uS41Bk7trE4XGN4IRYHD

Python
https://www.youtube.com/watch?v=husPzLE6sZc&list=PLJR1V_NHIKrCkswPMULzQFHpYa57ZFGbs
https://www.youtube.com/watch?v=Ubtld2PGUhk&list=PLHdCowjFIBmI1UV60W1TVa7l91Psnw73E
https://www.youtube.com/watch?v=uzSrnySaSQI&list=PL0845FEB57E5894C2
https://www.youtube.com/watch?v=N0lxfilGfak&list=PL9ooVrP1hQOHY-BeYrKHDrHKphsJOyRyu
https://www.youtube.com/watch?v=tKTZoB2Vjuk&list=PLC8825D0450647509
https://www.youtube.com/watch?v=X0FoelOIZM0&list=PLAwxTw4SYaPnYajEbZvqtcVWQ6XGhvtOW
https://www.youtube.com/watch?v=k6U-i4gXkLM&list=PL57FCE46F714A03BC
https://www.youtube.com/watch?v=1F_OgqRuSdI&list=PL0-84-yl1fUnRuXGFe_F7qSH1LEnn9LkW


https://www.youtube.com/channel/UCwTD5zJbsQGJN75MwbykYNw
https://www.youtube.com/user/PythonItalia
https://www.youtube.com/watch?v=OB1reY6IX-o&list=PLYx7XA2nY5Gf37zYZMw6OqGFRPjB1jCy6

https://www.youtube.com/watch?v=fhQfW5mlx8s&list=PLB7jxGXLK_jZs_uUVappeI5UCrAFHRkgW
https://www.youtube.com/watch?v=NzzGt7EmXVw&list=PLqGj3iMvMa4KlJn1pMYPVV3eYzxJlWcON
https://www.youtube.com/watch?v=dD2EISBDjWM&list=PLr6-GrHUlVf_ZNmuQSXdS197Oyr1L9sPB
https://www.youtube.com/watch?v=yTHTo28hwTQ&list=PLgGbWId6zgaWZkPFI4Sc9QXDmmOWa1v5F
https://www.youtube.com/watch?v=eyWVaaNEeEk&list=PL0OHBocTxrFqiqjS64QmiIiR0B5dmLfJ1
https://www.youtube.com/watch?v=0YeLdjPNDj4&list=PLG6U31JzuVBbQsePuktz6TGZ4J0TSxSrS
https://www.youtube.com/watch?v=0V3XuBzs8M0&list=PLYxzS__5yYQk3V3b8yJZfyH-cX4LbgyYj

https://www.youtube.com/watch?v=i9MHigUZKEM
https://www.youtube.com/watch?v=ejBkOjEG6F0
https://www.youtube.com/watch?v=nO1ROKMjPqI&list=PLvZkOAgBYrsS_ugyamsNpCgLSmtIXZGiz
https://www.youtube.com/watch?v=NJ4FYsRV3nU&list=PLLnpHn493BHF6utwkwpo7RN-GPg1sZhvK
immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 11:20:26 PM
 #199

Git Repositories

Flowcharts
https://github.com/adrai/flowchart.js
https://github.com/laughinghan/flowchart
https://github.com/codecapers/AngularJS-FlowChart
https://github.com/alexgheorghiu/diagramo
https://github.com/knsv/mermaid
https://github.com/ZevanRosser/Znode
https://github.com/rich-iannone/DiagrammeR
https://github.com/dookehster/Javascript-Flowchart
https://github.com/adrexia/silverstripe-flowchart
https://github.com/scottrogowski/code2flow

Abstract syntax tree
https://github.com/ajaxorg/treehugger
https://github.com/javaparser/javaparser
https://github.com/CastXML/CastXML
https://github.com/RomanYankovsky/DelphiAST
https://github.com/nikic/php-ast
https://github.com/fabsx00/joern
https://github.com/Swatinem/esgraph
https://github.com/facebookarchive/lex-pass

Tree Structure
https://github.com/nicmart/Tree
https://github.com/BlueM/Tree
https://github.com/evolve75/RubyTree
https://github.com/benedikt/mongoid-tree
https://github.com/stanfordnlp/treelstm
https://github.com/ludo/jquery-treetable
https://github.com/joaonuno/tree-model-js
https://github.com/stefankroes/ancestry

Radar Chart
https://github.com/alangrafu/radar-chart-d3
https://github.com/johnnywjy/JYRadarChart
https://github.com/raspu/RPRadarChart
https://github.com/tnzk/Raphael-Radar
https://github.com/xcltapestry/XCL-Charts
https://github.com/josefnpat/RadarChart
https://github.com/vthinkxie/angular-radar

Portal
https://github.com/flowersinthesand/portal
https://github.com/blueboy/portal
https://github.com/kaptk2/portal
https://github.com/josevalim/portal
https://github.com/liferay/liferay-portal
https://github.com/Jasig/uPortal

Concept Map
https://github.com/allain/JavaScript-Concept-Map
https://github.com/iainstitute/iai-concept-map
https://github.com/vincekd/Concept-Map
https://github.com/stdavis/OfflineMbTiles
https://github.com/JacobMoore/Adaptive-Map

Semantic Network
https://github.com/commonsense/conceptnet
https://github.com/gnowgi/gnowsys-studio
https://github.com/HyeonwooNoh/DeconvNet
https://github.com/torrvision/crfasrnn
https://github.com/commonsense/conceptdb

Sociogram
https://github.com/ccoenraets/sociogram
https://github.com/ccoenraets/sociogram-mobile
https://github.com/ccoenraets/sociogram-angular-ionic

Pivot Chart
https://github.com/nicolaskruchten/pivottable
https://github.com/pgollakota/django-chartit
https://github.com/nicolaskruchten/jupyter_pivottablejs

Rhizome
https://github.com/ztellman/rhizome
https://github.com/rhizomik/rhizomer

Semantic Web
https://github.com/jmvanel/semantic_forms
https://github.com/mark-watson/lisp_practical_semantic_web

Radial Tree
https://github.com/okfn/bubbletree

Mind Map
https://github.com/SamuraiPrinciple/mapjs

Cognitive Map
https://github.com/megadix/jfcm


Microsoft Script Resources
https://gallery.technet.microsoft.com/scriptcenter

Machine Learning Open Source Git Repositories
https://github.com/tensorflow/tensorflow
https://github.com/nlintz/TensorFlow-Tutorials
https://github.com/jikexueyuanwiki/tensorflow-zh
https://github.com/nivwusquorum/tensorflow-deepq
https://github.com/aymericdamien/TensorFlow-Examples
https://github.com/ethereon/caffe-tensorflow
https://github.com/josephmisiti/awesome-machine-learning
https://github.com/wepe/MachineLearning
https://github.com/hangtwenty/dive-into-machine-learning
https://github.com/pbharrin/machinelearninginaction
https://github.com/pennyliang/MachineLearning-C---code
https://github.com/Xyclade/MachineLearning
https://github.com/soulmachine/machine-learning-cheat-sheet
https://github.com/jcgillespie/Coursera-Machine-Learning
https://github.com/1094401996/machine-learning-coursera
https://github.com/masinoa/machine_learning
https://github.com/rhiever/Data-Analysis-and-Machine-Learning-Projects
https://github.com/luispedro/BuildingMachineLearningSystemsWithPython
https://github.com/josephmisiti/machine-learning-module
https://github.com/rasbt/python-machine-learning-book
https://github.com/awslabs/machine-learning-samples
https://github.com/X-Brain/MachineLearning
https://github.com/scikit-learn/scikit-learn
https://github.com/zhouxc/Stanford-Machine-Learning-Course
https://github.com/junku901/machine_learning
https://github.com/emilmont/Artificial-Intelligence-and-Machine-Learning
https://github.com/deeplearningparis/dl-machine
https://github.com/Azure/Azure-MachineLearning-DataScience
https://github.com/ty4z2008/Qix
https://github.com/jbrownlee/CleverAlgorithmsMachineLearning
https://github.com/stedy/Machine-Learning-with-R-datasets
https://github.com/mathias-brandewinder/Machine-Learning-In-Action
https://github.com/ReactiveCJ/BayesianLearning
https://github.com/Prooffreader/intro_machine_learning

immakingacoin
Member
**
Offline Offline

Activity: 98
Merit: 11


View Profile
January 29, 2018, 11:44:04 PM
 #200

Free Photoshop Alternatives
https://www.gimp.org/downloads/
http://www.photoshop.com/products/photoshopexpress
https://pixlr.com/
http://www.getpaint.net/download.html
http://www.picmonkey.com/
http://pixia.en.softonic.com/
http://seashore.sourceforge.net/The_Seashore_Project/About.html
https://inkscape.org/en/download/
http://www.xaraxtreme.org/
http://sourceforge.net/projects/cinepaint/files/CinePaint/
https://krita.org/
http://www.photofiltre-studio.com/download-en.htm
https://www.sumopaint.com/home/
https://code.google.com/p/grafx2/wiki/Downloads
http://www.serif.com/photoplus/
http://www.pixelmator.com/mac/
https://www.befunky.com/
https://www.aviary.com/
https://affinity.serif.com/en-us/photo/
https://picasa.google.com/
http://fotoflexer.com/
http://www.ribbet.com/
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 21 22 23 24 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!