Bitcoin Forum
September 21, 2025, 06:57:15 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | Cryptocurrency for the masses | Easy to use, buy, mine and understand | on: September 11, 2014, 09:25:51 AM
As for any questions/concerns concerning my gf.

I am currently out of the country at the moment, and she has a full time job.
Ill be getting home at the end of the month.
Will let her know about doing a comic when i get home.
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | Cryptocurrency for the masses | Easy to use, buy, mine and understand | on: September 11, 2014, 12:58:14 AM
my gf is a artist
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | Cryptocurrency for the masses | Easy to use, buy, mine and understand | on: September 08, 2014, 01:49:15 PM
Come join us on irc @ freenode/pandacoinpnd
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 7 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 23, 2014, 04:30:18 PM
I love pandacoin pnd!

Cant wait for 8/30 release.

If anyone has any ideas for python scripts, shoot me a idea on here or irc and ill see how fast i can code it up


Peace
Love
Panda
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 10 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 20, 2014, 05:02:29 PM
https://twitter.com/MintPalExchange/status/502134861310992384

PANDA (scamcoin) confirmed to be removed on MintPal August 23rd.

No more confusion between us and them. Cheesy

this is outstanding news for the community!
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 10 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 20, 2014, 07:17:22 AM
Im getting tired. Gonna go lay down. Ill be back up in the AM for lots more. Good night all.

<3 Love PND <3
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 10 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 20, 2014, 07:00:52 AM
Code:
#! /usr/bin/python2
# mintpal api coin converter
#
import json
import urllib2
import argparse

parser = argparse.ArgumentParser()
parser.add_argument("quantity", help="How many coins to convert", type=int)
parser.add_argument("base", help="Coin to start with", type=str)
args = parser.parse_args()

class MintPal():
def __init__(self):
self.version = 0.1
self.author = "STumbles"
def to_ltc(self):
self.url = "https://api.mintpal.com/v1/market/stats/%s/ltc" % (args.base)
self.data = json.loads(urllib2.urlopen(self.url).read())
self.coin_name = self.data[0]['coin']
self.coin_value = self.data[0]['last_price']
self.user_coin_total_worth = float(self.coin_value) * float(args.quantity)
print "%d %s is worth %s LiteCoins (LTC)" % (args.quantity, self.coin_name, str(self.user_coin_total_worth))

def main():
mp = MintPal()
mp.to_ltc()

if __name__ == "__main__":
main()




http://dpaste.com/12CMH2D this one uses mintpal (my other used cryptonator.) the API's are slightly different and i havent added in any coin_conversion yet. but this current build will allow quick command_line checking of PND -> LTC [doesnt have to be pnd. can be any mintpal/ltc coin(also easily editable for mintpal/btc markets)]


USAGE : python2 mintpal.py quantity coinabbreviation

EXAMPLE : python2 mintpal.py 15000 pnd
RESULT : 15000 PandaCoin (PND) is worth 0.04065 LiteCoins (LTC)

IN THE FUTURE
support for USD
converting to other coins rather than ltc/btc

i had this down easily and simply with the last API. results were not accurate though
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 12 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 18, 2014, 04:14:23 PM
Code:
#! /usr/bin/python2
# cryptonator API
# Written for Linux with Python2
# Author STumbles

import urllib2
import json
import argparse

parser = argparse.ArgumentParser()
parser.add_argument("quantity", help="How many coins to convert", type=int)
parser.add_argument("base", help="Coin to start with", type=str)
parser.add_argument("target", help="Currency to convert to", type=str)
args = parser.parse_args()

class CoinConvert():
def __init__(self):
self.url = "https://www.cryptonator.com/api/ticker/%s-%s" % (args.base, args.target)
self.data = urllib2.urlopen(self.url).read()
self.json_data = json.loads(self.data)
try:
self.price = self.json_data['ticker']['price']
except:
print "error gathering a major key\nerror handling will be taken care of later\nfor now just report the problem to\n\nSTumbles @ freenode/pandacoinpnd"
try:
self.price = float(self.price)
except:
print "error converting result to float\nerror handling will be taken care of later\nfor now just report the problem to\n\nSTumbles @ freenode/pandacoinpnd"
self.answer = self.price * args.quantity
print self.answer

def main():
cc = CoinConvert()

if __name__ == "__main__":
main()


syntax: python2 coinconversion.py quantity base target

example: python2 coinconversion.py 10000 pnd ltc
example: python2 coinconversion.py 10000 pnd usd
example: python2 coinconversion.py 300 usd pnd



There wasnt much time put in to this, so i wouldnt ask for much if anything.
but if you want me to keep me motivated to write neat scripts for you guys
PUvHB2P7rBWq39skFYTW6Q3TzhQsN6BvdU - this will go directly towards beer and pizza to fuel me

what this do? plz explain

It's a scrypt for Linux as far as I understand to check the price of pnd Smiley

its a command line tool for linux that converts a currency in to another currency.
say you want to see how many pnd you can buy with $15.00

stumbles@arch ~/projects/PND$ python2 coinconvert.py 15 usd pnd                
1532781.23887

you can buy a little over 1.5 million (at this time)
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 12 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 18, 2014, 05:24:05 AM
Code:
#! /usr/bin/python2
# cryptonator API
# Written for Linux with Python2
# Author STumbles

import urllib2
import json
import argparse

parser = argparse.ArgumentParser()
parser.add_argument("quantity", help="How many coins to convert", type=int)
parser.add_argument("base", help="Coin to start with", type=str)
parser.add_argument("target", help="Currency to convert to", type=str)
args = parser.parse_args()

class CoinConvert():
def __init__(self):
self.url = "https://www.cryptonator.com/api/ticker/%s-%s" % (args.base, args.target)
self.data = urllib2.urlopen(self.url).read()
self.json_data = json.loads(self.data)
try:
self.price = self.json_data['ticker']['price']
except:
print "error gathering a major key\nerror handling will be taken care of later\nfor now just report the problem to\n\nSTumbles @ freenode/pandacoinpnd"
try:
self.price = float(self.price)
except:
print "error converting result to float\nerror handling will be taken care of later\nfor now just report the problem to\n\nSTumbles @ freenode/pandacoinpnd"
self.answer = self.price * args.quantity
print self.answer

def main():
cc = CoinConvert()

if __name__ == "__main__":
main()


syntax: python2 coinconversion.py quantity base target

example: python2 coinconversion.py 10000 pnd ltc
example: python2 coinconversion.py 10000 pnd usd
example: python2 coinconversion.py 300 usd pnd



There wasnt much time put in to this, so i wouldnt ask for much if anything.
but if you want me to keep me motivated to write neat scripts for you guys
PUvHB2P7rBWq39skFYTW6Q3TzhQsN6BvdU - this will go directly towards beer and pizza to fuel me
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 13 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 17, 2014, 03:34:35 AM
Im having troubles with snake and flappy games is someone can offer some help it would be much appreciated.

Code:
stumbles@arch ~/Downloads/PND Snake$ wine Snake.exe                                                                          1 ↵  

Unhandled Exception:
System.InvalidProgramException: Invalid IL code in .: (): IL_001f: call      0x0a00006c


[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidProgramException: Invalid IL code in .: (): IL_001f: call      0x0a00006
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PND]Pandacoin | 14 DAYS LEFT | August 30th - Rethinking Digital Currencies | on: August 16, 2014, 10:25:49 PM
New to this pandacoin thing. but cant wait til the 30th i already have some coins!
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!