Stop ColdFusion 10 from logging to hibernatesql.log

Size: px
Start display at page:

Download "Stop ColdFusion 10 from logging to hibernatesql.log"

Transcription

1 Stop ColdFusion 10 from logging to hibernatesql.log boyzoid Does anyone know how to stop CF from logging SQL to hibernatesql.log? We have logging turned off at the application level, but the hibernatesql.log file still gets written to. Thoughts? Jun 20, 1:55 PM boyzoid Also...how can I stop it from logging to coldfusion_ouit.log Scott Stroz No trees were killed in the sending of this message, but a large number of electrons were terribly inconvenienced On Thu, Jun 20, 2013 at 1:56 PM, Scott Stroz - CF_CAB_General_Discussion Scott Stroz wrote: Does anyone know how to stop CF from logging SQL to hibernatesql.log? We have logging turned off at the application level, but the hibernatesql.log file still gets written to. Thoughts? Jun 20, 2:09 PM boyzoid I should have mentioned, hibernatesql.log and coldfusion_out.log are getting HUGE...quickly...and are not getting recycled according to the log file settings. Scott Stroz No trees were killed in the sending of this message, but a large number of electrons were terribly inconvenienced On Thu, Jun 20, 2013 at 1:56 PM, Scott Stroz - CF_CAB_General_Discussion Scott Stroz wrote: Does anyone know how to stop CF from logging SQL to hibernatesql.log? We have logging turned off at the application level, but the hibernatesql.log file still gets written to. Thoughts? Jun 20, 2:18 PM cfjedimaster I ll add that I ve seen this myself as well on another server. The log got _huge_ quickly. I just assumed I had done something wrong (still a chance of that ;). On Thu, Jun 20, 2013 at 1:19 PM, Scott Stroz - CF_CAB_General_Discussion Scott Stroz wrote:

2 I should have mentioned, hibernatesql.log and coldfusion_out.log are getting HUGE...quickly...and are not getting recycled according to the log file settings. Scott Stroz No trees were killed in the sending of this message, but a large number of electrons were terribly inconvenienced On Thu, Jun 20, 2013 at 1:56 PM, Scott Stroz - CF_CAB_General_Discussion <prforums@adobe.com<mailto:prforums@adobe.com> <mailto:prforums@adobe.com<mailto:prforums@adobe.com>>> wrote: Scott Stroz wrote: Does anyone know how to stop CF from logging SQL to hibernatesql.log? We have logging turned off at the application level, but the hibernatesql.log file still gets written to. Thoughts? Jun 20, 2:23 PM scrittler here i thought it was just me or a quirk of the server i was working on. The log not rolling over was a bigger concern - it s 1.3GB as of right now (yikes). Relevant parts of the log4j.properties file are being ignored: <code> ### Set Hibernate log log4j.logger.org.hibernate=error, HIBERNATECONSOLE ### log just the SQL log4j.logger.org.hibernate.sql=debug, HIBERNATECONSOLE log4j.additivity.org.hibernate.sql=false ### Also log the parameter binding to the prepared statements. #log4j.logger.org.hibernate.type=debug ### log schema export/update ### #log4j.logger.org.hibernate.tool.hbm2ddl=error ### log cache activity ### log4j.logger.org.hibernate.cache=error, HIBERNATECONSOLE # HibernateConsole is set to be a ColsoleAppender for Hibernate message using a PatternLayout. log4j.appender.hibernateconsole.file=c:/coldfusion10/cfusion/logs/hibernatesql.log log4j.appender.hibernateconsole.append=true log4j.appender.hibernateconsole.maxfilesize=500kb log4j.appender.hibernateconsole.maxbackupindex=3 log4j.appender.hibernateconsole.layout=org.apache.log4j.patternlayout log4j.appender.hibernateconsole.layout.conversionpattern=%d{mm/dd HH:mm:ss} [%t] HIBERNATE %-5p - %m%n%n </code> Jun 20, 2:27 PM sam.farmer As CF10 adds Hiberbate SQL to the cf debugging information, a "thinking-out-loud" idea is to check the Debugging Settings in CF Admin especially the Database Activity one. Maybe changing those fixes this? Jun 20, 4:43 PM

3 phill.nacelli What log level setting do you have on your log4j file? If you see DEBUG you may want to change to ERROR so it doesn t log everything: ### Hibernate Log Settings ### Set Hibernate log log4j.logger.org.hibernate=error, HIBERNATECONSOLE ### log just the SQL log4j.logger.org.hibernate.sql=error, HIBERNATECONSOLE log4j.additivity.org.hibernate.sql=false ### Also log the parameter binding to the prepared statements. #log4j.logger.org.hibernate.type=debug I just checked my log4j file and the append settings are commented out, can you guys confirm that s the default, maybe that s what s causing the large files: # HibernateConsole is set to be a ColsoleAppender for Hibernate message using a PatternLayout. log4j.appender.hibernateconsole.file=c:/coldfusion10/cfusion/logs/hibernatesql.log log4j.appender.hibernateconsole.append=true log4j.appender.hibernateconsole.layout=org.apache.log4j.patternlayout log4j.appender.hibernateconsole.layout.conversionpattern=%d{mm/dd HH:mm:ss} [%t] HIBERNATE %-5p - %m%n%n Phill Nacelli Senior Software Architect, Solutions Lead AboutWeb, LLC Adobe Community Professional ColdFusion User Group Manager Jun 20, 5:19 PM sam.farmer Phill Nacelli said: I just checked my log4j file and the append settings are commented out, can you guys confirm that s the default, maybe that s what s causing the large files: # HibernateConsole is set to be a ColsoleAppender for Hibernate message using a PatternLayout. log4j.appender.hibernateconsole.file=c:/coldfusion10/cfusion/logs/hibernatesql.log log4j.appender.hibernateconsole.append=true log4j.appender.hibernateconsole.layout=org.apache.log4j.patternlayout log4j.appender.hibernateconsole.layout.conversionpattern=%d{mm/dd HH:mm:ss} [%t] HIBERNATE %-5p - %m%n%n I checked an install on Windows and Mac and both have the same settings you highlighted here Phil. I know I did not change them so it looks like that is the configuration CF is shipping with. Un-believ-able. For me ORM was the jewel of CF9 which inspired me to write three ORM based presentations (that I have given 10+ times). In CF10 its been a bit of a disaster; ORM Search does not work in a cluster yet is only available in Enterprise, problems with cache conflicts on start up a year after release, and now the logs are screwed up. I feel you ve taken the jewel and made it a piece of coal. Jun 20, 10:08 PM cfjedimaster So since this big log thing has hit a bunch of us, can someone please write up a blog post to warn folks? Has anyone tested uncommenting what Phil found and see if it works?

