25 Şubat 2013 Pazartesi

Jenny K

To contact us Click HERE
 

http://www.moidnevnik.com/lb/o5fvo749.083073?l73








2/25/2013 5:30:00 PM
Jenny K

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (2)
Recent Activity:
  • New Members 1
Visit Your Group To unsubscribe, simply email computer-scrapping-unsubscribe@yahoogroups.com

Yahoo! Groups Switch to: Text-Only, Daily Digest • Unsubscribe • Terms of Use • Send us Feedback .
__,_._,___

Don't mess with the Google

To contact us Click HERE
As a hacker, should you succeed in obtaining a signing certificate (allowing you to perform MitM attacks, for example), whatever you do, don't attack *.google.com.

That's the message in this Google blogpost about the TURKTRUST incident, which says:
Late on December 24, Chrome detected and blocked an unauthorized digital certificate for the "*.google.com" domain
What that implies is that Chrome acts as 100 million sensors on the Internet looking for *.google.com MitM attacks. If you are a government wanting to spy on your citizens, as soon as you insert a fraudulent signing certificate into your BlueCoat monitor, one of your citizens using Google  Chrome is going to notify the mother ship.

This is a good thing. Microsoft (with IE) and Firefox should get into the act. They should likewise monitor other likely monitoring targets, like Facebook and Twitter. If the major browsers triggered whenever the certificate for the major websites changed, this would severely restrict the ability of governments to monitor their citizens.

It appears that Firefox, Microsoft, and Chrome are not completely detrusting TURKTRUST. This is wrong. MitM should be an automatic fail for a CA. Remember that the root of the CA system is not the CAs themselves, but the browser vendors. The browser vendors should have a published list of rules that will get a CA detrusted, and MitM should be one of them.


Aaron's Law: repeal CFAA rather than amend it

To contact us Click HERE
I hereby give you complete authorization to access (over a network) any computer I own. Nothing you do is unauthorized or exceeds authorization in terms of the CFAA.

The solution fixing the "Computer Fraud and Abuse Act" is not to amend it but to get rid of it. The Internet is world-wide, 95% of hackers trying to break into your computers are beyond the reach of U.S. law. Rather than providing a meaningful deterrent to bad hackers, what the law really does is create a chilling effect for our own creative geniuses. Genius geeks from Steve Jobs to Aaron Swartz should feel free to push the boundaries of technology without prosecutors and juries second guessing them.

Getting rid of the CFAA doesn't actually expose you to additional danger, which I demonstrate in the statement above. My computers are secure, which means that while I've given you legal access in terms of the CFAA to hack my computers, I haven't given you real access by giving you a password or username. I don't need the CFAA to protect my computers, I can protect them just fine myself. Or, if I can't, I've only made the threat 5% worse giving US citizens permission alongside all the hackers from Russia, China, Brazil, and so on.

Getting rid of the CFAA doesn't get rid of other crimes. While I've give you permission to access my computers, I haven't given you access to my bank account or credit card number. Neither have I given you permission to physically steal the computer. This means all those hackers who are now behind bars for stealing money would still be behind bars.

Scalability: it's the question that drives us

To contact us Click HERE
In order to grok the concept of scalability, I've drawn a series of graphs. Talking about "scalability" is hard because we translate those numbers into "performance". But the two concepts are unrelated. We say things like "NodeJS is 85% as fast as Nginx", but speed doesn't matter, scalability does. The important difference in those two is how they scale, not how they perform. I'm going to show these graphs in this post.

Consider the classic Apache web server. We typically benchmark the speed in terms of "requests per second". But, there is another metric of "concurrent connections". Consider a web server handling 1,000 requests-per-second, and that it takes 5 seconds to complete a request. That means at any point in time, on average, there will be 5,000 pending requests, or 5,000 concurrent connections. But Apache has a problem. It creates a thread to handle each connection. The operation system can't handle a lot of threads. So, once there are too many connections, performance falls off a cliff.

This is shown in the graph below. This is a hypothetical graph rather than a real benchmark, but it's about what you'll see in the real world. You'll see that around the 5000 connections point, performance falls off a cliff.



Let's say that you are happy with the performance at 5000 connections, but you need the server to support up to 10,000 connections. What do you do? The naive approach is to simply double the speed of the server, or buy a dual-core server.

But this naive approach doesn't work. As shown in the graph below, doubling performance doesn't double scalability.


While this graph shows a clear doubling of performance, it only shows an increase of about 20% in terms scalability, handling about 6000 connections.

