Giter Club home page Giter Club logo

bitcoin.org's People

Contributors

achow101 avatar alejandrodelatorre avatar alexchorman avatar arvicco avatar cobra-bitcoin avatar cornelius avatar crwatkins avatar gavinandresen avatar genjix avatar gmaxwell avatar harding avatar i-rme avatar i3inary avatar jlopp avatar jonathancross avatar kuzzmi avatar l33d4n avatar laanwj avatar louisjc avatar luke-jr avatar mbupdates avatar mirobit avatar nopara73 avatar odarboe avatar saivann avatar schildbach avatar sifrant avatar theymos avatar wbnns avatar zolgarr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bitcoin.org's Issues

Choose your wallet page should not group web-only wallets (coinbase) and client-side JS wallets like blockchain

There is a big difference between two kinds of "web wallets".

Coinbase controls and does not reveal your own private keys to you, so your coins are ultimately only as safe as coinbase is safe to continue its operations.

This is very different from blockchain.info where which does client-side javascript operations and is not in possession of users' keys and the user should not lose the coins (assuming wallet backup was properly done) if / when blockchain.info goes offline.

Proposed solution: Add a new section "Hybrid Wallets" and place blockchain.info into it, reserve "Web Wallets" only for coinbase and other sites that control users' private keys.

Cheers ...

Set Google Analytics

I am asking permission to setup Google Analytics on bitcoin.org .

I would create a dedicated Google account for this task and make the password available to the core developers. I think that there is a lot instructive statistics and informations that we can get from there.

Contact Mike Caldwell (casascius)

Mike has appeared in the press several times and they just love his coins. I will contact him and ask if he's willing to be up there.

typo in community.html

In bitcoing.org/[language code]/community.html, line 7, there is a typo:

<h1>Bitcoin communities</h1>
<ul class="ressources"> 
<li><a href="https://bitcoinfoundation.org/forum/">Bitcoin Foundation Forum (members only)</a></li>

I suppose it should be

<ul class="resources">

and not ressources

Continuing the conversation: We should add Roger Ver to the Press page.

The previous issue of the content of the Press page has been closed, and the content pushed. To not endlessly argue, and actually get something live, I think this is great.

The issue was closed with the message:

"The Press center has been merged. All points of contention has been addressed and the texts has been deeply reviewed. Any further change can be done via a separate Github issue."


Here is that issue. I would like to strongly suggest that Roger Ver be added to the press page, and thought we could use this issue to argue our points.

My argument:

Roger Ver is an excellent and experienced speaker, with the ability to speak at the right level for his audience. He is well-known in the community, and has a good reputation.
He has invested in many Bitcoin projects, and is well connected with many Bitcoin businesses.

Here are some videos:

http://video.foxbusiness.com/v/2297014298001/should-bitcoin-be-regulated/
https://www.youtube.com/watch?v=X4d_29vJlB4

Because of these reasons, I believe Roger Ver should be added to the press page.

With regards to Jon Matonis, I think he is an adequate speaker, but a stronger writer. I have no strong feelings either way on his inclusion on the press page.

Design and brand of new site

Sorry if this isn't the right place, but is there a discussion regarding the overall redesign of bitcoin.org? I've forked the repo and refreshed it myself, and have some big concerns with the latest redesign. I'd just like to be part of the discussion. Thanks.

Add Alerts in format readable by media & RSS feed

Add a section that has "Developers' Alerts" that has an RSS feed available. This would provide alerts and information about incidents such as the recent data appends and hard fork. A Wordpress installation in a subfolder or subdomain (alerts.bitcoin.org).

Electrum description is completely wrong and misleading

From the curent website, the description says:
"[...] it allows you to recover your wallet from an encrypted online backup"

I don't know who is to blame for that, and I don't want to look for it, but this is just plain wrong. Electrum is a deterministic wallet just like Armory, and nothing is stored online except in the blockchain.

Today I received this message in my forum inbox, from another developer:

[quote]
Not saying it's voluntary at all; but if you create the official Bitcoin website you should do your research. Coincidentally I got a friend of a friend who just made the remark "Don't tell people you are using Electrum because they can hack you online.." perhaps the things are related.
[/quote]

Site needs a iPhone home screen icon.

When you add the page to the home screen, it would be nice if the icon was the bitcoin icon, not a web screenshot.

Here is the code to use. Image sizes are 57x57 and 114x114.

<link rel="apple-touch-icon-precomposed" href="/touch-icon-iphone.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/touch-icon-iphone-retina.png"/>

XMLRPC: setaccount moves comment to the other, unused label

This is the bug that has been in client and daemon since very beginning. Intention of setaccount command is essentially to rename existing account. For some reason, from very beginning, it was reallocating old label to some other address. Can we get rid of this?

There is no other means to rename the label using XMLRPC without creating artefacts.

Alternatively, is it possible to introduce another XMLRPC command designed to rename label on account?