4 On Thu, Jun 20, 2013 at 9:09 PM, Sam Farmer - CF_CAB_General_Discussion Sam Farmer wrote: Phill Nacelli said: I just checked my log4j file and the append settings are commented out, can you guys confirm that s the default, maybe that s what s causing the large files: # HibernateConsole is set to be a ColsoleAppender for Hibernate message using a PatternLayout. log4j.appender.hibernateconsole.file=c:/coldfusion10/cfusion/logs/hibernatesql.log log4j.appender.hibernateconsole.append=true log4j.appender.hibernateconsole.layout=org.apache.log4j.patternlayout log4j.appender.hibernateconsole.layout.conversionpattern=%d{mm/dd HH:mm:ss} [%t] HIBERNATE %-5p - %m%n%n I checked an install on Windows and Mac and both have the same settings you highlighted here Phil. I know I did not change them so it looks like that is the configuration CF is shipping with. Un-believ-able. For me ORM was the jewel of CF9 which inspired me to write three ORM based presentations (that I have given 10+ times). In CF10 its been a bit of a disaster; ORM Search does not work in a cluster yet is only available in Enterprise, problems with cache conflicts on start up a year after release, and now the logs are screwed up. I feel you ve taken the jewel and made it a piece of coal. Jun 20, 10:17 PM phill.nacelli So I changed the MaxFileSize property to 10KB and the log level to TRACE (log everything) and it s still not working, look at the size of the log file and there aren t any cycled backup files (.1,.2, etc):

5 Turns out in order to use the MaxFileSize and MaxBackupIndex settings you have to change the org.apache.log4j.fileappender libray to org.apache.log4j.rollingfileappender then it will work: log4j.png hibernatesql_log.png log4j_rolling.png hibernatesql_log_rolling.png Phill Nacelli Senior Software Architect, Solutions Lead AboutWeb, LLC Adobe Community Professional ColdFusion User Group Manager Jun 21, 10:25 AM phill.nacelli So turns out that most folks probably think that the "Max file size" value on the logging settings will also affect the hibernate log, but it s controlled by the log4j.properties files. Now I m curious if the other logs are using another instance of log4j or another logging mechanism altogether. Anyone from CF Team, can you clarify how logging works? Thanks,

6 CFAdmin_LogSettings.png Phill Nacelli Senior Software Architect, Solutions Lead AboutWeb, LLC Adobe Community Professional ColdFusion User Group Manager Jun 21, 11:21 AM phill.nacelli Here s another inconsistency that my colleague David Epler noticed: in the CF10 docs (which is the exact same as the for this page) under Logging you can see that supposedly the default hibernate loggging behavior is to the console: org.apache.log4j.consoleappender But if you look at a CF10 Base install the logging behavior is set to org.apache.log4j.fileappender which is creating the large log files. So the question is, is the log4j.properties file correct or someone accidently checked in the wrong version while doing some debugging? Phill Nacelli Senior Software Architect, Solutions Lead AboutWeb, LLC Adobe Community Professional ColdFusion User Group Manager Jun 21, 11:41 AM boyzoid Finally got around to looking at this again and was able to stop hibernate from logging by commenting out EVERY line related to hibernate in the block starting around line 24 Scott Stroz

7 No trees were killed in the sending of this message, but a large number of electrons were terribly inconvenienced On Fri, Jun 21, 2013 at 11:48 AM, Phill Nacelli - CF_CAB_General_Discussion Phill Nacelli wrote: Here s another inconsistency that my colleague David Epler noticed: in the CF10 docs (which is the exact same as the for this page) under Logging you can see that supposedly the default hibernate loggging behavior is to the console: org.apache.log4j.consoleappender 9E5E-26B66ACA9E81.html But if you look at a CF10 Base install the logging behavior is set to org.apache.log4j.fileappender which is creating the large log files. So the question is, is the log4j.properties file correct or someone accidently checked in the wrong version while doing some debugging? Jun 21, 12:22 PM rukumar@adobe.com Check out this blog entry which gives all the details about Hibernate logging. Rupesh Adobe ColdFusion Team Jun 26, 12:34 PM cfjedimaster Rupesh, that isn t necessarily the issue. The issue is that it seems (based on what Phil said) that the log settings in CF10 may be bad now. Or am I misunderstanding? On Wed, Jun 26, 2013 at 11:48 AM, Rupesh Kumar - CF_CAB_General_Discussion Rupesh Kumar wrote: Check out this blog entry which gives all the details about Hibernate logging. Jun 26, 1:06 PM phill.nacelli Rupesh, Currently the org.apache.log4j.fileappender setting will keep logging (ERROR level, but it can be significant on a development environment), as it stands it seems there s no way that the file size will be limited under this configuration. hence the suggestion to remove the comments on these lines: and change the default log file appender library line below to org.apache.log4j.rollingfileappender:

8 The documentation only tells folks how to make these changes, but the default setting as it stands now may not be the most optimal. Can you please verify and confirm that the current installation s default log4j.properties settings are correct? Thanks, Phill Nacelli Senior Software Architect, Solutions Lead AboutWeb, LLC Adobe Community Professional ColdFusion User Group Manager Jun 26, 3:00 PM rukumar@adobe.com Thanks Phil for explaining it in detail. I should have read the complete thread :) I am not sure how it was left as FileAppender. It should definitely be RollingFileAppender. Is there any E/R logged for this? From: Phill Nacelli - CF_CAB_General_Discussion [mailto:prforums@adobe.com] Sent: Thursday, June 27, :31 AM To: Rupesh Kumar Subject: RE: Stop ColdFusion 10 from logging to hibernatesql.log - CF_CAB_General_Discussion - ColdFusion_CAB_Forums Phill Nacelli wrote: Rupesh, Currently the org.apache.log4j.fileappender setting will keep logging (ERROR level, but it can be significant on a development environment), as it stands it seems there s no way that the file size will be limited under this configuration. hence the suggestion to remove the comments on these lines: and change the default log file appender library line below to org.apache.log4j.rollingfileappender: The documentation only tells folks how to make these changes, but the default setting as it stands now may not be the most optimal. Can you please verify and confirm that the current installation s default log4j.properties settings are correct? Thanks, Rupesh Adobe ColdFusion Team Jun 28, 1:59 PM atuttle One thing I ll note here is that you should only change it during the update if it is **still set to the default value**. I d be pretty pissed if I lost my config customizations by installing an update. (Though granted it s _only_ logging settings... but still...) Adam On Fri, Jun 28, 2013 at 1:59 PM, Rupesh Kumar - CF_CAB_General_Discussion Rupesh Kumar wrote: Thanks Phil for explaining it in detail. I should have read the complete thread :) I am not sure how it was left as FileAppender. It should definitely be RollingFileAppender.

9 Is there any E/R logged for this? From: Phill Nacelli - CF_CAB_General_Discussion [mailto:prforums@adobe.com<mailto:prforums@adobe.com>] Sent: Thursday, June 27, :31 AM To: Rupesh Kumar Subject: RE: Stop ColdFusion 10 from logging to hibernatesql.log - CF_CAB_General_Discussion - ColdFusion_CAB_Forums Phill Nacelli wrote: Rupesh, Currently the org.apache.log4j.fileappender setting will keep logging (ERROR level, but it can be significant on a development environment), as it stands it seems there s no way that the file size will be limited under this configuration. hence the suggestion to remove the comments on these lines: and change the default log file appender library line below to org.apache.log4j.rollingfileappender: The documentation only tells folks how to make these changes, but the default setting as it stands now may not be the most optimal. Can you please verify and confirm that the current installation s default log4j.properties settings are correct? Thanks, Jun 30, 3:44 PM rukumar@adobe.com That s right. We will have to see if we can update it for update. We will definitely change it for Splendor. From: Adam Tuttle - CF_CAB_General_Discussion [mailto:prforums@adobe.com] Sent: Monday, July 01, :16 AM To: Rupesh Kumar Subject: RE: Stop ColdFusion 10 from logging to hibernatesql.log - CF_CAB_General_Discussion - ColdFusion_CAB_Forums Adam Tuttle wrote: One thing I ll note here is that you should only change it during the update if it is **still set to the default value**. I d be pretty pissed if I lost my config customizations by installing an update. (Though granted it s _only_ logging settings... but still...) Adam On Fri, Jun 28, 2013 at 1:59 PM, Rupesh Kumar - CF_CAB_General_Discussion <prforums@adobe.com<mailto:prforums@adobe.com<mailto:prforums@adobe.com%3cmailto:prforums@adobe.com>>> wrote: Rupesh Kumar wrote: Thanks Phil for explaining it in detail. I should have read the complete thread :) I am not sure how it was left as FileAppender. It should definitely be RollingFileAppender. Is there any E/R logged for this? From: Phill Nacelli - CF_CAB_General_Discussion [mailto:prforums@adobe.com<mailto:prforums@adobe.com> <mailto:prforums@adobe.com%3cmailto:prforums@adobe.com%3e>] Sent: Thursday, June 27, :31 AM To: Rupesh Kumar Subject: RE: Stop ColdFusion 10 from logging to hibernatesql.log - CF_CAB_General_Discussion - ColdFusion_CAB_Forums

10 Phill Nacelli wrote: Rupesh, Currently the org.apache.log4j.fileappender setting will keep logging (ERROR level, but it can be significant on a development environment), as it stands it seems there s no way that the file size will be limited under this configuration. hence the suggestion to remove the comments on these lines: and change the default log file appender library line below to org.apache.log4j.rollingfileappender: The documentation only tells folks how to make these changes, but the default setting as it stands now may not be the most optimal. Can you please verify and confirm that the current installation s default log4j.properties settings are correct? Thanks, Rupesh Adobe ColdFusion Team Jul 1, 8:07 AM sam.farmer Yes you should check. Still I d be pretty surprised if anyone had changed the _three_ settings to match what CF ships with and _wants_ it to run that way in production. Current configuration is setting up the server to run out of room. Jul 1, 9:34 AM

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet. Mr G s Java Jive #2: Yo! Our First Program With this handout you ll write your first program, which we ll call Yo. Programs, Classes, and Objects, Oh My! People regularly refer to Java as a language that

More information

12 Follow-up Templates

12 Follow-up  Templates 12 Follow-up Email Templates that help turn prospects into customers in 2018 When you look at the sales process of most B2B sales teams, there s typically A LOT of things that you could improve. I generally

More information

Cold, Hard Cache KV? On the implementation and maintenance of caches. who is

Cold, Hard Cache KV? On the implementation and maintenance of caches. who is 1 of 5 TE X T ONLY Cold, Hard Cache On the implementation and maintenance of caches who is KV? click for video Dear KV, Our latest project at work requires a large number of slightly different software

More information

CS61A Notes Week 6: Scheme1, Data Directed Programming You Are Scheme and don t let anyone tell you otherwise

CS61A Notes Week 6: Scheme1, Data Directed Programming You Are Scheme and don t let anyone tell you otherwise CS61A Notes Week 6: Scheme1, Data Directed Programming You Are Scheme and don t let anyone tell you otherwise If you re not already crazy about Scheme (and I m sure you are), then here s something to get

More information

Background. $VENDOR wasn t sure either, but they were pretty sure it wasn t their code.

Background. $VENDOR wasn t sure either, but they were pretty sure it wasn t their code. Background Patient A got in touch because they were having performance pain with $VENDOR s applications. Patient A wasn t sure if the problem was hardware, their configuration, or something in $VENDOR

More information

The 21 WORD . That Can Get You More Clients. Ian Brodie

The 21 WORD  . That Can Get You More Clients. Ian Brodie The 21 WORD EMAIL That Can Get You More Clients Ian Brodie The 21 Word Email That Can Get You More Clients Hey there! Welcome to this short report on the 21 Word Email That Can Get You More Clients If

More information

MAXIMIZING THE UTILITY OF MICROSOFT OUTLOOK. Presented by: Lisa Hendrickson Deborah Savadra

