Search content
Sort by

Showing 11 of 11 results by stumbles
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | Cryptocurrency for the masses | Easy to use, buy, mine and understand |
by
stumbles
on 11/09/2014, 09:25:51 UTC
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.
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | Cryptocurrency for the masses | Easy to use, buy, mine and understand |
by
stumbles
on 11/09/2014, 00:58:14 UTC
my gf is a artist
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | Cryptocurrency for the masses | Easy to use, buy, mine and understand |
by
stumbles
on 08/09/2014, 13:49:15 UTC
Come join us on irc @ freenode/pandacoinpnd
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 7 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 23/08/2014, 16:30:18 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 10 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 20/08/2014, 17:02:29 UTC
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!
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 10 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 20/08/2014, 07:17:22 UTC
Im getting tired. Gonna go lay down. Ill be back up in the AM for lots more. Good night all.

<3 Love PND <3
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 10 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 20/08/2014, 07:00:52 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 12 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 18/08/2014, 16:14:23 UTC
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)
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 12 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 18/08/2014, 05:24:05 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 13 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 17/08/2014, 03:34:35 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [PND]Pandacoin | 14 DAYS LEFT | August 30th - Rethinking Digital Currencies |
by
stumbles
on 16/08/2014, 22:25:49 UTC
New to this pandacoin thing. but cant wait til the 30th i already have some coins!