Bitcoin Forum
May 24, 2024, 04:40:55 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 ... 146 »
201  Bitcoin / Project Development / Re: Reputation on: February 27, 2013, 12:36:27 PM
I didn't read all of your post yet(will do though), but I hope to have my P2P Crypt project be used as a "global" trust system as there is no unified database of "We trust this identity". It's "webs of webs of webs of trust" which could be analysed and output data accordingly based on a list of identities that you trust personally. (in other words it is/will be a system of "subjectivly/dynamic trust" based on "objectively real trust" values).
202  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 26, 2013, 10:53:38 AM
I have uploaded the client code and it is already set to the VPS server and should "Just connect" to the P2P Server node.
You can now test the client/server. I'll be uploading a video in a day or two to display how to use the test app for right now.
203  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 26, 2013, 03:13:13 AM
I just purchased a VPS 256mb of ram 64bit just to get testing to go by quicker. It shouldn't be long now until a test server is up.

UPDATES: Just trying to get the first connection going before I announce the IP address for testing.

UPDATES: Send/Receive has happened, bugs are already found, editing client code now.
204  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 25, 2013, 04:24:48 PM
I have publish the p2p crypt client code v0.0.11 that can send and receive messages. (You must add a contact name, and click on the contacts name to "Trigger" a receive message). I can't seem to get my code to compile for a 32 bit system so I can't upload any test server anywhere. perhaps someone could help out with that?

But you can however test the server locally.

Have fun.
205  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 25, 2013, 07:21:04 AM
The http://p2pcrypt.com website has undergone a few minor updates.

If you are a fan of this project and would like to show how much momentum you want this project to output you can send all contributions to the P2P Crypt Software Donation Fund Address: 14NqZ1w7x9gFFzt65Mxy38EPFrbrnR11is
206  Bitcoin / Legal / Re: Will lawyers ever band together and defend bitcoin in the name of freedom? on: February 25, 2013, 02:12:31 AM
The way I would see the legality of anything(In California) that is a victimless crime by analogy is if any "authority" figure that takes me into custody that is sworn by oath must have proof that I am an "enemy" of the state(or United States), and if there is no victim there is no crime to prove that I am an enemy of the state as oath keepers can only apply the law to enemies of the state, foreign and domestic. They have no obligation to apply the law to the free citizens or sovereign citizens which is anyone who isn't an enemy of the state as said in California law article 1.


Quote
"I, ___________________________, do solemnly swear (or affirm) that I will support and defend the Constitution of the United States and the Constitution of the State of California against all enemies, foreign and domestic; that I will bear true faith and allegiance to the Constitution of the United States and the Constitution of the State of California; that I take this obligation freely, without any mental reservation or purpose of evasion; and that I will well and faithfully discharge the duties upon which I am about to enter.

"And I do further swear (or affirm) that I do not advocate, nor am I a member of any party or organization, political or other- wise, that now advocates the overthrow of the Government of the United States or of the State of California by force or violence or other unlawful means; that within the five years immediately preceding the taking of this oath (or affirmation) I have not been a member of any party or organization, political or other-wise, that advocated the overthrow of the Government of the United States or of the State of California by force or violence or other unlawful means except as follows:

(If no affiliations, write in the words "No Exceptions") and that during such time as I hold the office of

______________________________________________ I will not advocate nor become (name of office) a member of any party or organization, political or otherwise, that advocates the overthrow of the Government of the United States or of the State of California by force or violence or other unlawful means."

And no other oath, declaration, or test, shall be required as a qualification for any public office or employment.

"Public officer and employee" includes every officer and employee of the State, including the University of California, every county, city, city and county, district, and authority, including any department, division, bureau, board, commission, agency, or instrumentality of any of the foregoing.
207  Bitcoin / Project Development / Re: Could bitcoin make Bill Gates idea of spam free email possible? on: February 23, 2013, 11:08:47 PM
Hashcash

http://en.wikipedia.org/wiki/Hashcash

(I believe hashcash was the inspiration for Bitcoin)
208  Bitcoin / Project Development / Re: Looking for development advice. on: February 23, 2013, 11:06:43 PM
I did / am actually considering hiring freelance.

Just PM me and we can walk through the process of getting what you need, your budgets, etc.
If you already have a web design things will go a lot faster than with out a web design picked out already but its fine either way.
209  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 23, 2013, 11:04:17 PM
Great vernon! We need more testers.

I was hoping to have more updates last weekend or even this weekend but my "paying" jobs have been allocating all my time so it looks like "next" weekend (or even this following week it self) will begin the testing pre-alpha phase. Thanks for your patience everyone!
210  Bitcoin / Project Development / Re: Looking for development advice. on: February 23, 2013, 10:24:21 AM
If you are a developer of PHP you can use the Bitcoin Development Kit (for PHP). It allows you to design your cart how you want it and manage your own financials with out worry about relying on a third party.