MAXIMIZING THE UTILITY OF MICROSOFT OUTLOOK. Presented by: Lisa Hendrickson Deborah Savadra MAXIMIZING THE UTILITY OF MICROSOFT OUTLOOK Presented by: Lisa Hendrickson (@callthatgirl) Deborah Savadra (@legalofficeguru) INTRODUCTION: INBOX = MONEY Your inbox equals money, as it does for anyone

More information

1. You re boring your audience

1. You re boring your audience 1. You re boring your audience OK, so you ve convinced your users to visit your landing page. Or even better they ve signed up for your mailing list. That s great! Now that you have their attention, the

More information

Easy List Building System

Easy List Building System Easy List Building System By Muhammad Ali Contents Introduction... 3 Step 1: Find a Quality PLR Product... 4 Step 2: Create Your Squeeze Page... 6 Seven Rules to Follow... 6 Step 3: Set Up Your Download

More information

Attached is a copy of Underwriters Laboratories UL , Standard for Safety Factory-Made Air Ducts and Air Connectors.

Attached is a copy of Underwriters Laboratories UL , Standard for Safety Factory-Made Air Ducts and Air Connectors. From: McGirt, Eugene A Eugene.A.McGirt@hud.gov Subject: RE: FOIA Request Date: June 15, 2015 at 6:26 AM To: Carl Malamud carl@media.org Carl, Attached is a copy of Underwriters Laboratories UL 181 2003,

More information

Alfresco Voice Writing for the user interface

Alfresco Voice Writing for the user interface Alfresco Voice Writing for the user interface One day I will find the right words, and they will be simple. Jack Kerouac Contents Writing Tone - how to write Language - what to write Capitalization Abbreviations

More information

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10)

Title: Episode 11 - Walking through the Rapid Business Warehouse at TOMS Shoes (Duration: 18:10) SAP HANA EFFECT Title: Episode 11 - Walking through the Rapid Business Warehouse at (Duration: 18:10) Publish Date: April 6, 2015 Description: Rita Lefler walks us through how has revolutionized their

More information

Setting up a ColdFusion Workstation

Setting up a ColdFusion Workstation Setting up a ColdFusion Workstation Draft Version Mark Mathis 2000 all rights reserved mark@teratech.com 2 Setting up a ColdFusion workstation Table of Contents Browsers:...5 Internet Explorer:...5 Web

More information

Heuristic Evaluation of igetyou

Heuristic Evaluation of igetyou Heuristic Evaluation of igetyou 1. Problem i get you is a social platform for people to share their own, or read and respond to others stories, with the goal of creating more understanding about living

More information

Apple iphone Battery Life Tweak

Apple iphone Battery Life Tweak Well, if you re reading this document you may be wondering why you battery may not last all that long with the iphone. Before getting into this document I need to highlight that this is not the ultimate

More information

Win-Back Campaign- Re-Engagement Series

Win-Back Campaign- Re-Engagement Series Win-Back Campaign- Re-Engagement Series At this point the re-engagement campaign has ended, so if the prospect still hasn t responded it s time to turn up the heat. NOTE: In the emails below, everywhere

More information

How to Read AWStats. Why it s important to know your stats

How to Read AWStats. Why it s important to know your stats How to Read AWStats Welcome to the world of owning a website. One of the things that both newbie and even old time website owners get overwhelmed by is their analytics and understanding the data. One of

More information

Puppet Labs Modules - Feature #11050 firewall: RFE that ensure could support ignore.

Puppet Labs Modules - Feature #11050 firewall: RFE that ensure could support ignore. Puppet Labs Modules - Feature #11050 firewall: RFE that ensure could support ignore. 11/28/2011 05:16 am - Steve Traylen Status: Closed Start date: 11/28/2011 Priority: Normal Due date: Assignee: % Done:

More information

» How do I Integrate Excel information and objects in Word documents? How Do I... Page 2 of 10 How do I Integrate Excel information and objects in Word documents? Date: July 16th, 2007 Blogger: Scott Lowe

More information

UKNova s Getting Connectable Guide

UKNova s Getting Connectable Guide UKNova s Getting Connectable Guide Version 1.2 2010/03/22 1. WHAT IS "BEING CONNECTABLE" AND WHY DO I NEED IT? Being connectable means being able to give back to others it is the fundamental principle

More information

Background. Let s see what we prescribed.

Background. Let s see what we prescribed. Background Patient B s custom application had slowed down as their data grew. They d tried several different relief efforts over time, but performance issues kept popping up especially deadlocks. They

More information

Lesson Share TEACHER'S NOTES LESSON SHARE. ing by Olya Sergeeva. Overview. Preparation. Procedure

Lesson Share TEACHER'S NOTES LESSON SHARE.  ing by Olya Sergeeva. Overview. Preparation. Procedure Lesson Share TEACHER'S NOTES Age: Adults Level: Intermediate + Time: 1 hour 40 minutes Objective: to practise writing work-related emails Key skills: writing Materials: one copy of the worksheet per student;

More information

Imagery International website manual

Imagery International website manual Imagery International website manual Prepared for: Imagery International Prepared by: Jenn de la Fuente Rosebud Designs http://www.jrosebud.com/designs designs@jrosebud.com 916.538.2133 A brief introduction

More information

_APP A_541_10/31/06. Appendix A. Backing Up Your Project Files

_APP A_541_10/31/06. Appendix A. Backing Up Your Project Files 1-59863-307-4_APP A_541_10/31/06 Appendix A Backing Up Your Project Files At the end of every recording session, I back up my project files. It doesn t matter whether I m running late or whether I m so

More information

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration

Who am I? I m a python developer who has been working on OpenStack since I currently work for Aptira, who do OpenStack, SDN, and orchestration Who am I? I m a python developer who has been working on OpenStack since 2011. I currently work for Aptira, who do OpenStack, SDN, and orchestration consulting. I m here today to help you learn from my

More information

Arrays/Branching Statements Tutorial:

Arrays/Branching Statements Tutorial: Arrays/Branching Statements Tutorial: In the last tutorial, you created a button that, when you clicked on it (the onclick event), changed another image on the page. What if you have a series of pictures

More information

the NXT-G programming environment