The same is true if we increase performance 4 times, 8 times, or even 16 times, as shown in the graph below. Even using a server 16 times as fast as the original, we still haven't even doubled scalability.


The solution to this problem isn't faster hardware, but changing the software to scale. Consider some server software that is a lot slower than Apache, but whose performance doesn't drop off so quickly when there are lots of connections to the server. The graph would look like the orange line in the following graph:


This orange line could be a server running NodeJS on my laptop computer. Even though it's slower than a real beefy expensive 32-core server you spent $50,000, it'll perform faster when you've got a situation that needs to handle 10,000 concurrent connections.

The point I'm trying to make is that "performance" and "scalability" are orthogonal problems. When trying to teach engineers how to fix scalability, their most common question is "but won't that hurt performance". The answer is that it almost doesn't matter how much you hurt performance as long as it makes the application scale.

I've encapsulated all this text into the following picture. When I have a scalability problem, I can't solve it by increasing performance, as shown by all the curvey lines. Instead, I have to fix the problem itself -- even if it means lower performance, as shown by the orange line. The moral of the story is that performance and scalability are orthogonal. This is the one picture you need to remember when dealing with scalability.


I use the "notebook computer running NodeJS" as an example because it's frankly unbelievable. When somebody has invested huge amounts of money in big solutions, they flat out refuse to believe that a tiny notebook computer can vastly outperform them at scale. In the dumber market (government agencies, big corporations) the word "scale" is used to refer to big hardware, not smarter software.

In recent years, interest in scalable servers have started to grow rapidly. This is shown in the following Netcraft graph of the most popular web servers. Apache still dominates, but due to its scalability problems, it's dropping popularity. Nginx, the most popular scalable alternative, has been growing rapidly.



Nginx is represented by the green line the above graph, and you scan see how it's grown from nothing to becoming the second most popular web server in the last 5 years.

But even Nginx has limits. It scales to about 100,000 concurrent connections before operating system limits prevent further scalability. This is far below what the hardware is capable of. Today's hardware, even heap desktop computers, can scale to 10 million connections, or 100 times what Nginx is practically capable of. I call this the "The C10M Problem", referring to how software is still far below the capability of the hardware.

Conclusion

Talking about scalability is hard. It's easier to understand if you can visualize it. That's why I put together these graphs. I want to use these graphs in future presentations. But, if I store them on my hard disk, I'm likely to lose them. Therefore, I'm posting these to the intertubes so that I can just use the google to find them later. You are free to use these graphs too, if you want, with no strings attached, though I wouldn't mind credit when it's not too much trouble.

I'm finally profiting

To contact us Click HERE
Hey,


I just got an exclusive peak inside! This is going to be crazy. Who ever is left behind on this one I feel sorry for them. Only the elite are invited but I'm sneaking a few of my closets friends in.
> See it here
Hurry up before he catches me. Once your in your going to love me for how much your about to start learning.
> Click Here

Its crazy!

Talk soon

Jennifer

scam, phishing, identity theft, spam

24 Şubat 2013 Pazar

[OneStopSAP] SAP HR Certifications Sample Questions Set 1

To contact us Click HERE
 


Home Home
SAP Jobs | SAP Downloads | SAP Articles | SAP Training Institutes | SAP Faqs

Click here to Join SAP group for Latest Updates
http://groups.yahoo.com/group/onestopsap/join


Sample Papers for SAP - HR Exam

SAP HR Certifications Sample Questions Set 1
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ sap-hr-certifications-sample-q.asp

 
SAP HR Certifications Sample Questions Set 2
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ sap-hr-certifications-sample-q.asp

 
Question Excerpt From SAP HR certification test 1
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ question-excerpt-from-sap-hr-c.asp

 
Payroll Related SAP HR Certification Questions
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ payroll-related-sap-hr-certifi.asp

 
SAP HR Certifications Sample Questions Set 4
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ sap-hr-certifications-sample-q.asp

 
SAP HR Certifications Sample Questions Set 3
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ sap-hr-certifications-sample-q.asp

 
SAP HR Certifications Sample Questions
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ sap-hr-certifications-sample-q.asp

 
Questions and Answers for SAP HR
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ questions-and-answers-for-sap.asp

 
SAP HR Certification Model Questions
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ sap-hr-certification-model-que.asp

 
SAP HR Interviews & Resumes
http://www.onestopsap.com//sap-sample-paper/sap-hr/details/ sap-hr-interviews-resumes-215.asp

 

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
  • New Members 24
