Bitcoin Forum
May 07, 2024, 02:38:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: Just received official email from BFL, my Jale's are on the way...  (Read 2465 times)
Frizz23
Hero Member
*****
Offline Offline

Activity: 1162
Merit: 500


View Profile
May 02, 2013, 12:18:48 AM
 #21

I agree... someone is going to get ... schooled ... tomorrow.

You're talking about BFL_Josh now? Your alter ego / split personality?

Quote
 I'm very displeased at the moment.

... with yourself? Grin


Ξtherization⚡️First P2E 2016⚡️🏰💎🌈 etherization.org
1715049522
Hero Member
*
Offline Offline

Posts: 1715049522

View Profile Personal Message (Offline)

Ignore
1715049522
Reply with quote  #2

1715049522
Report to moderator
"There should not be any signed int. If you've found a signed int somewhere, please tell me (within the next 25 years please) and I'll change it to unsigned int." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715049522
Hero Member
*
Offline Offline

Posts: 1715049522

View Profile Personal Message (Offline)

Ignore
1715049522
Reply with quote  #2

1715049522
Report to moderator
1715049522
Hero Member
*
Offline Offline

Posts: 1715049522

View Profile Personal Message (Offline)

Ignore
1715049522
Reply with quote  #2

1715049522
Report to moderator
k9quaint
Legendary
*
Offline Offline

Activity: 1190
Merit: 1000



View Profile
May 02, 2013, 01:26:53 AM
 #22

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[08004] [1040] Too many connections' in /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Abstract.php:129 Stack trace: #0 /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Abstract.php(129): PDO->__construct('mysql:host=loca...', 'zend_admin', '3ErK5wqJ6bTUgxk', Array) #1 /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Mysql.php(109): Zend_Db_Adapter_Pdo_Abstract->_connect() #2 /var/web/bflweb/library/Zend/Db/Adapter/Abstract.php(315): Zend_Db_Adapter_Pdo_Mysql->_connect() #3 /var/web/bflweb/application/Bootstrap.php(203): Zend_Db_Adapter_Abstract->getConnection() #4 /var/web/bflweb/library/Zend/Application/Bootstrap/BootstrapAbstract.php(667): Bootstrap->_initCharsetDB() #5 /var/web/bflweb/library/Zend/Application/Bootstrap/BootstrapAbstract.php(620): Zend_Application_Bootstrap_BootstrapAbstract->_executeResource('charsetdb') #6 /var/web/bflweb/library/Zend/Application/Bootstrap/BootstrapAbstract.php(584): Zend_Application_Bootstrap_BootstrapAbstract->_bootstrap(NULL) in /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Abstract.php on line 144

Woosh, there went their customers passwords.
I hope they salted their hashes.  Sad
I hope they hashed them. Sad

Bitcoin is backed by the full faith and credit of YouTube comments.
Bogart
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
May 02, 2013, 01:48:43 AM
 #23

PHP isn't very good for scaling, every request is a totally separate action and it doesn't look like they're using caching. What PHP is good for is small stuff because it's quick and easy to understand.

BTW, disabling diagnostic errors on public-facing sites is COMPSCI101 stuff. If this happened on a webapp I'd worked on I would be fired on the spot.

I agree... someone is going to get ... schooled ... tomorrow.  I'm very displeased at the moment.

It's good he's only displeased.  You wouldn't like him when he's angry.

"All safe deposit boxes in banks or financial institutions have been sealed... and may only be opened in the presence of an agent of the I.R.S." - President F.D. Roosevelt, 1933
modrobert
Sr. Member
****
Offline Offline

Activity: 355
Merit: 284


-"When the going gets weird, the weird turn pro."


View Profile
May 02, 2013, 07:22:50 AM
 #24

PHP isn't very good for scaling, every request is a totally separate action and it doesn't look like they're using caching. What PHP is good for is small stuff because it's quick and easy to understand.

Tell that to Facebook.
YipYip
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
May 02, 2013, 08:30:37 AM
 #25

PHP isn't very good for scaling, every request is a totally separate action and it doesn't look like they're using caching. What PHP is good for is small stuff because it's quick and easy to understand.