the NXT-G programming environment 2 the NXT-G programming environment This chapter takes a close look at the NXT-G programming environment and presents a few simple programs. The NXT-G programming environment is fairly complex, with lots

More information

Chamberlin and Boyce - SEQUEL: A Structured English Query Language

Chamberlin and Boyce - SEQUEL: A Structured English Query Language Programming Languages (CS302 2007S) Chamberlin and Boyce - SEQUEL: A Structured English Query Language Comments on: Chamberlin, D. D. and Boyce, R. F. (1974). SEQUEL: A Structured English Query Language.

More information

Chapter01.fm Page 1 Monday, August 23, :52 PM. Part I of Change. The Mechanics. of Change

Chapter01.fm Page 1 Monday, August 23, :52 PM. Part I of Change. The Mechanics. of Change Chapter01.fm Page 1 Monday, August 23, 2004 1:52 PM Part I The Mechanics of Change The Mechanics of Change Chapter01.fm Page 2 Monday, August 23, 2004 1:52 PM Chapter01.fm Page 3 Monday, August 23, 2004

More information

Dealer Reviews Best Practice Guide

Dealer Reviews Best Practice Guide Dealer Reviews Best Practice Guide What do I do if I get a negative review? Well, the first thing is, don t panic. Negative reviews aren t the end of the world, they actually help build trust and credibility

More information

Samples of Features and Feature Stories CSc 190

Samples of Features and Feature Stories CSc 190 Samples of Features and Feature Stories CSc 190 The following un-prioritized Product Backlog contains the user stories for the thirteen Features that were written to describe the initial functionality

More information

Sucuri Webinar Q&A HOW TO IDENTIFY AND FIX A HACKED WORDPRESS WEBSITE. Ben Martin - Remediation Team Lead

Sucuri Webinar Q&A HOW TO IDENTIFY AND FIX A HACKED WORDPRESS WEBSITE. Ben Martin - Remediation Team Lead Sucuri Webinar Q&A HOW TO IDENTIFY AND FIX A HACKED WORDPRESS WEBSITE. Ben Martin - Remediation Team Lead 1 Question #1: What is the benefit to spammers for using someone elses UA code and is there a way

More information

Manually Sync Itouch Touch Itunes Wont Let Me Update My Music To My

Manually Sync Itouch Touch Itunes Wont Let Me Update My Music To My Manually Sync Itouch Touch Itunes Wont Let Me Update My Music To My i was lost my music library when my ipod was connected to wifi. can anyone tell me the shuffle option doesn't work with the 8.4 software

More information

Monitoring Tool Made to Measure for SharePoint Admins. By Stacy Simpkins

Monitoring Tool Made to Measure for SharePoint Admins. By Stacy Simpkins Monitoring Tool Made to Measure for SharePoint Admins By Stacy Simpkins Contents About the Author... 3 Introduction... 4 Who s it for and what all can it do?... 4 SysKit Insights Features... 6 Drillable

More information

Rob Prouse

Rob Prouse Rob Prouse rob@prouse.org http://www.alteridem.net Fast and flexible Hierarchical, named logging categories Multiple logging levels Output to multiple logging targets Dynamic XML Configuration Thread Safe

More information

Part 1: Understanding Windows XP Basics

Part 1: Understanding Windows XP Basics 542362 Ch01.qxd 9/18/03 9:54 PM Page 1 Part 1: Understanding Windows XP Basics 1: Starting Up and Logging In 2: Logging Off and Shutting Down 3: Activating Windows 4: Enabling Fast Switching between Users

More information

Asking for information (with three complex questions, so four main paragraphs)

Asking for information (with three complex questions, so four main paragraphs) Structures of different kinds of emails Write typical paragraph plans for the kinds of emails, describing the paragraphs in the body and what kinds of opening lines and closing lines you need. Asking for

More information

How To Upload Your Newsletter

How To Upload Your Newsletter How To Upload Your Newsletter Using The WS_FTP Client Copyright 2005, DPW Enterprises All Rights Reserved Welcome, Hi, my name is Donna Warren. I m a certified Webmaster and have been teaching web design

More information

IPv6 Neighbor Discovery (ND) Problems with Layer-2 Multicast State

IPv6 Neighbor Discovery (ND) Problems with Layer-2 Multicast State DRAFT IPv6 Neighbor Discovery (ND) Problems with Layer-2 Multicast State Jeff Wheeler jsw@inconcepts.biz The Problem MLD-snooping is much like IGMP-snooping but for IPv6 It keeps unnecessary multicast

More information

Introduction to Programming Style

Introduction to Programming Style Introduction to Programming Style Thaddeus Aid The IT Learning Programme The University of Oxford, UK 30 July, 2013 Abstract Programming style is the part of the program that the human reads and the compiler

More information

OpenEmbedded in the Real World

OpenEmbedded in the Real World OpenEmbedded in the Real World Scott Murray Senior Staff Software Engineer Konsulko Group http://konsulko.com Who am I? Long time Linux user (over 20 years) Have done Linux software development for over

More information

9 R1 Get another piece of paper. We re going to have fun keeping track of (inaudible). Um How much time do you have? Are you getting tired?

9 R1 Get another piece of paper. We re going to have fun keeping track of (inaudible). Um How much time do you have? Are you getting tired? Page: 1 of 14 1 R1 And this is tell me what this is? 2 Stephanie x times y plus x times y or hm? 3 R1 What are you thinking? 4 Stephanie I don t know. 5 R1 Tell me what you re thinking. 6 Stephanie Well.

More information

5 R1 The one green in the same place so either of these could be green.

5 R1 The one green in the same place so either of these could be green. Page: 1 of 20 1 R1 Now. Maybe what we should do is write out the cases that work. We wrote out one of them really very clearly here. [R1 takes out some papers.] Right? You did the one here um where you

More information

UPDATING YOUR SCS.1 FIRMWARE

UPDATING YOUR SCS.1 FIRMWARE UPDATING YOUR SCS.1 FIRMWARE You can think of firmware as the software that runs on a device, telling it how to operate. Having updated firmware is important, because developers often update it to address

More information

Are you using Ruby on Rails?

Are you using Ruby on Rails? Are you using Ruby on Rails? Should you? Come have a seat, and we ll figure it out Learn how to create happy programmers, and 10 real world benefits to using Rails Talk begins at 5 PM Warning Warning I

