Google Fonts, DIVS, student needs help

For a class project I am trying to replicate this magazine page I selected.  The idea of the project is to use things such as google web fonts.
So far, I have done this - the font's don't have to match.  It just needs to have the same sort of look:
OK, so far so good.  But I KNOW that this isn't semantic markup!  The name "Andre Benjamin" should be the <h1>, but I cannot figure out how to do that using google web fonts since the heading used 3 different fonts and different sizes. 
Additionally, though it looks great in firefox this is how it renders in IE - No google font showing up, the divs are not lining up right.  The site is not "live", this is the view from previewing in IE.  Maybe IE needs it loaded on a server for google font to show?:
So thanks for any help you can provide.  I know that I need to clean up this code before I go much further.
The html is:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="typography.css" rel="stylesheet" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Ewert' rel='stylesheet' type='text/css'><!--A-->
<link href='http://fonts.googleapis.com/css?family=Asset' rel='stylesheet' type='text/css'><!--NDR-->
<link href='http://fonts.googleapis.com/css?family=Chivo:900' rel='stylesheet' type='text/css'><!--E-->
</head>
<body>
<div id="container">
<div id="largeH1">A</div>
<div id="medH1">NDR</div>
<div id="medH1_2">&eacute</div>
<div id="smallH1">BENJAMIN</div>
</div><!--container-->
</body>
</html>
The CSS is:
@charset "utf-8";
body {
    background-color: #333;
#container {
    height: 1242px;
    width: 960px;
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    background-image: url(images/bgNapkin.jpg);
    border: thin solid #ADC2A1;
#largeH1 {
    font-family: 'Ewert', cursive;
    font-size: 300px;
    color: #d94730;
    margin-left: 35px;
    height: 300px;
    width: 215px;
    float: left;
#medH1 {
    font-family: 'Asset', cursive;
    font-size: 75px;
    margin-left: 200px;
    color: #D94730;
    padding-top: 60px;
#medH1_2 {
    font-family: 'Chivo', sans-serif;
    color: #D94730;
    font-size: 110px;
    margin-left: 625px;
    margin-top: -120px;
#smallH1 {
    font-family: 'Chivo', sans-serif;
    color: #D94730;
    font-size: 36px;
    letter-spacing: 40px;
    margin-left: 255px;
    margin-top: -10px;

Read up on nth-child pseudo-selectors.
http://css-tricks.com/how-nth-child-works/
Below, a quick and dirty example with span tags.
CSS:
span:nth-child(1)
{font-size:250%}
span:nth-child(2)
{font-size:150%}
span:nth-child(3)
{font-size:100%}
span:nth-child(4)
{font-size:75%}
span:nth-child(5)
{font-size:50%}
HTML:
<h1><span>This</span> <span>is</span> <span>a</span> <span>spanned</span> <span>heading</span></h1>
The result:
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Help ex student need help ASAP

    Hello I'm in need of immediate help !!! I am a graduate of a design course visual communications and purchased the design suite under student ID. I am no longer a student and have currently had a computer crash and needed a new hard drive. As I needed to reinstall suite but I don't have a serial number anymore! Can someone help me I'm  currently doing a job for someone with a few days remaining on trial so this is errant!! 

    https://www.adobe.com/account.html for your Adobe orders page
    When you buy software via download you should ALWAYS write the download itself, and a text file with your serial number, to AT LEAST one "off your computer" backup... be that to a DVD or a USB hard drive
    If you can't find your serial number on your orders page, nobody can help

  • New Java Programming Student Needs Help

    Hey everyone,
    I've just started taking a Java programming class at Penn State University, and I have had some prior experience with programming, i.e. C, C++, HTML, SQL. However, this will be my first attempt at Java. I know there are a lot of similarities between C++ and Java, but I'm still a little lost on some methodology.
    To get myself going, I've been looking through the textbook a little and came across a problem that gave me some difficulty. I'll write out the outline:
    A company pays its employees as managers (who receive a fixed weekly salary), hourly workers (who receive a fixed hourly wage for up to the first 40 hours they work and time and a half (i.e. 1.5 times their hourly wage) for overtime hours worked, commission workers (who receive $250 plus 5.7% of their gross weekly sales), and pieceworkers (who receive a fixed amount of money per item for each of the items they produce � each pieceworker in this company works on only one type of item).
    +Define a Java class named EmployeePayment that includes functionality to compute the weekly pay for each employee. You do not know the number of employees in advance. Each type of employee has its own pay code: Managers have paycode 1, hourly workers have paycode 2, commission workers have paycode 3 and pieceworkers have paycode 4.+
    +Define a main method that creates an instance of the EmployeePayment class, and calls the setManagerPay method to set the managers weekly salary to $625.00. The main method should then prompt the user for the paycode ��Enter paycode (-1 to end): �, validate the input and perform the associated processing for that paycode. Your program should allow the user to process employees until a paycode of -1 has been entered. Use a switch structure to compute each employee�s pay, based on the employee�s paycode. Within the switch, prompt the user (i.e. the payroll clerk) to enter the appropriate facts your program needs to calculate each employee�s pay based on that employee�s paycode, invoke the respective method (defined below) to perform the calculations and return the weekly pay for each type of employee, and print the returned weekly pay for each employee.+
    +Define a setManagerPay method that accepts and stores the fixed weekly salary value for managers.+
    +A private instance variable weeklyManagerPay should be defined in the EmployeePayment class to support these accessor and mutator methods.+
    +Define a calcManagerPay method that has no parameters and returns the fixed weekly salary.+
    +Define a calcHourlyWorkerPay method that accepts the hourly salary and total hours worked as input parameters and returns the weekly pay based on the hourly worker pay code description.+
    +Define a calcCommWorkerPay method that accepts the gross weekly sales as an input parameter and returns the weekly pay based on the commission worker pay code description.+
    +Define a calcPieceWorkerPay method that accepts the number of pieces and wage per piece as input parameters and returns the weekly pay based on the piece worker pay code description.+
    +Once all workers have been processed, the total number of each type of employee processed should be printed. Define and manage the following private instance variables (*numManager*, numHourlyWorker, numCommWorker, and numPieceWorker) within the EmployeePayment class. What are the ways in which these variables can be updated?+
    Sorry for the length, but I wanted this to be thorough. Basically, I'm having the most trouble writing the switch statement, and outputting the total number of each type of employee...
    Any help and pointers will be greatly appreciated...thanks all.

    You said you've written C and C++ code before. I don't have an excellent memory but from the little code that I wrote in C, I believe the switch statement is exactly the same.
    Read this: [http://java.sun.com/docs/books/tutorial/java/nutsandbolts/switch.html]
    If you're having trouble understanding something post what your specific problem is. No one is going to write your homework for you, but many, myself included, would be more than willing to help if you're really stumped. Just post your concise problem.
    Edited by: sheky on Mar 12, 2008 9:52 PM

  • Student needs help....

    We have to develop a web-site using JSP and servlets, so I thought it would be good idea to throw most of the site template info into a bean. Thought it was easy until I got the following recurring error from Tomcat (4.0.1)... any help would be greatly appreciated as my Professor knows less than I do...
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Cannot find any information on property 'Header' in a bean of type 'assignment3.HomesOnlineSiteTemplate'
         at org.apache.jasper.runtime.JspRuntimeLibrary.getReadMethod(JspRuntimeLibrary.java:701)
         at org.apache.jasper.compiler.GetPropertyGenerator.generate(GetPropertyGenerator.java:104)
         at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.generate(JspParseEventListener.java:831)
         at org.apache.jasper.compiler.JspParseEventListener.generateAll(JspParseEventListener.java:241)
         at org.apache.jasper.compiler.JspParseEventListener.endPageProcessing(JspParseEventListener.java:197)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:215)
         at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:546)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:177)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:189)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:382)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:474)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2344)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:462)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:163)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1011)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1106)
         at java.lang.Thread.run(Thread.java:484)
    The bean is locted in tomcat\webapps\ROOT\Web-Inf\classes\assignment3:
    package assignment3;
    public class HomesOnlineSiteTemplate{
    // Locations of the images used in this bean
    private String TopBanner = "file://C:\\Program Files\\Adobe\\Photoshop\\Samples\\top-banner2.gif";
    // props
    private String Header="";
    private String HeaderBegin="<HTML><HEAD><META NAME=\"GENERATOR\" Content=\"Microsoft Visual Studio 6.0\">";
    private String HeaderTitleBegin="<TITLE>";
    private String Title="";
    private String HeaderTitleEnd="</TITLE>";
    private String Script="";
    private String HeaderEnd="</HEAD>";
    private String BodyBeginA="<BODY topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><TABLE cellSpacing=0 cellPadding=0 width=\"100%\" border=0><TR><TD colspan=2><IMG src=\"";
    private String BodyBeginB="\"></TD></TR>";
    private String BodyBegin="";
    private String BodyEnd="</table></body></html>";
    private String BannerLeftLogon="<table><tr><td><font color=White><form name=\"login\" onSubmit=\"javascript:formValidate(this)\" action=\"doLogin.jsp\" method=\"post\">UserName:<br>  <INPUT type=\"text\" size=10 name=\"name\"><br>Password:<br>  <input type=\"password\" name=\"pw\" size=\"10\"><br><br><center><input type=\"submit\" value=\"Login\"></center></form></font></td></tr></table>";
    private void Init(){
    BodyBegin=BodyBeginA + TopBanner + BodyBeginB;
    public String getBannerLeftLogon(){
    // This method will return the left side banner with a logon form
    return BannerLeftLogon;
    public String getBodyBegin(){
    // This method will return the BodyBegin String
    return BodyBegin;
    public void setBodyBegin(String newBegin){
    // This method will allow client to create new Body beginning (<body>)
    BodyBegin=newBegin;
    public String getBodyEnd(){
    // This method returns the BodyEnd property
    return BodyEnd;
    public void setBodyEnd(String newEnd){
    // This method allows resetting of BodyEnd to new BodyEnd
    BodyEnd = newEnd;
    public String getHeader(){
    // This routine returns the Header as established. Client should use setScript() if there is to be any <script> elements
    // added to header PRIOR to calling this method
    if (Header!=""){
    return Header;
    else{
    Header = HeaderBegin + HeaderTitleBegin + Title + HeaderTitleEnd + Script + HeaderEnd;
    return Header;
    public void setHeader(String TempHeader){
    // This method allows the user to define a custom Header vAriable from the calling page
    Header = TempHeader;
    public void setScript(String TempScript){
    // This method will set Variable Script to the appropriate value defined by Parameter TempScript
    Script = TempScript;
    public void setTitle(String TempTitle){
    // This method will set Variable Title to the appropriate value defined by Parameter TempTitle
    Title = TempTitle;
    public void setTopBanner(String newBanner){
    TopBanner=newBanner;
    BodyBegin=BodyBeginA+TopBanner+BodyBeginB;
    and the JSP script is in tomcat\webapps\ROOT
    <!-- bean driver jsp
    <jsp:useBean id="template" class="assignment3.HomesOnlineSiteTemplate"/>
    <jsp:setProperty name="template" property="Title" value="Testing"/>
    </jsp:useBean>
    <jsp:getProperty name="template" property="Header"/>
    <jsp:getProperty name="template" property="BodyBegin"/>
    <h1>This is yet another test of a redesigned JavaBean</h1>
    <jsp:getProperty name="template" property="BodyEnd"/>

    Your problem is very simple really. In your bean if you have properties (header, name, age, etc) then you can have (setHeader(), setName(), setAge() etc). But in your case, it is Header (Please look into the case). Your jsp will look for the property 'header' ('h' in lower case) but not for 'Header'.
    So, you rename the property in your bean,
    private String header=""; This holds good for rest of the properties too.
    and in Jsp, <jsp:getProperty name="template" property="header"/>
    Hope this helps. Don't forget the dukes if it works for you.
    Sudha

  • First Java Programming Assignment - Grad student needs Help

    Thank-you to whomever helps me out here (I have been waiting for the Professor to respond for 2 days now, and our asignment is due by midnight 2-nite. Here is my problem. We have a value called nPer. This value is defined as a double (it needs to since, it perfoms lots of calculations). Now the assigment calls for the print line to display the field in its integer format. So I have done the following:
    nPer=Math.ceil(nPer);
    This has caused the value to be represented as 181.0. Not good enough! The value needs to be truncated and represented as 181.
    The professor has provided us with directions that use the following syntax
    (int)181.0
    Putting that exact code in my program causes JBuilder to create an error message. Ergo, its not right. I have serached all over the tutorial looking for the proper method to resolve this, however - no luck. Could some kind sole please help??? Thank-you.

    You can look at either java.math.BigDecimal, if the
    true representation of the value and rounding are a
    concern, or java.text.NumberFormat if it's simply a
    matter of display.
    Your professor must be an old C programmer. Casting a
    double to an int? Oh, my. - MODBut that's what his assignment says, display it as an int. And the cast would work; I'm assuming he just didn't use it right.

  • Web Design/Graphic Arts Student needs help choosing a Macbook.

    First post on board so greetings!
    I have went back through all the archives and read every post I could on purchasing a Macbook for Web Design/Graphics but would like more info.
    Being a first time Mac user I am a little overwelmed by the all the guru talk. I will be going back to college next month for mainly Web Design/Development with Graphic Arts thrown into the program. The College has Mac Desktops to use but some of my classes will be online and I would like the portability of a Macbook to work from home with.
    I will be having to use Adobe Creative Suite (all 10 programs within it) and Autodesk 3ds Max. Being that I will be dealing with graphics I am willing to pay for the 15" Retina Screen. I have read that the Quadcore I7 processor may be over kill since alot of programs will never use the extra cores but with technology changing all the time I don't want to have tot upgrade in 2 years.
    So I'm looking for suggestions and will gladly add more info to help make my choice...
    Thanks in advance!

    lespaul75 wrote:
    First post on board so greetings!
    I will be having to use Adobe Creative Suite (all 10 programs within it) and Autodesk 3ds Max.
    I don't want to have tot upgrade in 2 years.
    welcome to the ASC-
    I would buy quadcore, with RAM maxed out and the largest HD for your specified needs.
    Web Design/Graphic Arts you will have many software packages running simultaneously to do your work.

  • Google Chrome Crash! Need help please!!

    I'm not too savvy when it comes to code writing, so I'm looking for an "explain it like I'm five" way to fix the issue.
    Process:               Google Chrome [3094]
    Path:                  /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier:            com.google.Chrome
    Version:               39.0.2171.71 (2171.71)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Google Chrome [3094]
    User ID:               501
    Date/Time:             2014-12-03 07:27:00.809 -1000
    OS Version:            Mac OS X 10.10.2 (14C68m)
    Report Version:        11
    Anonymous UUID:        F47BF55F-2E7A-42FE-A0F2-522FCA3C0C05
    Sleep/Wake UUID:       118217C2-7B3E-4C94-ADA5-6A7D67BB840A
    Time Awake Since Boot: 35000 seconds
    Time Since Wake:       500 seconds
    Crashed Thread:        0  CrBrowserMain  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BREAKPOINT (SIGTRAP)
    Exception Codes:       0x0000000000000002, 0x0000000000000000
    Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.main-thread
    0   com.google.Chrome.framework   0x000000010eb60df5 ChromeMain + 6954565
    1   com.google.Chrome.framework   0x000000010eb871bd ChromeMain + 7111181
    2   com.google.Chrome.framework   0x000000010e575ebc ChromeMain + 749324
    3   com.apple.CoreFoundation       0x00007fff869d62fb +[NSException exceptionWithName:reason:userInfo:] + 59
    4   com.apple.CoreFoundation       0x00007fff869d96d5 -[NSObject(NSObject) doesNotRecognizeSelector:] + 197
    5   com.apple.CoreFoundation       0x00007fff86920aa4 ___forwarding___ + 1028
    6   com.apple.CoreFoundation       0x00007fff86920618 _CF_forwarding_prep_0 + 120
    7   com.apple.AppKit               0x00007fff9172341c -[NSEvent _initTouches] + 2048
    8   com.apple.AppKit               0x00007fff916cc26d -[NSEvent _initWithCGSEvent:eventRef:] + 3253
    9   com.apple.AppKit               0x00007fff91566584 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 422
    10  com.apple.AppKit               0x00007fff9155a463 -[NSApplication run] + 594
    11  com.google.Chrome.framework   0x000000010eb4b44e ChromeMain + 6866078
    12  com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    13  com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    14  com.google.Chrome.framework   0x000000010e57bb01 ChromeMain + 772945
    15  com.google.Chrome.framework   0x00000001115ba589 ChromeMain + 51361241
    16  com.google.Chrome.framework   0x00000001115bcb42 ChromeMain + 51370898
    17  com.google.Chrome.framework   0x00000001115b69b7 ChromeMain + 51345927
    18  com.google.Chrome.framework   0x000000010eb2d4a4 ChromeMain + 6743284
    19  com.google.Chrome.framework   0x000000010eb2cad6 ChromeMain + 6740774
    20  com.google.Chrome.framework   0x000000010e4beff2 ChromeMain + 66
    21  com.google.Chrome             0x000000010e4b4f39 main + 9
    22  com.google.Chrome             0x000000010e4b4f24 0x10e4b4000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff85d2f232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8cc18a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff85d2e94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a14f40d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff85d2e94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a14f40d start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff85d2e94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a14f40d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff85d2e94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8a14f40d start_wqthread + 13
    Thread 6:: NetworkConfigWatcher
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff8c9318d9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.google.Chrome.framework   0x000000010eb4b2d4 ChromeMain + 6865700
    7   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    8   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    9   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    10  com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    11  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    12  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 7:: DnsConfigService
    0   libsystem_kernel.dylib         0x00007fff85d2f21a kevent + 10
    1   com.google.Chrome.framework   0x000000010ebd1a8d ChromeMain + 7416541
    2   com.google.Chrome.framework   0x000000010eb4a2c0 ChromeMain + 6861584
    3   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    4   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    5   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    6   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    7   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 8:: WorkerPool/24335
    0   libsystem_kernel.dylib         0x00007fff85d2e136 __psynch_cvwait + 10
    1   com.google.Chrome.framework   0x000000010ebb71fb ChromeMain + 7307851
    2   com.google.Chrome.framework   0x000000010ebc3a92 ChromeMain + 7359202
    3   com.google.Chrome.framework   0x000000010ebc3fdd ChromeMain + 7360557
    4   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    5   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 9:: WorkerPool/23835
    0   libsystem_kernel.dylib         0x00007fff85d2e136 __psynch_cvwait + 10
    1   com.google.Chrome.framework   0x000000010ebb71fb ChromeMain + 7307851
    2   com.google.Chrome.framework   0x000000010ebc3a92 ChromeMain + 7359202
    3   com.google.Chrome.framework   0x000000010ebc3fdd ChromeMain + 7360557
    4   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    5   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 10:: CrShutdownDetector
    0   libsystem_kernel.dylib         0x00007fff85d2f682 read + 10
    1   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    2   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 11:: BrowserBlockingWorker1/28947
    0   libsystem_kernel.dylib         0x00007fff85d2e136 __psynch_cvwait + 10
    1   com.google.Chrome.framework   0x000000010ebb71fb ChromeMain + 7307851
    2   com.google.Chrome.framework   0x000000010ebbe127 ChromeMain + 7336311
    3   com.google.Chrome.framework   0x000000010ebbd853 ChromeMain + 7334051
    4   com.google.Chrome.framework   0x000000010ebc0943 ChromeMain + 7346579
    5   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    6   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 12:: Chrome_DBThread
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x00000001115c2a04 ChromeMain + 51395156
    10  com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    11  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    12  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 13:: Chrome_FileThread
    0   libsystem_kernel.dylib         0x00007fff85d2f21a kevent + 10
    1   com.google.Chrome.framework   0x000000010ebd1a8d ChromeMain + 7416541
    2   com.google.Chrome.framework   0x000000010eb4a2a8 ChromeMain + 6861560
    3   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    4   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    5   com.google.Chrome.framework   0x00000001115c2a34 ChromeMain + 51395204
    6   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    7   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    8   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 14:: Chrome_FileUserBlockingThread
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x00000001115c2a64 ChromeMain + 51395252
    10  com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    11  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    12  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 15:: Chrome_ProcessLauncherThread
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x00000001115c2a94 ChromeMain + 51395300
    10  com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    11  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    12  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 16:: Chrome_CacheThread
    0   libsystem_kernel.dylib         0x00007fff85d2f21a kevent + 10
    1   com.google.Chrome.framework   0x000000010ebd1a8d ChromeMain + 7416541
    2   com.google.Chrome.framework   0x000000010eb4a2c0 ChromeMain + 6861584
    3   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    4   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    5   com.google.Chrome.framework   0x00000001115c2ac4 ChromeMain + 51395348
    6   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    7   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    8   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 17:: Chrome_IOThread
    0   libsystem_kernel.dylib         0x00007fff85d2f21a kevent + 10
    1   com.google.Chrome.framework   0x000000010ebd1a8d ChromeMain + 7416541
    2   com.google.Chrome.framework   0x000000010eb4a2a8 ChromeMain + 6861560
    3   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    4   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    5   com.google.Chrome.framework   0x00000001115c2af4 ChromeMain + 51395396
    6   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    7   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    8   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    9   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    10  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 18:: IndexedDB
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 19:: NetworkConfigWatcher
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff8c9318d9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.google.Chrome.framework   0x000000010eb4b2d4 ChromeMain + 6865700
    7   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    8   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    9   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    10  com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    11  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    12  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.google.Chrome.framework   0x0000000111700b0c ChromeMain + 52697948
    3   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    4   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 21:: BrowserWatchdog
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 22:: OptimizingCompi
    0   libsystem_kernel.dylib         0x00007fff85d2951a semaphore_wait_trap + 10
    1   com.google.Chrome.framework   0x000000011015a5c7 ChromeMain + 29996567
    2   com.google.Chrome.framework   0x000000011003b645 ChromeMain + 28821141
    3   com.google.Chrome.framework   0x000000011015bb97 ChromeMain + 30002151
    4   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 23:: Proxy resolver
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 24:: AudioThread
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 25:: NetworkConfigWatcher
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff8c9318d9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.google.Chrome.framework   0x000000010eb4b2d4 ChromeMain + 6865700
    7   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    8   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    9   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    10  com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    11  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    12  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    13  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    14  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 26:: Proxy resolver
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 27:: Chrome_SafeBrowsingThread
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 28:: Chrome_HistoryThread
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 29:: Startup watchdog thread Watchdog
    0   libsystem_kernel.dylib         0x00007fff85d2e136 __psynch_cvwait + 10
    1   com.google.Chrome.framework   0x000000010ebb71fb ChromeMain + 7307851
    2   com.google.Chrome.framework   0x000000010ebc315f ChromeMain + 7356847
    3   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    4   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 30:: BrowserBlockingWorker2/69643
    0   libsystem_kernel.dylib         0x00007fff85d2e136 __psynch_cvwait + 10
    1   com.google.Chrome.framework   0x000000010ebb71fb ChromeMain + 7307851
    2   com.google.Chrome.framework   0x000000010ebbe127 ChromeMain + 7336311
    3   com.google.Chrome.framework   0x000000010ebbd853 ChromeMain + 7334051
    4   com.google.Chrome.framework   0x000000010ebc0943 ChromeMain + 7346579
    5   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    6   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 31:: BrowserBlockingWorker3/70147
    0   libsystem_kernel.dylib         0x00007fff85d2e136 __psynch_cvwait + 10
    1   com.google.Chrome.framework   0x000000010ebb71fb ChromeMain + 7307851
    2   com.google.Chrome.framework   0x000000010ebbe127 ChromeMain + 7336311
    3   com.google.Chrome.framework   0x000000010ebbd853 ChromeMain + 7334051
    4   com.google.Chrome.framework   0x000000010ebc0943 ChromeMain + 7346579
    5   com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    6   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 32:: handle-watcher-thread
    0   libsystem_kernel.dylib         0x00007fff85d2e136 __psynch_cvwait + 10
    1   com.google.Chrome.framework   0x000000010f9f4be8 ChromeMain + 22240312
    2   com.google.Chrome.framework   0x000000010f9e6e53 ChromeMain + 22183587
    3   com.google.Chrome.framework   0x000000010f9e716d ChromeMain + 22184381
    4   com.google.Chrome.framework   0x000000010f9ea65f ChromeMain + 22197935
    5   com.google.Chrome.framework   0x000000010f9e02aa ChromeMain + 22156026
    6   com.google.Chrome.framework   0x000000010f9e002e ChromeMain + 22155390
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 33:: Chrome_PasswordStore_Thread
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.google.Chrome.framework   0x000000010eb4b00f ChromeMain + 6864991
    6   com.google.Chrome.framework   0x000000010eb4acdc ChromeMain + 6864172
    7   com.google.Chrome.framework   0x000000010eba8097 ChromeMain + 7246055
    8   com.google.Chrome.framework   0x000000010eb922ed ChromeMain + 7156541
    9   com.google.Chrome.framework   0x000000010ebc11d3 ChromeMain + 7348771
    10  com.google.Chrome.framework   0x000000010ebbd23b ChromeMain + 7332491
    11  libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    12  libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    13  libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 34:: Dispatch queue: com.apple.root.default-qos
    0   libsystem_kernel.dylib         0x00007fff85d2f682 read + 10
    1   com.apple.AppKit               0x00007fff916c2d87 __82-[NSPersistentUIRestorer tearDownStateRestorationApparatusAndResumeWindowOrdering]_block_invoke + 54
    2   com.apple.AppKit               0x00007fff91e72672 run_cocoa_block + 41
    3   com.apple.AppKit               0x00007fff91e72ebc my_io_execute_passive_block + 49
    4   com.apple.AppKit               0x00007fff91e74a4e my_io_execute_passive_block_with_release + 14
    5   libdispatch.dylib             0x00007fff8cc15c13 _dispatch_client_callout + 8
    6   libdispatch.dylib             0x00007fff8cc1888f _dispatch_root_queue_drain + 935
    7   libdispatch.dylib             0x00007fff8cc26fe4 _dispatch_worker_thread3 + 91
    8   libsystem_pthread.dylib       0x00007fff8a151637 _pthread_wqthread + 729
    9   libsystem_pthread.dylib       0x00007fff8a14f40d start_wqthread + 13
    Thread 35:
    0   libsystem_kernel.dylib         0x00007fff85d294de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85d2864f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff868e6b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff868e5ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff868e5858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff916c9f9b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8a151268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8a1511e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8a14f41d thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000107  rbx: 0x0000000000000000  rcx: 0x0000000000000010  rdx: 0xfffffffffffffff7
      rdi: 0x00007fff5174a860  rsi: 0x00007fc340d2f6c8  rbp: 0x00007fff5174a830  rsp: 0x00007fff5174a830
       r8: 0x00007fff5174a7f0   r9: 0x00007fff761a9300  r10: 0x00000000000170d8  r11: 0x0000003c10a1b268
      r12: 0x00007fff5174acb0  r13: 0xac00db54a152d9e4  r14: 0x00007fff5174acc0  r15: 0x00006000001127e0
      rip: 0x000000010eb60df5  rfl: 0x0000000000000246  cr2: 0x00007fff772325a0
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     3
    Binary Images:
           0x10e4b4000 -        0x10e4b4fff +com.google.Chrome (39.0.2171.71 - 2171.71) <CC0B2AB5-2105-3A72-B882-51A64B0672EC> /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
           0x10e4bc000 -        0x1138a1f1f +com.google.Chrome.framework (39.0.2171.71 - 2171.71) <1069D98F-6F04-32D6-B373-1EF31799C676> /Applications/Google Chrome.app/Contents/Versions/39.0.2171.71/Google Chrome Framework.framework/Google Chrome Framework
           0x113e62000 -        0x113e99fff  com.apple.audio.midi.CoreMIDI (1.10 - 88) <8803C090-9288-3128-B0FF-9CBA810660DC> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x118b28000 -        0x118b42ff7 +com.google.Keystone.Registration (1.2.0 - 1.2.0.7787) <D91C4B90-0C94-E3B6-329C-371509DA6663> /Applications/Google Chrome.app/Contents/Versions/39.0.2171.71/Google Chrome Framework.framework/Frameworks/KeystoneRegistration.framework/KeystoneRegistrat ion
           0x12492b000 -        0x12492bfe7 +cl_kernels (???) <CA45474D-E375-4093-B424-E569AE0011BE> cl_kernels
           0x124e6a000 -        0x124e6afef +cl_kernels (???) <149AA809-129B-4BF1-9F12-4BED1FB5EED1> cl_kernels
           0x125e18000 -        0x125e1cfff  com.apple.audio.AppleHDAHALPlugIn (269.13 - 269.13) <174943E9-03C3-3CE6-9A0D-B0D573D6E37F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x128219000 -        0x1282fffef  unorm8_bgra.dylib (2.4.5) <8AB40A27-5A5E-39D2-BB05-3FE82CA02EF9> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
        0x7fff6abbd000 -     0x7fff6abf3837  dyld (353.2.1) <72A99D0F-0B56-3938-ABC5-67A0F33757C4> /usr/lib/dyld
        0x7fff856d2000 -     0x7fff85713fff  libGLU.dylib (11.1) <4CCB6833-9CE2-3228-A1D7-A8BB9D5B61F6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8574e000 -     0x7fff85759ff7  com.apple.CommerceCore (1.0 - 376.5) <E45A6A4B-6CF2-33AF-B91F-E0C48410B84E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8576f000 -     0x7fff857caff7  com.apple.QuickLookFramework (5.0 - 675.1) <0307D771-68AC-3353-9F19-B6C9ED961956> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff857cb000 -     0x7fff8581cff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff85850000 -     0x7fff85c27fe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff85c28000 -     0x7fff85c2aff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff85c2b000 -     0x7fff85c36fff  libGL.dylib (11.1) <075EA1BB-3C6F-368F-92CB-593085EDCB35> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff85c37000 -     0x7fff85c3efff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff85c64000 -     0x7fff85c7bff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff85c89000 -     0x7fff85c94ff7  com.apple.speech.synthesis.framework (5.3.2 - 5.3.2) <875F8D4E-AC6D-343B-81B8-31977FEFFE95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff85c95000 -     0x7fff85cdbffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff85cdc000 -     0x7fff85ceeff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff85cef000 -     0x7fff85d17fff  libxpc.dylib (559.10.2) <2BADFEAB-1F10-393A-9EE7-2A1919789B45> /usr/lib/system/libxpc.dylib
        0x7fff85d18000 -     0x7fff85d35fff  libsystem_kernel.dylib (2782.10.65) <4599885F-4429-3F7B-A74F-7D04D6FA155A> /usr/lib/system/libsystem_kernel.dylib
        0x7fff85d36000 -     0x7fff85d3effb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff85d7c000 -     0x7fff85e11ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff85f79000 -     0x7fff85f79fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff85fa8000 -     0x7fff85fa9fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff86858000 -     0x7fff86873ff7  com.apple.aps.framework (4.0 - 4.0) <79A310DC-A90C-3C5A-86CB-B95EBB73354C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff86874000 -     0x7fff86c0afff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86ce6000 -     0x7fff86d16fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff86d17000 -     0x7fff86d19fff  libsystem_configuration.dylib (699.1.5) <61E2497F-92B4-3A75-BCA9-F9D39B471045> /usr/lib/system/libsystem_configuration.dylib
        0x7fff86d1a000 -     0x7fff86d25fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff86d26000 -     0x7fff86d26fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff86d27000 -     0x7fff86d43ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff86d44000 -     0x7fff86fbefff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86fef000 -     0x7fff86ffaff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff87013000 -     0x7fff87016fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff87021000 -     0x7fff87022ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8734b000 -     0x7fff87365fff  com.apple.AppleVPAFramework (1.2.7 - 1.2.7) <B625468E-4639-349E-BAB1-759E1A76F452> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff87366000 -     0x7fff873a6ff7  com.apple.CloudDocs (1.0 - 280.5) <507847BC-2333-3321-9FB0-DD9E781074DB> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff873a7000 -     0x7fff87438ff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff87439000 -     0x7fff8788cfc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff87912000 -     0x7fff87927fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff87928000 -     0x7fff87a58fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff87b1b000 -     0x7fff87f4bfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff87f4c000 -     0x7fff87fbdff7  com.apple.framework.IOKit (2.0.2 - 1050.10.3) <3F3464CF-C11F-3272-A7D3-486363273AC8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87fbe000 -     0x7fff8814cfff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff884d6000 -     0x7fff8856afff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8856b000 -     0x7fff88572fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff88573000 -     0x7fff885e9fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff885ea000 -     0x7fff8860dfff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8860e000 -     0x7fff88911fff  com.apple.HIToolbox (2.1.1 - 757.1) <A9ED8183-002F-3087-AF1C-05D76DB75956> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88b70000 -     0x7fff88b7bff7  libkxld.dylib (2782.10.65) <912D065F-1E69-3C5A-AC76-566E5B4952FF> /usr/lib/system/libkxld.dylib
        0x7fff891e4000 -     0x7fff891e4fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff891e5000 -     0x7fff891f3fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1558) <597B7A30-92C4-3029-BB56-4B0074890888> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff891f4000 -     0x7fff891fbff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff89220000 -     0x7fff89222ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff89223000 -     0x7fff8922eff7  libcsfde.dylib (471.10.2) <995F8496-C6A1-3758-9F2B-96FCB8C3177D> /usr/lib/libcsfde.dylib
        0x7fff8922f000 -     0x7fff89231fff  libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff89259000 -     0x7fff895c4fff  com.apple.VideoToolbox (1.0 - 1562.107) <27EC7747-F174-3988-8440-F435507333F1> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff895c5000 -     0x7fff895c8fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff895c9000 -     0x7fff896ebfff  com.apple.LaunchServices (644.12.1 - 644.12.1) <18B05312-9817-3C9E-917E-62C7220D42B2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff896ec000 -     0x7fff898efff3  com.apple.CFNetwork (720.2.2 - 720.2.2) <E2A19530-2DD6-3A0C-8551-52C4219BC9BD> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff89ae5000 -     0x7fff89affff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff89b00000 -     0x7fff89b06fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff89b07000 -     0x7fff89b47ff7  libGLImage.dylib (11.1) <2A7F2DFA-0EB7-3636-8492-E869945ED853> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89b48000 -     0x7fff89b48fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff89c1c000 -     0x7fff89c24ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff89c25000 -     0x7fff89c27fff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff89c28000 -     0x7fff89c2aff7  libsystem_sandbox.dylib (358.1.1) <50A63D60-189A-37E5-8F80-06C85D9AF943> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff89c53000 -     0x7fff89d29ff3  com.apple.DiskImagesFramework (10.10.1 - 396) <32CB50F2-FD6C-3E1D-95CB-2C57F8AB7909> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff89d2a000 -     0x7fff89d3dff7  com.apple.MultitouchSupport.framework (262.24 - 262.24) <0FE7B238-BC02-3414-9F1B-DD82E77E5AB9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff89d3e000 -     0x7fff89d42fff  com.apple.LoginUICore (3.0 - 3.0) <F51B57BA-9F69-3A51-8083-A469CE869C29> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff89d43000 -     0x7fff89d54fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff89d55000 -     0x7fff89ec0ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff89ed7000 -     0x7fff89edafff  com.apple.xpc.ServiceManagement (1.0 - 1) <21429BAD-E728-377A-8A19-B0C74692B8A4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff89edb000 -     0x7fff89f96ff7  com.apple.DiscRecording (9.0 - 9000.4.2) <F5135FBB-063D-3D91-AB50-7C37E3BB84F6> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff89fd0000 -     0x7fff8a048ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8a04e000 -     0x7fff8a050ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff8a068000 -     0x7fff8a082ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8a0a6000 -     0x7fff8a0a8ff7  com.apple.securityhi (9.0 - 55006) <4797DC4A-1F33-32F9-9CA4-BB422820A3F5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8a0a9000 -     0x7fff8a0acff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8a0ad000 -     0x7fff8a100ffb  libAVFAudio.dylib (118.3) <195CC534-59F4-328E-A7C1-FC455425E0C4> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8a101000 -     0x7fff8a14dff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff8a14e000 -     0x7fff8a157fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8a159000 -     0x7fff8a159ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff8a15a000 -     0x7fff8a195fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8a23f000 -     0x7fff8a2feff7  com.apple.backup.framework (1.6.2 - 1.6.2) <6659428D-64AA-3BBE-B849-B9C7BAAC75FA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8a2ff000 -     0x7fff8a4f946f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
        0x7fff8a502000 -     0x7fff8a5f5ff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8a5f6000 -     0x7fff8a5fbff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff8a5fc000 -     0x7fff8a636ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8a637000 -     0x7fff8a639fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff8a63a000 -     0x7fff8a686fff  com.apple.corelocation (1486.17 - 1615.21) <661639C3-8C5D-327D-A1CB-430EB2AA4D00> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8a687000 -     0x7fff8a6a7fff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8b05a000 -     0x7fff8b05fff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8b060000 -     0x7fff8b072ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff8b073000 -     0x7fff8b07cff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8b07d000 -     0x7fff8b083ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8b084000 -     0x7fff8b193ffb  com.apple.desktopservices (1.9.2 - 1.9.2) <DEB1362D-6BA2-3D33-990C-55D1E77D1406> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8b194000 -     0x7fff8b19cfff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8b19d000 -     0x7fff8b23ffff  com.apple.Bluetooth (4.3.2 - 4.3.2b10) <5E65AB22-4A4B-3C2A-AD60-EF52758D733B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8b240000 -     0x7fff8b242fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8b30b000 -     0x7fff8b310fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8b311000 -     0x7fff8b341ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8b342000 -     0x7fff8b5aaffb  com.apple.security (7.0 - 57031.10.1) <E6F65276-584C-3222-90A9-DEDFC877A148> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b6c4000 -     0x7fff8b6c7ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <7B56E9E3-32C9-341C-96FE-B4BD37D38659> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8b6c8000 -     0x7fff8b6d3ff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b6d4000 -     0x7fff8b915ff7  com.apple.AddressBook.framewor

    Try the following.
    OS X: If you see issues after using "Apply to enclosed items" on your Home folder - Apple Support
    Apply permissions to your home folder and test.

  • Im a Uni student&need help:JAVA Final Year Project: Undo Manager Problem

    Hey all,
    Im writing a Final Year Project and have minimal experience writing in JAVA.
    It is an information visualisation assignment which involves reproducing code/text in a reduced format. Sort of to do with Line oriented statistics.
    http://www.cc.gatech.edu/aristotle/Tools/tarantula/continuous.gif
    This image will give you an idea of what im talking about.
    Anyway, i need to know if its possible to get information about individual undos/edits from an undomanager.
    Basically i need to be able to say, for example,
    there are 12 undos
    undo 12 occurs at line X
    undo 11 occurs at line Y
    etc etc
    I need to be able to get this information without actually invoking the Undo last edit call.
    Im bringing the Java undomanager tutorial home but from what ive read it seems like impossible?
    Any and all help appreciated.
    Regards,
    P

    When I was at uni I had to implement that for the text area of an IDE. All I did was rip off the code from the Notepad.java that comes with the SDK.

  • Java Intro student needs help on arrays

    As my first assignment I have created a program called RobotRat which has a "Rat" move north, south, east, or west on an array floor. I have the program running but am having trouble creating my "floor" using a two-dimensional array. My teacher also wants us to use boolean values for our array. I am drawing a blank on how to create this. From my books I have gathered the following code but cannot get it to work. Any help would be greatly appreciated:
    1.public class RobotRatArray
    2.{
    3.
    4. dataType RobotRatArray[] [];
    5. int matrix [] [];
    6. matrix = new int [20] [20];
    7.
    8.
    9.}

    Okay, I just spoke with a classmate of mine and they said my array isn't in another window. I need to do some system.out.print commands so they print out on my dos window. I am just so confused with this program. I am going to copy and paste it in here in case anyone has any guidance for me. It would be greatly appreciated. (Sorry, I can't figure out how to get my line numbers to populate from textpad when I paste in this message)
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class RobotRat extends JFrame implements ActionListener
         private JPanel panel1 = null;
         private JPanel panel2 = null;
         private JPanel panel3 = null;
         private JLabel label1 = null;
         private JLabel label2 = null;
         private JLabel label3 = null;
         private JTextField textfield1 = null;
         private JButton button1 = null;
         private JButton button2 = null;
         private JButton button3 = null;
         private JButton button4 = null;
         private boolean[][] floor = null;
         private int current_column = 21;
         private int current_row = 21;
         private static final int UP = 1;
         private static final int DOWN = 0;
         private static final int NORTH = 0;
         private static final int EAST = 1;
         private static final int SOUTH = 2;
         private static final int WEST = 3;
         private int pen_position = UP;
         private int rats_direction = EAST;
    public RobotRat()
    super("RobotRat");
    label1 = new JLabel("Spaces: ");
    textfield1 = new JTextField(40);
    button1 = new JButton("Move North");
    button2 = new JButton("Move South");
    button3 = new JButton("Move East");
    button4 = new JButton("Move West");
    button1.addActionListener(this);
    button2.addActionListener(this);
    button3.addActionListener(this);
    button4.addActionListener(this);
    this.getContentPane().setLayout(new FlowLayout());
    this.getContentPane().add(label1);
    this.getContentPane().add(textfield1);
    this.getContentPane().add(button1);
    this.getContentPane().add(button2);
    this.getContentPane().add(button3);
    this.getContentPane().add(button4);
    this.setSize(600, 100);
    this.setLocation(100, 100);
    this.show();
    public void togglePen()
         switch(pen_position)
              case (UP): pen_position = DOWN;
              label1.setText("DOWN");
              break;
              case (DOWN): pen_position = UP;
              label1.setText("UP");
              break;
              default: break;
    public void turnLeft()
         switch(rats_direction)
              case NORTH: rats_direction = WEST;
              label3.setText("WEST");
              break;
              case EAST: rats_direction = NORTH;
              label3.setText("NORTH");
              break;
              case SOUTH: rats_direction = EAST;
              label3.setText("EAST");
              break;
              case WEST: rats_direction = SOUTH;
              label3.setText("SOUTH");
              break;
    public void move()
         int spaces_to_move = 0;
         try
              spaces_to_move=Integer.parseInt(textfield1.getText());
         catch(Exception e)
         switch(pen_position)
              case UP:
                   switch(rats_direction)
                        case NORTH: ;
                        case SOUTH: ;
                        case WEST: ;
                        case EAST: ;
              break;
              case DOWN:
                   switch(rats_direction)
                        case NORTH: ;
                        case SOUTH: ;
                        case WEST: ;
                        case EAST: ;
              break;
    public void actionPerformed(ActionEvent e)
         if (e.getActionCommand().equals("TogglePen")) {
         togglePen();
         else if (e.getActionCommand().equals("TurnLeft")) {
         turnLeft();
    public static void main(String[] args)
         RobotRat rr = new RobotRat();

  • Uni student needs help

    hello,
    i need some help in understanding my applet. i have no little experience programming and i am required to write the following small applet as part of an exam for this the first thursday in june.
    http://www-csfy.cs.ualberta.ca/~c114/LabExams/LElocations/lbe29.html
    This is the code that I have written so far:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Exam29 extends Applet implements ActionListener {
    private final static String square = "Square";
    private final static String circle = "Circle";
    private final static String draw = "Draw";
    private final static String noShape = "Not a shape";
    private String someText;
    private Button drawButton;
    private TextField aTextField;
         public void init() {
              this.aTextField = new TextField(20);
              this.add(aTextField);
              this.drawButton = new Button(Exam29.draw);
              this.add(drawButton);
              repaint();
    public void actionPerformed(ActionEvent event){
         String aDrawButton = event.getActionCommand();
         if (aDrawButton.equalsIgnoreCase(Exam29.draw))
              this.someText=aTextField.getText();
         public void paint( Graphics g ) {
              g.drawString(noShape,10,40);
         if (Exam29.square.equalsIgnoreCase(this.someText))
              g.drawRect(10,40,10,10);
         else if (Exam29.circle.equalsIgnoreCase(this.someText))
              g.drawOval(10,40,10,10);
         else
              g.drawString(noShape,10,40);
    Now my problem is that it doesn't respond to input. it just goes through the program and executes the last statement of my last condition.
    I know this is simple. But simple things always escape me. What is wrong with my understanding of the problem?
    I don't want people to write the program for me, i just want to know where i am going wrong.
    Thanks in advance to all who respond.
    screefer

    try this code.
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Exam29 extends Applet implements ActionListener {
    private final static String square = "Square";
    private final static String circle = "Circle";
    private final static String draw = "Draw";
    private final static String noShape = "Not a shape";
    private String someText;
    private Button drawButton;
    private TextField aTextField;
    public void init() {
    this.aTextField = new TextField(20);
    this.add(aTextField);
    this.drawButton = new Button(Exam29.draw);
    // actionListener added needed to call actionPerformed()
    this.drawButton.addActionListener(this);
    this.add(drawButton);
    repaint();
    public void actionPerformed(ActionEvent event){
    String aDrawButton = event.getActionCommand();
    if (aDrawButton.equalsIgnoreCase(Exam29.draw))
    this.someText=aTextField.getText();
    // need to repaint after button click
    repaint();
    public void paint( Graphics g ) {
    //   g.drawString(noShape,10,40);
       if (Exam29.square.equalsIgnoreCase(this.someText))
          g.drawRect(10,40,10,10);
       else if (Exam29.circle.equalsIgnoreCase(this.someText))
          g.drawOval(10,40,10,10);
       else
          g.drawString(noShape,10,40);
    }cheers
    jamie

  • Uni student needs help... again 8(

    hello,
    i need some help in understanding my applet. i have little experience programming and i am required to write the following small applet as part of an exam for this the first thursday in june.
    http://www-csfy.cs.ualberta.ca/~c114/LabExams/LElocations/lbe28.html
    I also am restricted to using the following classes and methods:
    http://www-csfy.cs.ualberta.ca/~c114/LabExams/LElocations/library.html
    I have written some of the code for this exercise and it compiles fine, but when I try to push the enter button and push the string object into the stack I get a nullpointerException. Does anyone know why this would be the case? What would be my fix and why?
    Once again Thanks in Advance to all who respond.
    This is the code that I have written so far:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.util.*;
    public class Exam28 extends Applet implements ActionListener {
    private final static String enter = "Enter";
    private final static String reverse = "Reverse";
    private String aString;
    private Button anEnterButton, aReverseButton;
    private TextField aTextField;
    private Stack aStack;
         public void init() {
              this.aTextField = new TextField(20);
              this.add(aTextField);
              this.anEnterButton = new Button(Exam28.enter);
              this.anEnterButton.addActionListener(this);
              this.add(this.anEnterButton);
              this.aReverseButton = new Button(Exam28.reverse);
              this.aReverseButton.addActionListener(this);
              this.add(this.aReverseButton);
              repaint();
         public void paint( Graphics g ) {
         public void actionPerformed(ActionEvent event){
         String enterButtonPicked=event.getActionCommand();
         if (enterButtonPicked.equals(Exam28.enter)){
              aString=aTextField.getText();
              aStack.push(aString);

    you need to initialize your Stack before you push anything on to it.
    you could do it when you declare itat the top, like:
    private Stack aStack = new Stack();
    cheers
    jamie

  • Collage Students need help with Java project(Email Server) whats analysis?

    Hi im studying in collage at the moment and i have just started learning java this semester, the thing is my teacher just told us to do an project in java , since we just started the course and i dont have any prior knowledge about java i was wondering if some one could help me with the project.
    i choose Email Sevice as my project and we have to submit an analysis and design document , but how the hell am i suppose to know what analysis is ? i just know we use ER diagrams & DFD's in the design phase but i dont know what analysis means ?
    could some one tell me what analysis on an email service might be? and what analysis on a subject means? is it the codeing involved or some thing coz the teacher told us not to do any codeing yet so im completly stumped,
    oh and btw we are a group of 3 students who are asking u the help here coz all of us in our class are stupmed ?

    IN case any one is interested this is the analysis i wrote
    ANALYSIS
    Analysis means figuring out what the problem is, maybe what kinds of solutions might be appropriate
    1.     Introduction:-
    The very definition of analysis is an investigation of the component parts of a whole and their relations in making up the whole. The Analysis done here is for an emailing service called Flashmail, the emailing service is used to send out mails to users registered with our service, these users and there log activities will be stored in some where, the most desirable option at this time is a Database, but this can change as the scope of the project changes.
    2.     Customer Analysis:-
    We are targeting only 30 registered users at the moment but this is subject to change as the scale changes of the project .Each user is going to be entitled to 1MB of storage space at this time since we lack the desired infrastructure to maintain anything higher than 1MB but the end vision of the project is to sustain 1000 MB of storage space while maintaining a optimal bandwidth allocation to each user so as to ensure a high speed of activity and enjoyment for the Customer.
    The Service will empower the user to be able to send, read, reply, and forward emails to there specified locations. Since we are working on a limited budget we can�t not at this time enable the sending of attachments to emails, but that path is also left open by modularity of java language, so we can add that feature when necessary.
    3.     Processor Load Analysis:-
    The number of messages per unit time processing power will be determined on hand with various algorithms, since it is best not to waste processor power with liberally distributing messages per unit time. Hence the number of messages will vary with in proportion to the number of registered users online at any given time.
    4.     Database Decision Analysis:-
    The High level Requirements of the service will have to be decided upon, the details of which can be done when we are implementing the project itself. An example of high level requirements are database management, we have chosen not to opt for flat files because of a number of reasons, first off a flat files are data files that contain records with no structured relationships additional knowledge is required to interpret these files such as the file format properties. The disadvantages associated with flat files are that they are not fast, they can only be read from top to bottom, and usually they have to be read all the way through. Though there is are advantages of Flat files they are that it takes up less space than a structured file. However, it requires the application to have knowledge of how the data is organized within the file.
    Good databases have key advantage over flat files concurrency. When you just read stuff from file it�s easy, but tries to synchronize multiple updates or writes into flat file from scripts that run in different process spaces.
    Whereas a flat file is a relatively simple database system in which each database is contained in a single table. In contrast, relational database systems can use multiple tables to store information, and each table can have a different record format.
    5.     Networking Analysis:-
    Virtually every email sent today is sent using two popular protocols known as SMTP (Simple Mail Transfer Protocol) and MIME (Multipurpose Internet Mail Extensions).
    1.     SMTP (Simple Mail Transfer Protocol)
    The SMTP protocol is the standard used by mail servers for sending and receiving email. In order to send email we will first establish a network connection to our SMTP server. Once you have finished sending your email message it is necessary that you disconnect from the SMTP server
    2.     MIME (Multipurpose Internet Mail Extensions)
    The MIME protocol is the standard used when composing email messages.

  • Uni student needs helps

    hello,
    i need some help in understanding my applet. i have little experience programming and i am required to write the following small applet as part of an exam for this the first thursday in june.
    http://www-csfy.cs.ualberta.ca/~c114/LabExams/LElocations/lbe28.html
    I also am restricted to using the following classes and methods:
    http://www-csfy.cs.ualberta.ca/~c114/LabExams/LElocations/library.html
    What I am trying to do is output each entry in the stack that is created previously using the draw method until the stack is empty. I have tried to do this but I get null pointer exceptions. What I need to understand is what part of my thought process am I omitting? Once again any responses are always appreciated.
    this is the code that I have written so far:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.util.*;
    public class Exam28 extends Applet implements ActionListener {
    private final static String enter = "Enter";
    private final static String reverse = "Reverse";
    private final static int increment=20;
    private String aString, anotherString;
    private Button anEnterButton, aReverseButton;
    private TextField aTextField;
    private Stack aStack = new Stack();
    private int numberLine;
         public void init() {
              this.aTextField = new TextField(20);
              this.add(aTextField);
              this.anEnterButton = new Button(Exam28.enter);
              this.anEnterButton.addActionListener(this);
              this.add(this.anEnterButton);
              this.aReverseButton = new Button(Exam28.reverse);
              this.aReverseButton.addActionListener(this);
              this.add(this.aReverseButton);
              repaint();
         public void paint( Graphics g ) {
              this.numberLine=40;
              g.drawString(anotherString, 10,this.numberLine);
              this.numberLine=this.numberLine+Exam28.increment;
              repaint();
         public void actionPerformed(ActionEvent event){
    //enters the text from the textfield and puts it into the stack
         String enterButton = event.getActionCommand();
         if (enterButton.equals(Exam28.enter)){
              this.aString = aTextField.getText();
              this.aStack.push(aString);
    //how do I empty the stack and print it's output from here using the paint method?
    //And print each output of the stack on a different line?
         String reverseButton=event.getActionCommand();
         if (reverseButton.equals(Exam28.reverse)){
              if (this.aStack.empty()){
         else
             anotherString =(String)this.aStack.pop();

    In your reverseButton action, just call repaint ...only.
    Inside your paint method ...do all the logic to empty and print the stack like this:
        while(!aStack.isEmpty()) {
          anotherString =(String)this.aStack.pop();
          g.drawString(anotherString, 10,this.numberLine);
          this.numberLine=this.numberLine+Exam28.increment;
        this.numberLine=40; // reset the counter for next time... so you can do it all again.You have to do it all at once, right inside paint, because a new call to paint will clear any previous output.

  • Does the % drop the decimal before or after calculation? Student needs help

    I'm a student taking a course on Java at home and I need to know if in a calculation, the % switch drops the decimal before or after calculation?

    % as in mod, as in remainder? I believe this only works on int/long values, in which case, it would probably be before... but I have been known to be wrong.

  • Intro To Java Programming student needing help on how to download java SDK on 10.6.8

    Hey Ladies and Gents,
    For the past hour I have been trying to download Java SDK for my 10.6.8 Mac. Can someone point me in the right direction. I am taking a course in intro to Java programming and the book I am using isnt as helpful as I hoped.

    SE 6 development kits support SE 5 constructs.  Just watch that you use only SE 5 constructs.  Texts on 5 will not list the 6 constructs, and texts on 6 are available that tell what came when.
    There is another forum (https://discussions.apple.com/community/developer_forums) where "developers" troll for questions to answer, and your developer questions will stay at the top of the list longer than in MacbookPro forum.

Maybe you are looking for

  • Back ground processing in Reports

    I need to prepare a report, it contains Selection Screen. This report  has to run in both foreground and in background. There is no option provided in selection screen to ideentify whether it runs in Foreground or in Background. In report I need to p

  • *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '' terminating with uncaught exception of type NSException abort() called

    After several failed attempts to run my application Simple Mind, I resorted to deleting the app and reinstalling the software. I have tried restarting my computer, tried a new install and no matter what I get the following error: Process:         Sim

  • Spry Accordion Widget problems - please help

    I've been trying to modify the settings for an accordion widget - basically to open the widget with no panels open, and to have varying panel heights. I have been to the help and the lab forums and have put in the code, but alas, nothing worked. So I

  • How do I get mac to use my server!

    Ok this is probably the simplest question, and yet I don't anything anywhere that tells me how to do this. I installed a Tiger server on a small network and I have 4 regular macs running Tiger. How do I tell the macs to login using the server? I want

  • P2p self-looped VLAN

    I have a single trunk on a 3560 connected to a Juniper EX4500 running PVST and the switch is also the root bridge as another 3560 on another port is also connected via a single trunk, both ports are fibre connected, one MM and one SM. The port to the