Complete Novice (my personal challenge)

Hi,
I am looking to fastrack myself to learn the basics of Oracle to enable me to do a small test Project. The parameters are to give myself 2 weeks to find some free hosted Oracle Area (for thr Project) then somehow create an ERD that can be mapped in to Oracle. the resultant Project then able to web access and show some SIMPLE Vehicle infos based on input parameters. I am giving myself 2 weeks to achieve this from a cold start.
Ideas on Software to Produce the ERD.
Ideas on Book for Fast Learing Oracle principals (enough for the Project)
Ideas on some generic available aspx/php wrappers etc.
APPRECIATE ALL INPUT
Any Idiots books?... Keep it simple enough to digest and then do some implementation in next 2 weeks (evenings)
Thanks

Ideas on Software to Produce the ERD.1) CA ERwin
2) MS Visio
Ideas on Book for Fast Learing Oracle principals
Learn Oracle in 21 days...but if you've been in contact with any other SQL/RDBMS previously, the basic principles are almost the same. Read the Oracle SQL Reference and you'll be ready!
Oracle online....mmm think there is not place like that: get the software (Oracle XE), install on your PC and create a DB... you'll get a very easy wizard during the installation.
Regards

Similar Messages

  • I have a Windows 8.1 and it's even running slow.  I'm a complete novice with computers (I've only had this one for 3 weeks) and I'm probably doing something wrong, but I haven't a clue what....

    I have a Windows 8.1 and it's even running slow.  I'm a complete novice with computers (I've only had this one for 3 weeks) and I'm probably doing something wrong, but I haven't a clue what.
    The tools are not responding when I try to use them.  Some of them work sometimes, but not others and some don't work at all.  I'm in a design class online and I need these tools desperately.  I have an assignment due Monday and I'm losing the whole weekend because Tech Support is only open M-F!
    Any help anyone can give me will be appreciated.
    Thanks,
    Rose Ireland

    Maybe these links provide some pertinent information.
    Optimize performance | Photoshop CS4, CS5, CS6, CC
    Photoshop: Basic Troubleshooting steps to fix most issues

  • Hi all, complete novice to this so step by step answers much appreciated please. thank you. Ibooks app showing in my itunes apps but wont sync with my ipod touch - have tried deleting app in itunes then re-downloading but still wont sync, any ideas please

    hi all, complete novice to this so step by step answers much appreciated please. thank you. Ibooks app showing in my itunes apps but wont sync with my ipod touch - have tried deleting app in itunes then re-downloading but still wont sync, any ideas please?

    See if this helps
    iBooks: Viewing, syncing, saving, and printing PDFs on iPhone, iPad, and iPod touch

  • Complete novice! how do i install ms office on macbook pro - have disks and USB superdrive

    Hi, I'm a complete novice.  How do i install MS Office on MacBook Pro - have disks and USB Superdrive?

    Attach the drive via USB. Insert the disk into the drive. It'll show up on the desktop. Double click the disk icon and then run the installer.
    Matt

  • A complete novice HELP!

    I am a complete novice, any help would be appreciated. I have written this short programme to display two buttons in a window on screen
    import java.awt.*;
    import java.awt.event.*;
    public class ButtonExample extends WindowAdapter{
    private Frame mainFrame;
    private Panel topPanel;
    private Button buttonOne;
    private Button buttonTwo;
    // constructor
    public ButtonExample(){
    mainFrame = new Frame("Button Test Example" );
    topPanel = new Panel();
    buttonOne = new Button("I'm button one");
    buttonTwo = new Button("I'm button two");
    mainFrame.setSize( 300, 75 );
    mainFrame.addWindowListener(this);
    topPanel.setLayout( new FlowLayout() );
    topPanel.add(buttonOne);
    topPanel.add( buttonTwo);
    mainFrame.add( topPanel );
    mainFrame.setVisible(true);
    // close the frame when clicks the close button
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    // Main program started
    public static void main( String args[] ){
    new ButtonExample();
    I am trying to familiarise myself with subclasses and want to create a subclass of java.awt.Button to override the background and foreground colours and have come up with this
    import java.awt.*;
    import java.awt.event.*;
    public class ColorButton extends Button{
    public ColorButton(){
    super();
    setBackground (Color.red);
    setForeground (Color.yellow);
    is this correct? If so how do i call this from within the main ButtonExample programme? As a complete novice i am just not sure how to do this, please help!

    Assuming that your main program works (I've not really looked at it), then, through the magic of inheritance, all you need to do to use your new and improved buttons is to change these lines:
    private Button buttonOne;
    private Button buttonTwo;
    buttonOne = new Button("I'm button one");
    buttonTwo = new Button("I'm button two");To read
    private ColorButton buttonOne;
    private ColorButton buttonTwo;
    buttonOne = new ColorButton("I'm button one");
    buttonTwo = new ColorButton("I'm button two");And all should be well
    Good luck
    Lee

  • Am a complete novice, have downloaded Mackeeper to do a speediest.  I need to uninstall but don't know whether it has encrypted any files.

    I am a complete novice, and I have downloaded MacKeeper.   I need to uninstall it.   I have only checked my Mac speed on it and have done nothing else.   Is there a complete idiots guide.   I don't know if any files have been encrypted on it.

    Do not run MacKeeper again!  It's tantamount to maleware and does more harm than good.
    See this User Tip for more info and links to how to remove it: Do not install MacKeeper
    OT

  • I am a complete novice at this.  My Abobe Muse website file content has been transferred to my own account, how do I access

    Hi,
    I am a complete novice at this.  My Adobe Muse website file content has been transferred to my own account.  How do I access & edit my website????  I am using a HP Truevision laptop with Windows 7 OS

    Hello Sanjit,
    Thank you for your reply.  My developer seems to be averting the issue for reasons I do not know?   My Web Hosting Company assures me that my website www.traceyarmstrongart.com <http://www.traceyarmstrongart.com>  is pointing to my server, however, my developer assures me that it is pointing to his server??? 
    Kind Regards,
    Tracey Armstrong
    Artist
    Cell:  072-524-0058
    Email:   <mailto:[email protected]> [email protected]
    Website:   <http://www.traceyarmstrongart.com> www.traceyarmstrongart.com

  • A complete novice- still need help please!

    I am a complete novice, any help would be appreciated. I have written this short programme to display two buttons in a window on screen and with a little help from Lee i have incorporated the ColorButton subclass (see below for code).
    import java.awt.*;
    import java.awt.event.*;
    public class ButtonExample extends WindowAdapter{
    private Frame mainFrame;
    private Panel topPanel;
    private ColorButton buttonOne;
    private ColorButton buttonTwo;
    // constructor
    public ButtonExample(){
    mainFrame = new Frame("Button Test Example" );
    topPanel = new Panel();
    buttonOne = new ColorButton("I'm button one");
    buttonTwo = new ColorButton("I'm button two");
    mainFrame.setSize( 300, 75 );
    mainFrame.addWindowListener(this);
    topPanel.setLayout( new FlowLayout() );
    topPanel.add(buttonOne);
    topPanel.add( buttonTwo);
    mainFrame.add( topPanel );
    mainFrame.setVisible(true);
    // close the frame when clicks the close button
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    // Main program started
    public static void main( String args[] ){
    new ButtonExample();
    I am trying to familiarise myself with subclasses and want to create a subclass of java.awt.Button to override the background and foreground colours and have come up with this
    import java.awt.*;
    import java.awt.event.*;
    public class ColorButton extends Button{
    public ColorButton(){
    super();
    setBackground (Color.red);
    setForeground (Color.yellow);
    On modifying the main programme to incorporate ColorButton it will not change the background color, only the Button color and will not display text in the buttons themselves, any suggestions would be appreciated

    If you use the constructor:
    buttonOne = new ColorButton("I'm button one");you have to write it:
    class ColorButton extends Button {
       public ColorButton(String text) {
          super(text);
    }

  • My MAC is running very slow and i am a complete novice and don't know what to do. i have had my Mac since 2008 and its probably in a mess. if you can help i would be grateful. EtreCheck version: 1.9.15 (52) Report generated 8 September 2014 09:09:26

    My MAC runs very slow. Rainbow wheel every time i try to go somewhere. Im a complete MAC novice. Only really use it for iTunes and email. the odd document here and there. The odd spreadsheet. Was brought up on a PC. I would imagine my system is in  mess. I think i downloaded that Mackeeper which i have just discovered was not a good idea. I found a thread about EtreCheck and it suggested i posted the report of my machine which i have done.I only have 2GB of space. Not sure how much i have left. My wife keeps putting photos on here like they are going out of fashion. Bought the machine in 2008 because everybody said you have a MAC. I've never really got to grips with it but at least it worked. Now it does not run very well at all. That spinning wheel is driving me mad. HELP please, never ever used a forum light this either so please go gentle on me. Cheers Paul
    EtreCheck version: 1.9.15 (52)
    Report generated 8 September 2014 09:09:26 BST
    Hardware Information: ?
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      2 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:31:45
    Disk Information: ?
      Hitachi HDP725032GLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (117.84 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Bose Corporation Bose USB Audio
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Mac App Store and identified developers
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
      [loaded] net.sourceforge.MonolingualHelper.plist Support
    Launch Agents: ?
      [running] com.trusteer.rapport.rapportd.plist Support
    User Login Items: ?
      iTunesHelper
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 5.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      eMusicRemote: Version: (null) Support
      eMusic: Version: Unknown
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          2% iTunes
          2% WindowServer
          0% coreaudiod
          0% fontd
          0% rapportd
    Top Processes by Memory: ?
      178 MB Finder
      133 MB com.apple.WebKit.WebContent
      109 MB iTunes
      92 MB Safari
      63 MB com.apple.quicklook.satellite
    Virtual Memory Information: ?
      24 MB Free RAM
      821 MB Active RAM
      807 MB Inactive RAM
      291 MB Wired RAM
      338 MB Page-ins
      680 KB Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Complete novice needs help

    Hi folks
    I hope you can indulge me. I am a mature student studying with the Open University in the UK. In order to complete my degree I have to produce a (small) project (doesn't have to have full functionality) based on a Network application. I am limited to using Java and to some extent the software provided for me, which in this case is JBuilder3.5 (yes I know it's old!). I can, within reason download further software providing my tutor is ok with it but here's the rub I have no idea what I actually need. There is so much to read through and I am feeling a bit thick because I cannot pin anything down.
    This is where I would appreciate any help from you experts. My project subject is a browser which can interpret web pages and then configure them to be displayed in a fromat that is prefered by the user not the author. I can build the GUI but I am stuck when it comes to building the functionality behind it. ie what packages do I need to download that can recognise XML/HTML tags in order to rearrange the display? Am I even on the right track? Is it actaully possible?
    Because the project is only worked over a small period I don't need full functionality but have elected to deal with input/output fields, text placemnt/display/font (infromationl), graphic placement/deletion. I may also be alowed to update my version of Jbuilder.
    I would be so grateful if somebody could at least point me in the right direction. I need to add here that I feel so stupid that I need replies in very plain english :o)
    Wanda

    Hi ddossot
    Saw your note about using a proper IDE unfortunately I am obliged to use the one provided by my UNI. Reason being the markers of my project may not be up to date with other IDE's. Though I may be allowed to use a newer version of JBuilder. I am waiting to hear if I have permission to do so.
    Here's another thick question. from what I remember, when studying Java last year, it has a number of libraries that can be imported to a project. When I download the HTML and XML stuff are they just added to the libraries already in place and if so how is it done.
    ps hope they also have tutorials with them for the coding :o(
    One last question; am I in the right forum for this sort of query or is there a novice one for thicko's like me? :o)
    Wanda

  • Complete novice needs answer to AWE64 qu

    hello
    i've just bought an old 90's programme of KOAN generati've music on a floppy. the programme plays the soundcard like a synthesiser but it was designed to be played with specific soundcards, namely Creative Labs AWE64 / AWE32 / SB32, or else it will sound completely wrong.
    because these soundcards are obsolete, can anyone tell me what soundcard i should get (for a laptop pc) that will reproduce the sound exactly the same as the above soundcards?
    sorry if this sounds like i haven't got a clue but the truth is, er, i haven't!
    cheers
    sweetfeed

    Hi ddossot
    Saw your note about using a proper IDE unfortunately I am obliged to use the one provided by my UNI. Reason being the markers of my project may not be up to date with other IDE's. Though I may be allowed to use a newer version of JBuilder. I am waiting to hear if I have permission to do so.
    Here's another thick question. from what I remember, when studying Java last year, it has a number of libraries that can be imported to a project. When I download the HTML and XML stuff are they just added to the libraries already in place and if so how is it done.
    ps hope they also have tutorials with them for the coding :o(
    One last question; am I in the right forum for this sort of query or is there a novice one for thicko's like me? :o)
    Wanda

  • Complete Novice - Pease Help Re iplayer!

    Hello everyone :-)
    I used to be able to watch 4oD and the iplayer online but two days ago when I tried to play a programme it started jumping every 3 seconds and sometimes just not working at all. My inetenet is a bit slower than normal but I can still use it. I am completely clueless about this kind of thing and I have been looking through the BT site to try and find out how to resolve this. Could anyone please offer me any advice?
    Many thanks,
    Jenny :-)

    ADSL line status
    Connection information
    Line state
    Connected
    Connection time
    0 days, 1:40:11
    Downstream
    3,424 Kbps
    Upstream
    448 Kbps
    ADSL settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Interleaved
    Noise margin (Down/Up)
    15.3 dB / 20.0 dB
    Line attenuation (Down/Up)
    44.0 dB / 24.5 dB
    Output power (Down/Up)
    19.0 dBm / 12.1 dBm
    Loss of Framing (Local)
    971
    Loss of Signal (Local)
    1067
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    1164 / 3
    CRC Errors (Down/Up)
    2 / 2147480000
    HEC Errors (Down/Up)
    nil / 3
    Error Seconds (Local)
    1021

  • Complete novice needs advice

    Hi, Im a guitarist (bit of an old rocker at heart) and would love to get started with GB ie; recording my guitar and voice etc. I have a Imac Power PC (2005) with GB2. Could anyone recommend a decent book to buy in order to get started. I am in my 50's and to be honest find the programme fascinating but extremely daunting! Is it worth buying ilife08 in order to upgrade?
    Thanks.

    Hi ddossot
    Saw your note about using a proper IDE unfortunately I am obliged to use the one provided by my UNI. Reason being the markers of my project may not be up to date with other IDE's. Though I may be allowed to use a newer version of JBuilder. I am waiting to hear if I have permission to do so.
    Here's another thick question. from what I remember, when studying Java last year, it has a number of libraries that can be imported to a project. When I download the HTML and XML stuff are they just added to the libraries already in place and if so how is it done.
    ps hope they also have tutorials with them for the coding :o(
    One last question; am I in the right forum for this sort of query or is there a novice one for thicko's like me? :o)
    Wanda

  • Complete Novice Needs Some Basic Help

    Hi!
    I'm sorry to clutter up the discussion with such basic questions, but what I want to do is get something from a cassette tape to my iPod. I'm told I can do this through GarageBand, and I have an audio cable that the guy in the Apple store said I would need. I'm not even sure where to plug this cable in. So any help in where I plug this in, or what I do next would be tremendously appreciated. If someone could even tell me where to look for help that would be great (when I look in GarageBand help its saying something about MIDIs and I don't even know what that is). Eternal gratitude for any help....

    Oh man, this is frustrating and I might give up soon!
    So in System Preferences, Sound I have 2 things,
    Internal Microphone (port is Built-in) and Line In
    (port is Audio line-in port). I can't seem to
    select one or the other, they're just there.
    Yeah, there is no "apply" or "OK" or anything like that. Just click on the Line-In so that it is highlighted and close the system preferences. That takes care of that. My PB G4 automatically detects when I plug in my line-in now that it is set up.
    Then in GB preferences, I only have the option of
    Built-in Audio, there is no other option.
    Built-In audio is correct in GB prefs.
    I also couldn't find where you were saying to
    double-click...what's the track header? I've clicked
    everything and can't find a monitor drop down menu
    option.
    The track header is the left-hand side of the track where there is a small speaker or instrument. For what you are doing, you need to create a new basic track. (Under "Track" in the menu bar, click "New Basic Track") You should have a new blue track that is labeled "No Effects." Double click on the speaker image and a dialog box will appear. Right in the middle of this box there are options for Input, Volume, and Monitor. You can turn on and off monitor abilities here.
    On the plus side, the connector I have seems to
    work...its male/male 1/8".
    Perfect.
    Thanks again and if you want to bail out, I
    completely understand!
    Hang in there. We were once all newbies to this digital recording stuff too.

  • Complete novice!!

    Ok today I bought an apple tv.
    My plan is to use it in conjunction with my ipad2 & computer.
    My problem is that I am a bit of a div and need some help with some really basic questions.
    1.  To view itunes on apple tv, does your computer always need to be on with itunes?
    2. I have downloaded films onto my ipad, they do not show in the computer drop down, but I can watch them via airplay.  Should I be able to see them automatically via home sharing?
    3.  When I download stuff onto my ipad via itunes should it not automatically update to my itunes or do I have to plug it in and sync each time?
    I did say I was a novice!
    Thanks in advance

    1. Your computer needs to be on to view the iTunes library on your computer.
    2. That's correct, content is sent via AirPlay from the iPad, it's not playable from the Apple TV controls.
    3. You can set iTunes to automatically download music (iTunes preferences > store), movies will need to be synced when you connect to iTunes, TV shows can be redownloaded without connecting the iPad.

Maybe you are looking for

  • Do I finally have the proof we are being ripped off on DATA?

    I believe some jetpacks are targeted some are not. It may be random or it may be based on your data usage. If you use a lot of data (Let's say 10 Gigs per month) it is easier to sneak in a Gig or two. Here is my situation. I had two Jetpacks. My MIL

  • How to handle 3 different fact tables and measures within a DAX query?

    I am writing a DAX query in DAX studio in Excel against a tabular model that has 4 different Fact tables, but they share the same dimensions. (There's some long story I can't get into here, but unfortunately this is the structure) I want to include m

  • Toshiba Tecra A8 won't boot

    My Toshiba A8 PTA83A-04F012 notebook will not boot. When I boot the machine, I get the normal Toshiba splash screen then the screen goes blanks with a blinking cursor in the upper left hand corner. Apart from the CPU fan kicking in, nothing else happ

  • How can I see 2 or more web pages on my screen at once?

    Although I can open multiple windows in Safari, I can't see them side by side.  How can I do that?  It must be possible.

  • No sound with ALSA and/or Pulse from built-in Intel 5 Series Card

    Hello, I posted a thread about a similar problem to this 4 years ago, but that solution is no longer working for me, and I'm just now returning to Arch after floating between a few different distros, so I'm not as knowledgeable about this as I might