More information

EDULEADERSHIP. Handle Every Kind of for Maximum Productivity HOW TO: JUSTIN BAEDER ON HIGH-PERFORMANCE INSTRUCTIONAL LEADERSHIP

EDULEADERSHIP. Handle Every Kind of  for Maximum Productivity HOW TO: JUSTIN BAEDER ON HIGH-PERFORMANCE INSTRUCTIONAL LEADERSHIP EDULEADERSHIP JUSTIN BAEDER ON HIGH-PERFORMANCE INSTRUCTIONAL LEADERSHIP HOW TO: Handle Every Kind of Email for Maximum Productivity Email can be a great tool for school leaders, yet it can also be a terrible

More information

Beginners Guide to. Sencha Touch. Joshua Morony

Beginners Guide to. Sencha Touch. Joshua Morony Beginners Guide to Sencha Touch Joshua Morony Contents Contents 1 Preface.......................... 4 1 Why Sencha Touch? 8 2 Know Your Options 21 3 How Sencha Touch Actually Works 22 4 Setting up Your

More information

Stop Error Code 50 Mac Empty Trash

Stop Error Code 50 Mac Empty Trash Stop Error Code 50 Mac Empty Trash An unexpected error occurred (error code -50) when I try to create a new a jpeg in the trash. i tried to delete it but it states an error message that the jpeg is My

More information

CYBER SECURITY FOR BUSINESS COUNTING THE COSTS, FINDING THE VALUE

CYBER SECURITY FOR BUSINESS COUNTING THE COSTS, FINDING THE VALUE CYBER SECURITY FOR BUSINESS COUNTING THE COSTS, FINDING THE VALUE Business has always looked to squeeze the maximum possible benefit out of IT resources at the lowest possible cost but measuring return

More information

LeakDAS Version 4 The Complete Guide

LeakDAS Version 4 The Complete Guide LeakDAS Version 4 The Complete Guide SECTION 4 LEAKDAS MOBILE Second Edition - 2014 Copyright InspectionLogic 2 Table of Contents CONNECTING LEAKDAS MOBILE TO AN ANALYZER VIA BLUETOOTH... 3 Bluetooth Devices...

More information

VISIO DATABASE DIAGRAM SQL SERVER

VISIO DATABASE DIAGRAM SQL SERVER 23 April, 2018 VISIO DATABASE DIAGRAM SQL SERVER Document Filetype: PDF 449.84 KB 0 VISIO DATABASE DIAGRAM SQL SERVER Hi, Visio still has various database diagramming options and these can be bound to

More information

Installing Ubuntu Server

Installing Ubuntu Server CHAPTER 1 Installing Ubuntu Server You probably chose Ubuntu as a server solution because of either your gratifying experience using it on the desktop or the raves you ve heard from others about its user-friendly

More information

If Statements, For Loops, Functions

If Statements, For Loops, Functions Fundamentals of Programming If Statements, For Loops, Functions Table of Contents Hello World Types of Variables Integers and Floats String Boolean Relational Operators Lists Conditionals If and Else Statements

More information

Basics of Adobe Premiere