http://BitcoinDevKit.com

You can also hire me to develop a system for you as well, with security and penetration testing included.
211  Bitcoin / Bitcoin Discussion / Re: Bitcoin-Qt / bitcoind version 0.8.0 released on: February 22, 2013, 11:51:51 AM
Nice job on 0.8.0 guise.... Everything is super quick -- LOVE IT!
212  Bitcoin / Project Development / Re: Developers - Best practises for decimal handling on: February 22, 2013, 02:04:51 AM
Your site may need more integer math accuracy than 1 satoshi = 1

example: 1 satoshi - 1.3% fee = .987 satoshis

>>> print int(.987)
0
>>> print int(round(.987))
1

However, even using arbitrary precision, these libraries don't necessary give you the correct answer anywhere near the magnitude of the float precision defined.

>>> getcontext().prec = 6
>>> Decimal (.00000001) * Decimal (.987)
Decimal('9.87000E-9')

>>>getcontext().prec = 2000
>>> Decimal (.00000001) * Decimal (.987)[/b]
Decimal('9.87000000000000009104248083235174268563047313600349515597682205532708579013502123676582211686536 538763903081417083740234375E-9')

It's close enough though - you'd get an extra 9 satoshi if your transaction was 10 billion BTC.

Assuming the total BTC in circulation limit was increased this could ever actually happen yes.
213  Other / Off-topic / Re: Bitcoin memes! on: February 20, 2013, 01:34:43 AM
Wait till they find out there's no entitlement programs either.
lol, what kind of entitlement programs are you referring to?
214  Other / Off-topic / Re: Bitcoin memes! on: February 20, 2013, 12:16:22 AM
I almost puked when this happened to me, someone did ask this and when I replied "no Bitcoins doesn’t do tax returns" they were done with the "bitcoin" conversation and thought it was a joke
215  Bitcoin / Project Development / Re: PHP Bitcoin Development Kit | Alpha Release canidate v0.0.43 | BitcoinDevKit.com on: February 19, 2013, 10:27:41 PM
More updates to come in late March/Early April.
216  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 17, 2013, 04:24:37 AM

I think the most important thing is to get everything right. Things like this takes time, and sometimes you hit upon problems and things takes even longer time. As long as you work hard, I'm sure things will turn out pretty well though. Smiley

Exactly! That is why I almost have carpal tunnel(half-joking), and my friends think I'm waiting for the apocalypse I've been in my cave for so long(haha) and this is the 4th time I have re-written the client software from scratch(with each time modifying+revising the setup/basecode). This time the client software (for testing purposes) does not even include openssl libraries or any encryption algorithms all that is going on in this test is "set your user name", type in your "Friends username" and start talking in plain text and basically see "what happens" really and continue with the plan while being aware of the issues that arose from testing phase.


Anywho, I've successfully received a "messgehistory" response from the server to the newly written client software now I'm just parsing the json and outputting it to the screen(the easy part). I say 10 PM (PST) is my target time as of now if I don't make it by 12am (PST) 17th  then it may be till next weekend till some more updates happen at that point.
217  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 16, 2013, 06:37:09 PM

Allright, I hope to get to download the source code and try to compile your code over the weekend, and do the tests you outlined.

Yep source code is always available and I would love to have a tester that knows their way around compiling code to help with "debug".


Also I'm almost positive I'll be running late for the 12PM (PST) testing time, I think at the rate I'm going, testing will start around 6PM (PST) -- I hope sooner though.


UPDATES:

The last bit of code is going into the pre-alpha testing destined to start at 10PM maybe 12AM PST.

MORE UPDATES:
Client is ready for testing (not published to github yet), I"m updating the server code to reflect the client changes.
218  Bitcoin / Project Development / Re: Creating a profitable website, how to do it without anything except the idea ? on: February 16, 2013, 09:27:37 AM
Isnt this an ecommerce question not a Bitcoin question?
219  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 16, 2013, 04:26:15 AM
I am almost done splitting up the "prototype" application into separate parts and we can begin testing, don't hold  your breath yet, It should be ready Saturday around 12PM PST
220  Bitcoin / Project Development / Re: [FOSS] P2P Crypt - Encrypted text, voice, & video communications - Turnkey on: February 15, 2013, 07:04:44 AM
Just about have the "Message History"/"Contacts List" page finished I'm almost positive pre-alpha testing will be ready for tomorrow night.


Some notes: After the 3rd re-write from scratch of the "client" software it shall be noted that pre-alpha testing will consisnt of two applications... the first being for "generate identity" and a different code for "send/recieving messages" to help testing reports go more smoothly
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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 ... 146 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!