Value setaccount(const Array& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw runtime_error(
"setaccount \n"
"Sets the account associated with the given address.");

CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
    throw JSONRPCError(-5, "Invalid bitcoin address");


string strAccount;
if (params.size() > 1)
    strAccount = AccountFromValue(params[1]);

// Detect when changing the account of an address that is the 'unused current key' of another account:
//if (pwalletMain->mapAddressBook.count(address))
//{
//    string strOldAccount = pwalletMain->mapAddressBook[address];
//    if (address == GetAccountAddress(strOldAccount))
//        GetAccountAddress(strOldAccount, true);
//}

pwalletMain->SetAddressBookName(address, strAccount);

return Value::null;

}

Jekyll site generation issue

Hi,

I'm running into difficulty generating the site in the appropriate directories. Jekyll defaults to _site, which is what is listed in the docs here. But it looks like some files, like HTML and some IMGs should be placed in the respective language folder.

What's the workflow here? Is there a config option I'm missing? How do I generate the site across different directories? Or do I need to?

Any help is appreciated. Thanks!

Jordan

Other potential interviewees for the press center

Is it worth making a list of other potential contacts for the press center on the http://bitcoin.org/en/bitcoin-for-press page?

This is separate to the issue of whether Jon Matonis or Roger Ver should be included. I'm thinking of gathering suggestions for other people who may be suitable to be included on the press page.

I haven't contacted anyone yet or even know if they would be interested but to start I will suggest some names below:

Vitalik Buterin - head writer at the bitcoinmagazine.com. Writes well and has a good understanding of bitcoin and bitcoin related topics in my opinion.

Peter Šurda - writes the http://www.economicsofbitcoin.com/ blog. Could discuss the economic aspects of bitcoin.

I'm sure there are many others. What do others think? Is it a good idea to suggest other potential candidates to grow the list? What other potential candidates would be good to be included in the list?

Each release anouncement should have the signed sha hashes of the files

eg:

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

25c3ec9683d62235afea24d4a147d4616d8a884f  bitcoin-0.4.0-linux.tar.gz
a800d9fa4aa61527e598708f4ace7f855c22a46b  bitcoin-0.4.0-macosx.dmg
1d2c8d82ede5e8aa9f83b59da07e443de89c5c8f  bitcoin-0.4.0-src.tar.gz
ecf1304ff467bd30dc668b3dadff3044c3c86df1  bitcoin-0.4.0-win32-setup.exe
6034efe23e4bd76b0860f633e81710cd66d499db  bitcoin-0.4.0-win32.zip
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (Darwin)

iEYEARECAAYFAk58n20ACgkQdYgkL74406ibEACgzyZj86lsQORi5HTs/N3ABCes
Pg8AoKFXU1vxiZI9qZOQ5ZET60ewcynW
=sY+Q
-----END PGP SIGNATURE-----

Inconsistent fonts in Google Chrome

I've rarely seen an inconsistent bug like this one in a browser.

Google Chrome inconsistently switch between UbuntuBold and sans-serif font for menus and titles. Refreshing the page does not allow the right font to load. Google chrome can even have two tabs open on the same page and show different fonts on each, that will remains even if both are refreshed.

This bug has not been reproduced on any other browser and it seems to appear since the recent design changes. But everything I tried so far didn't let me identify the source of the problem.

Meanwhile, it does not prevent content to be served. But it's inconsistent for the user.

Capture du 2013-04-11 00:41:20

The design is horrible.

Are we seriously going with http://174.142.20.146/en/ ?

There's too much information, there is some crazy matrix-style numbers down the sides, buttons are in the wrong place, and it's confusing to navigate.

Are most people agreed on this new design? Please let's not forget our audience.

Replace "Enthusiasts" and "Organization"

I noticed a few comments of people that seemed to be unsure about the title "Enthusiasts" and it is hard to translate in french. And a few people didn't seem to associate "Organization" with "merchants". So I am suggesting to rename "Organizations" to "Businesses" and "Enthusiasts" to "Innovation".

bitcoin-innovation

This would also allows us to have more nice content focused on future applications and benefts of Bitcoin in that page in the future.

Mention required OS in Readme

The README.md doesn't mention the OS that is needed for running the commands like "apt-get".

Under Ubuntu 12.10, I was able to just install everything needed by

sudo apt-get install jekyll

Add more international press contacts and note country/language along with contact info.

Hope this is the right place--bit of a github noob, I'm afraid.

Right now the press page on bitcoin.org is very US-heavy and it would be nice to have a good geographical distribution of people since media often want to pull you in to a studio for interviews rather than just chat by phone or email.

I'm happy to be on there as a Canadian contact--before I stepped back from doing press for a while we were mainly getting low-quality features so the only worthwhile example I have handy is this radio interview starting at around 3:15. It was a remote and they were having technical issues so it got cut up quite a bit, but Brent is a great guy and had really done his homework, so it turned out decently. It sounds like he was feeding me questions, but that's just because he had to redo most of his audio afterwards :) . Wow, really takes me back listening to Plato talk about his road trip! Hard to believe this was less than two years ago.

Anyways, back on topic. Perhaps we could get more international suggestions in the comments to this issue?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.