Basics of Adobe Premiere Basics of Adobe Premiere Getting started: The first thing you ll see when you open Adobe Premiere is a window asking to open a project or start a new one. Let s start a new one. (Images from CS6 version,

More information

Heuristic Evaluation of Mango

Heuristic Evaluation of Mango Heuristic Evaluation of Mango 1. Problem Mango is an application that makes it easier to plan group travel and collaborate on group itineraries by providing an interface to invite friends to a group trip,

More information

Enable Spark SQL on NoSQL Hbase tables with HSpark IBM Code Tech Talk. February 13, 2018

Enable Spark SQL on NoSQL Hbase tables with HSpark IBM Code Tech Talk. February 13, 2018 Enable Spark SQL on NoSQL Hbase tables with HSpark IBM Code Tech Talk February 13, 2018 https://developer.ibm.com/code/techtalks/enable-spark-sql-onnosql-hbase-tables-with-hspark-2/ >> MARC-ARTHUR PIERRE

More information

Mechanical Turk and AWS Workshop

Mechanical Turk and AWS Workshop Mechanical Turk and AWS Workshop William Kyle Hamilton School of Social Sciences, Humanities, and Arts University of California, Merced 12/5/2013 1 Outline for Today What is MTurk? and How much should

More information

In today s video I'm going show you how you can set up your own online business using marketing and affiliate marketing.

In today s video I'm going show you how you can set up your own online business using  marketing and affiliate marketing. Hey guys, Diggy here with a summary of part two of the four part free video series. If you haven't watched the first video yet, please do so (https://sixfigureinc.com/intro), before continuing with this

More information

EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP

EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP EPISODE 23: HOW TO GET STARTED WITH MAILCHIMP! 1 of! 26 HOW TO GET STARTED WITH MAILCHIMP Want to play a fun game? Every time you hear the phrase email list take a drink. You ll be passed out in no time.

More information

Clean & Speed Up Windows with AWO

Clean & Speed Up Windows with AWO Clean & Speed Up Windows with AWO C 400 / 1 Manage Windows with this Powerful Collection of System Tools Every version of Windows comes with at least a few programs for managing different aspects of your

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

COSC 2P95. Introduction. Week 1. Brock University. Brock University (Week 1) Introduction 1 / 18

COSC 2P95. Introduction. Week 1. Brock University. Brock University (Week 1) Introduction 1 / 18 COSC 2P95 Introduction Week 1 Brock University Brock University (Week 1) Introduction 1 / 18 Lectures and Labs Lectures are Thursdays, from 3pm 5pm (AS/STH 217) There are two lab sections Lab 1 is Mondays,

More information

08. DESIGN PRINCIPLES. Originality is Overrated PRINCIPLES OF SOFTWARE BIM209DESIGN AND DEVELOPMENT

08. DESIGN PRINCIPLES. Originality is Overrated PRINCIPLES OF SOFTWARE BIM209DESIGN AND DEVELOPMENT PRINCIPLES OF SOFTWARE BIM209DESIGN AND DEVELOPMENT 08. DESIGN PRINCIPLES Originality is Overrated it s not about doing it your way this week is all about doing it the smarter, faster way. Design principle

More information

Running SNAP. The SNAP Team October 2012

Running SNAP. The SNAP Team October 2012 Running SNAP The SNAP Team October 2012 1 Introduction SNAP is a tool that is intended to serve as the read aligner in a gene sequencing pipeline. Its theory of operation is described in Faster and More

More information

Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi.

Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi. Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi Lecture 18 Tries Today we are going to be talking about another data

More information

10 Strategies for Effective Marketing Campaigns

10 Strategies for Effective  Marketing Campaigns 10 Strategies for Effective Email Marketing Campaigns Most people do not send effective email messages. I know. I spend a lot of time analyzing email messages for our clients, and measuring and tracking

More information

Without further ado, let s go over and have a look at what I ve come up with.

Without further ado, let s go over and have a look at what I ve come up with. JIRA Integration Transcript VLL Hi, my name is Jonathan Wilson and I m the service management practitioner with NHS Digital based in the United Kingdom. NHS Digital is the provider of services to the National

More information

Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement

Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement 60 Minutes of Outlook Secrets Term Definition Introduced in: This option, located within the View tab, provides a variety of options to choose when sorting and grouping Arrangement messages. Module 2 Assign

More information

Intro to Couchbase Server for ColdFusion - Clustered NoSQL and Caching at its Finest

Intro to Couchbase Server for ColdFusion - Clustered NoSQL and Caching at its Finest Tweet Intro to Couchbase Server for ColdFusion - Clustered NoSQL and Caching at its Finest Brad Wood Jul 26, 2013 Today we are starting a new blogging series on how to leverage Couchbase NoSQL from ColdFusion

More information

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are:

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are: Validating for Missing Maps Using JOSM This document covers processes for checking data quality in OpenStreetMap, particularly in the context of Humanitarian OpenStreetMap Team and Red Cross Missing Maps

More information

COMP390 (Design &) Implementation

COMP390 (Design &) Implementation COMP390 (Design &) Implementation Phil (& Dave s) rough guide Consisting of some ideas to assist the development of large and small projects in Computer Science (and a chance for me to try out some features

More information

Read & Download (PDF Kindle) Microsoft SQL Server 2008 Administrator's Pocket Consultant

Read & Download (PDF Kindle) Microsoft SQL Server 2008 Administrator's Pocket Consultant Read & Download (PDF Kindle) Microsoft SQL Server 2008 Administrator's Pocket Consultant From the author and series editor of the immensely popular ADMINISTRATOR'S POCKET CONSULTANT series from Microsoft

More information

Actian Hybrid Data Conference 2017 London Actian Corporation

Actian Hybrid Data Conference 2017 London Actian Corporation Actian Hybrid Data Conference 2017 London 1 2017 Actian Corporation Disclaimer This document is for informational purposes only and is subject to change at any time without notice. The information in this

More information

Free Downloads Microsoft Access Developer's Guide To SQL Server

Free Downloads Microsoft Access Developer's Guide To SQL Server Free Downloads Microsoft Access Developer's Guide To SQL Server Microsoft Access 2000 Developer's Guide to Microsoft SQL Server provides much needed information and guidance for the Access power user or

More information

GETTING TO KNOW THE WEBINAR

GETTING TO KNOW THE WEBINAR WHAT IS A WEBINAR? GETTING TO KNOW THE WEBINAR When you hear the word webinar, what comes to mind? If you re picturing a clunky-looking online slideshow with a speaker calling in on a static-filled phone

More information

FILED: NEW YORK COUNTY CLERK 07/31/ :17 AM INDEX NO /2018 NYSCEF DOC. NO. 53 RECEIVED NYSCEF: 07/31/2018

FILED: NEW YORK COUNTY CLERK 07/31/ :17 AM INDEX NO /2018 NYSCEF DOC. NO. 53 RECEIVED NYSCEF: 07/31/2018 SUPREME COURT OF THE STATE OF NEW YORK New York County LOUIS J DESY JR Plaintiff, - against- Index No.: 651541/2018 Filed: 03/30/2018 KEN WHITMAN AKA KEN WHITMAN JR AKA WHIT WHITMAN AKA d20 Entertainment

More information

Topic: It s A Tab, Tab, Tab, Tab World

Topic: It s A Tab, Tab, Tab, Tab World Saving Time in InDesign. In this tutorial we ll be going over how spending a little extra time can save a WHOLE lot of time in the long run. So we ll start by grabbing some text to use. In this case I

More information

Exam Ref Programming In HTML5 With JavaScript And CSS3 (MCSD): Programming In HTML5 With JavaScript And CSS3 Free Ebooks PDF

Exam Ref Programming In HTML5 With JavaScript And CSS3 (MCSD): Programming In HTML5 With JavaScript And CSS3 Free Ebooks PDF Exam Ref 70-480 Programming In HTML5 With JavaScript And CSS3 (MCSD): Programming In HTML5 With JavaScript And CSS3 Free Ebooks PDF Prepare for Microsoft Exam 70-480â and help demonstrate your real-world

More information

The Benefits of SMS as a Marketing and Communications Channel From The Chat Bubble written by Michael

The Benefits of SMS as a Marketing and Communications Channel From The Chat Bubble written by Michael The Benefits of SMS as a Marketing and Communications Channel 1 Why companies and organizations should do SMS. We re going to talk through from an organization or marketers point of view, what SMS is good

More information

Lecture 1: Overview

Lecture 1: Overview 15-150 Lecture 1: Overview Lecture by Stefan Muller May 21, 2018 Welcome to 15-150! Today s lecture was an overview that showed the highlights of everything you re learning this semester, which also meant

More information

CS354 gdb Tutorial Written by Chris Feilbach

CS354 gdb Tutorial Written by Chris Feilbach CS354 gdb Tutorial Written by Chris Feilbach Purpose This tutorial aims to show you the basics of using gdb to debug C programs. gdb is the GNU debugger, and is provided on systems that

More information

15 Minute Traffic Formula. Contents HOW TO GET MORE TRAFFIC IN 15 MINUTES WITH SEO... 3

15 Minute Traffic Formula. Contents HOW TO GET MORE TRAFFIC IN 15 MINUTES WITH SEO... 3 Contents HOW TO GET MORE TRAFFIC IN 15 MINUTES WITH SEO... 3 HOW TO TURN YOUR OLD, RUSTY BLOG POSTS INTO A PASSIVE TRAFFIC SYSTEM... 4 HOW I USED THE GOOGLE KEYWORD PLANNER TO GET 11,908 NEW READERS TO

More information

BIND-USERS and Other Debugging Experiences. Mark Andrews Internet Systems Consortium

BIND-USERS and Other Debugging Experiences. Mark Andrews Internet Systems Consortium BIND-USERS and Other Debugging Experiences Mark Andrews Internet Systems Consortium Mark_Andrews@isc.org http://isc.org BIND-USERS and Other Debugging Experiences We will look at some typical debugging

More information

2

2 1 2 3 4 5 All resources: how fast, how many? If all the CPUs are pegged, that s as fast as you can go. CPUs have followed Moore s law, the rest of the system hasn t. Not everything can be made threaded,

More information

Close Your File Template

Close Your File Template In every sale there is always a scenario where I can t get someone to respond. No matter what I do. I can t get an answer from them. When people stop responding I use the Permission To. This is one of

More information

Project Collaboration

Project Collaboration Bonus Chapter 8 Project Collaboration It s quite ironic that the last bonus chapter of this book contains information that many of you will need to get your first Autodesk Revit Architecture project off

More information

What are we going to talk about today?

What are we going to talk about today? For those of you who haven t worked with me over the past 6 years, I m Bryan Senter. I ve been in Wiesbaden in a different role for 5 years. I followed the crowd from Heidelberg before that. EPMSaaS stands

More information

MongoDB - a No SQL Database What you need to know as an Oracle DBA

MongoDB - a No SQL Database What you need to know as an Oracle DBA MongoDB - a No SQL Database What you need to know as an Oracle DBA David Burnham Aims of this Presentation To introduce NoSQL database technology specifically using MongoDB as an example To enable the

More information

CS125 : Introduction to Computer Science. Lecture Notes #11 Procedural Composition and Abstraction. c 2005, 2004 Jason Zych

CS125 : Introduction to Computer Science. Lecture Notes #11 Procedural Composition and Abstraction. c 2005, 2004 Jason Zych CS125 : Introduction to Computer Science Lecture Notes #11 Procedural Composition and Abstraction c 2005, 2004 Jason Zych 1 Lecture 11 : Procedural Composition and Abstraction Solving a problem...with

More information

National Weather Service Weather Forecast Office Norman, OK Website Redesign Proposal Report 12/14/2015

National Weather Service Weather Forecast Office Norman, OK Website Redesign Proposal Report 12/14/2015 National Weather Service Weather Forecast Office Norman, OK Website Redesign Proposal Report 12/14/2015 Lindsay Boerman, Brian Creekmore, Myleigh Neill TABLE OF CONTENTS Parts PAGE Abstract... 3 Introduction...

More information

High Performance: What These Apps Did May Shock You

High Performance: What These Apps Did May Shock You High Performance: What These Apps Did May Shock You Doug Sillars ARO Technical Lead Tiffany Kinkade ARO Developer Advocate Doug Sillars ARO Technical Lead @Dougsillars Tiffany Kinkade ARO Developer Advocate

More information

Can you decipher the code? If you can, maybe you can break it. Jay Iyengar, Data Systems Consultants LLC, Oak Brook, IL

Can you decipher the code? If you can, maybe you can break it. Jay Iyengar, Data Systems Consultants LLC, Oak Brook, IL Paper 11667-2016 Can you decipher the code? If you can, maybe you can break it. Jay Iyengar, Data Systems Consultants LLC, Oak Brook, IL ABSTRACT You would think that training as a code breaker, similar

More information

It s possible to get your inbox to zero and keep it there, even if you get hundreds of s a day.

It s possible to get your  inbox to zero and keep it there, even if you get hundreds of  s a day. It s possible to get your email inbox to zero and keep it there, even if you get hundreds of emails a day. It s not super complicated, though it does take effort and discipline. Many people simply need

More information

New Website The Essential Guide

New Website The Essential Guide johamlyn.com Web Design Web Development SEO hello@johamlyn.com New Website The Essential Guide I believe that all websites should be built on a solid foundation that can grow alongside your brand or business

More information

Running SNAP. The SNAP Team February 2012

Running SNAP. The SNAP Team February 2012 Running SNAP The SNAP Team February 2012 1 Introduction SNAP is a tool that is intended to serve as the read aligner in a gene sequencing pipeline. Its theory of operation is described in Faster and More

More information

Programming assignment A

Programming assignment A Programming assignment A ASCII Minesweeper Official release on Feb 14 th at 1pm (Document may change before then without notice) Due 5pm Feb 25 th Minesweeper is computer game that was first written in

More information

5 REASONS YOUR BUSINESS NEEDS NETWORK MONITORING

5 REASONS YOUR BUSINESS NEEDS NETWORK MONITORING 5 REASONS YOUR BUSINESS NEEDS NETWORK MONITORING www.intivix.com (415) 543 1033 NETWORK MONITORING WILL ENSURE YOUR NETWORK IS OPERATING AT FULL CAPACITY 5 Reasons Your Business Needs Network Monitoring

More information

Module 6. Campaign Layering

Module 6.  Campaign Layering Module 6 Email Campaign Layering Slide 1 Hello everyone, it is Andy Mackow and in today s training, I am going to teach you a deeper level of writing your email campaign. I and I am calling this Email

More information

SAMPLE CHAPTER SECOND EDITION. Don Jones Jeffery Hicks Richard Siddaway MANNING

SAMPLE CHAPTER SECOND EDITION. Don Jones Jeffery Hicks Richard Siddaway MANNING SAMPLE CHAPTER SECOND EDITION Don Jones Jeffery Hicks Richard Siddaway MANNING PowerShell in Depth by Don Jones Jeffery Hicks Richard Siddaway Chapter 1 Copyright 2015 Manning Publications brief contents

More information

Intro to Flex Debugging and Profiling

Intro to Flex Debugging and Profiling Intro to Flex Debugging and Profiling Jun Heider RealEyes Media 1 About B. C. D. Sr. Developer / Technical Trainer at RealEyes Media, LLC Flex (2-4) and AIR (0.x, 1.x) Developer from the ColdFusion (4-7)

More information