Tell that to Facebook.

You can build a house out of straw or bricks ....both are houses but some are easier and better at doing certain things

Bricks are harder in the short term but better & sturdier in the long run ...straw ..fast but a bit all over the place and not that sturdy ...if a thread unravels it seems to pull on another thread of straw

Its all about effort and what the end target result is needed

So Facebook...sure u can use straw but they will have basicall written there own php framework to achieve their result .....how much efforty did it take to get this result ....A FRICKEN SHITLOAD!!!! ...lol


OBJECT NOT FOUND
Enigma81
Full Member
***
Offline Offline

Activity: 180
Merit: 100



View Profile
May 02, 2013, 08:43:27 AM
 #26

PHP isn't very good for scaling, every request is a totally separate action and it doesn't look like they're using caching. What PHP is good for is small stuff because it's quick and easy to understand.

Tell that to Facebook.

Facebook uses PHP - but it's heavily modified, and it's not used for modules that it isn't suited to.

Quote from: Yishan Sparklepants Wong
The reason Facebook hasn't migrated away from PHP is because it has incumbent inertia (it's what's there) and Facebook's engineers have managed to work around many of its flaws through a combination of patches at all levels of the stack and excellent internal discipline via code convention and style - the worst attributes of the language are avoided and coding style is rigidly enforced through a fairly tight culture of code review (failing to adhere to the style and "going cowboy" by writing sloppy code results in pitiless mockery by one's peers). Engineering management has never had to take a strong hand here; this arose largely due to key internal technical leaders just sort of corralling everyone else along.

There is also a lot of industry precedent indicating that re-writing an entire codebase in another language is usually one of the worst things you can do, so at all levels there is a reluctance to do that. The preferred strategy is to write new components in a de-coupled manner using a better language of choice (C++, python, Erlang, Java, etc); this is easily facilitated by Facebook's early development of thrift, an efficient multi-language RPC framework. This also helps avoid the worst effects of PHP: it can be totally avoided in subcomponents where the language is grossly-unsuitable. The broad effect is that the overall codebase slowly evolves away from depending as heavily on PHP, with the components that are still in PHP being written in tightly-controlled, disciplined ways by veteran members of the staff.

Enigma
Schrankwand
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
May 02, 2013, 11:13:42 AM
 #27

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[08004] [1040] Too many connections' in /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Abstract.php:129 Stack trace: #0 /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Abstract.php(129): PDO->__construct('mysql:host=loca...', 'zend_admin', '3ErK5wqJ6bTUgxk', Array) #1 /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Mysql.php(109): Zend_Db_Adapter_Pdo_Abstract->_connect() #2 /var/web/bflweb/library/Zend/Db/Adapter/Abstract.php(315): Zend_Db_Adapter_Pdo_Mysql->_connect() #3 /var/web/bflweb/application/Bootstrap.php(203): Zend_Db_Adapter_Abstract->getConnection() #4 /var/web/bflweb/library/Zend/Application/Bootstrap/BootstrapAbstract.php(667): Bootstrap->_initCharsetDB() #5 /var/web/bflweb/library/Zend/Application/Bootstrap/BootstrapAbstract.php(620): Zend_Application_Bootstrap_BootstrapAbstract->_executeResource('charsetdb') #6 /var/web/bflweb/library/Zend/Application/Bootstrap/BootstrapAbstract.php(584): Zend_Application_Bootstrap_BootstrapAbstract->_bootstrap(NULL) in /var/web/bflweb/library/Zend/Db/Adapter/Pdo/Abstract.php on line 144

Woosh, there went their customers passwords.
I hope they salted their hashes.  Sad
I hope they hashed them. Sad

Changed password, made it more random and longer, thanks for noticing everyone.
Tamerz
Full Member
***
Offline Offline

Activity: 148
Merit: 102


View Profile
May 02, 2013, 01:05:25 PM
 #28

Changed password, made it more random and longer, thanks for noticing everyone.

They changed it to the minirig shipping date. Nobody will ever figure it out.



...sorry, had to do it  Grin
Pages: « 1 [2]  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!