Visit Your Group =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
FREE SAP PREPARATION RESOURCES
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

<*> http://www.onestopsap.com - SAP Preparation Portal - Complete Resources on SAP Exam Preparation. Visit now at http://www.onestopsap.com

<*> http://forum.onestopsap.com - SAP Discussion Forum - Share all your experiences and discuss all the queries here at http://forum.onestopsap.com

<*> http://groups.yahoo.com/group/OneStopSAP/join - JOIN ONESTOPSAP GROUP - Join OneStopSAP group now and receive the latest information and preparation material on SAP now! http://groups.yahoo.com/group/OneStopSAP/join



---------------------------------------------------------------



Join http://groups.yahoo.com/group/OneStopSAP/join
  Join http://groups.yahoo.com/group/OneStopSAP/join
    Join http://groups.yahoo.com/group/OneStopSAP/join
      Join http://groups.yahoo.com/group/OneStopSAP/join
        Join http://groups.yahoo.com/group/OneStopSAP/join
      Join http://groups.yahoo.com/group/OneStopSAP/join
    Join http://groups.yahoo.com/group/OneStopSAP/join
  Join http://groups.yahoo.com/group/OneStopSAP/join
Join http://groups.yahoo.com/group/OneStopSAP/join

Yahoo! Groups Switch to: Text-Only, Daily Digest • Unsubscribe • Terms of Use • Send us Feedback .
__,_._,___

[OneStopSAP] TOP 10 DATA STRUCTURE INTERVIEW QUESTIONS and Answers

To contact us Click HERE
 

Cool Interview
DATA STRUCTURE INTERVIEW QUESTIONS

 
Download Free eBook Download Free Interview Questions eBook of 500 Questions

(If you do not have a Yahoo! account, you can get it by simply sending a blank email to CoolInterview-Subscribe@yahoogroups.com and confirm the verification email received. Once your email is confirmed, we will instantly send the download link to you.)
Data Structure Interview Questions
  • What is placement new?
    http://www.coolinterview.com/interview/59896/

     
  • How many different trees are possible with 10 nodes ?
    http://www.coolinterview.com/interview/59894/

     
  • What is the bucket size, when the overlapping and collision occur at same time?
    http://www.coolinterview.com/interview/59893/

     
  • What is the easiest sorting method to use?
    http://www.coolinterview.com/interview/59892/

     
  • What is the heap?
    http://www.coolinterview.com/interview/59891/

     
  • How can I search for data in a linked list?
    http://www.coolinterview.com/interview/59890/

     
  • What is the quickest sorting method to use?
    http://www.coolinterview.com/interview/59889/

     
  • Whether Linked List is linear or Non-linear data structure?
    http://www.coolinterview.com/interview/59888/

     
  • Does the minimum spanning tree of a graph give the shortest distance between any 2 specified nodes?
    http://www.coolinterview.com/interview/59887/

     
  • What is a spanning Tree?
    http://www.coolinterview.com/interview/59886/

     

__._,_.___
Reply via web post Reply to sender Reply to group Start a New Topic Messages in this topic (1)
Recent Activity:
  • New Members 24
Visit Your Group =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
FREE SAP PREPARATION RESOURCES
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

<*> http://www.onestopsap.com - SAP Preparation Portal - Complete Resources on SAP Exam Preparation. Visit now at http://www.onestopsap.com

<*> http://forum.onestopsap.com - SAP Discussion Forum - Share all your experiences and discuss all the queries here at http://forum.onestopsap.com

<*> http://groups.yahoo.com/group/OneStopSAP/join - JOIN ONESTOPSAP GROUP - Join OneStopSAP group now and receive the latest information and preparation material on SAP now! http://groups.yahoo.com/group/OneStopSAP/join



---------------------------------------------------------------



Join http://groups.yahoo.com/group/OneStopSAP/join
  Join http://groups.yahoo.com/group/OneStopSAP/join
    Join http://groups.yahoo.com/group/OneStopSAP/join
      Join http://groups.yahoo.com/group/OneStopSAP/join
        Join http://groups.yahoo.com/group/OneStopSAP/join
      Join http://groups.yahoo.com/group/OneStopSAP/join
    Join http://groups.yahoo.com/group/OneStopSAP/join
  Join http://groups.yahoo.com/group/OneStopSAP/join
Join http://groups.yahoo.com/group/OneStopSAP/join

Yahoo! Groups Switch to: Text-Only, Daily Digest • Unsubscribe • Terms of Use • Send us Feedback .
__,_._,___