What language would suit someone who hates anything that isn't PHP?

Psst. Yes, this message is long, but so are my requirements. Please take the extra few seconds to read it
First it was QBasic, then QuickBasic, then, of all things, Visual Basic... version 1.0. On Win98. Then XP.
I made a lot of stuff with VB. 500 doesn't give a very good indication of how many things I made with VB 1.0, but I remember having more items than that in my c:\vbwin folder. VB might not look all that great visually, but it had a few things I've not found in any other language/environment, namely simplicity, freedom of use, speed, flexibility, hackability, and speed. Definately speed. It wasn't great on memory usage however - after my projects started creating 80KB binaries, VB would start to get crashy.
But VB had simplicity because it didn't use the 2873598734-options 997341234-properties 897592873562874353469582743-functions mantra of VB 6.0 nor the 9-billion-of-everything mantra of .net. I could whip up an application in that environment within seconds - indeed, I became quite a master at configuring some defaults I liked for forms and adding a hidden button that responded to the ESC key in about 7 seconds. It had freedom of use because... I could do anything with it. I could, because I was just that patient enough, use 234 perfectly aligned pictureboxes to create "the Win95 look" in a program designed to work on Windows 3.1 (yes, VB 1.0 is 16-bit ), and VB had speed because those 234 pictureboxes appeared on my running program's form when I hit F5 faster than I could blink. It had flexibility because I could shove 12MB of BMPs into my EXE and it'd run fine. It had hackability because I could import the Win16 API and work around issues in the language itself to make my applications what I wanted them to be. Did I mention the speed? Well, it was copyrighted in 1991, so was written in the good old days of the 16MHz 486!
However, all that fun was, sadly, from a while ago. Like, 8 months ago or so, probably more.
What marked the end of that period was a conversation on IRC one day: someone gave me a 5-or-so line snippet of code in PHP. It wasn't very complicated, but it showed a clean solution to something I needed to do with web development, which I was just getting into at the time - I can't really remember what the actual issue was, but I do remember that my choices were either to use the code snippet, or go through some looong complex process to complete whatever it was I wanted to do manually.
The code didn't look too scary, so I installed PHP and gave it a whirl. And I've liked, used, and abused PHP for many months following that initial "well maybe this isn't so bad". I don't mind PHP's use of 14 functions or more/less to do the same thing, or the fact that PHP isn't multithreaded. I probably wouldn't take advantage of multithreading in my code for a long time anyway, and PHP does have pcntl_fork() if I want to do two things at once in a controlled way.
However... I'm starting to outgrow PHP, and I'm a bit homesick of VB's visual ease of use as well. I want an environment that lets me drag'n'drop a picturebox onto a form, shove a pile of pictureboxes inside of it, then programmatically manage them all. Yes, that's exactly the kind of thing I'd do with VB 1.0, and what do you know, I created something good from it - a simple but very usable media center-ish user interface complete with animation and it all ran fast on the PC I was using, a Pentium 3 clocked at 450MHz, with only 128MB RAM.
Yes, PHP-GTK, PHP-QT and PHP-TK do exist, and they've all failed on my system at various points: PHP-GTK compiles and works absolutely fine, but breaks PHP-CGI. PHP-QT won't compile on my system, and its compile process is just too hard to tweak so I can't try gcc-3.4 on it. And anything involving PHP-TK that doesn't amount to creating a single, empty, lifeless window titled "PHP/TK" produces warnings or segfaults.
So I'm looking for a programming language that gives me something comparable or equal to what VB 1.0 had - a visual drag'n'drop development environment that didn't visually overwhelm, compilation, and speed, and what PHP has - simplicity, readability, and bindings to/for everything that isn't desktop application development, without the VB syntax format. I'm past VB, and about to surpass PHP.
Possible candidates for a new language are pretty much anything that includes both a compiler and interpreter, looks and feels like PHP, has nothing PHP doesn't have, but offers more power by using more functions, not weird, non-C-like ASCII character soup. So, if you were to take the PHP parsing engine and couple that with a bunch of libraries that adds sane stuff like native window support, the ability to manage boxes and squares in code, and so on. OR anything equivalent. So if something had ability XYZ which I couldn't figure out how to use, but also let me complete goal ABC while *not* using XYZ, it meets my requirements. And if something has just an compiler, you'll have a bit of a hard time convincing me to like it, but if it only has an interpreter, you'll really need to sell it to me, since I'm starting to get the compilation bug again, just like I did 7-8 years ago when I gazed at the wonder that was the EXE and wanted so badly to create my own.
Also, before you list Perl, let me stop you: Perl has too many unreadabilities. "test ? abc : def" is about as far as I'm prepared to go; I far prefer English text over regular expressions, Awk and the like. Also, C is just too much. It is, probably unsurprisingly considering what you've just read, too cool for my artistic brain. I don't want a language that can do everything: I get inspired by difficulty, not being able to do whatever I want. Yes, that's how my brain works, and I need to go with the flow, not against it, so simply because C can do absolutely anything and everything, I can't use it.
I will, however, note that I also like the Bash language, and the way it works, if only it wasn't so slow!
So, to sum up, the best things I've written include a media center user interface in a language that's 17 years old (same age as me! ), a telnet server using PHP (I wrote the RFC-compliant telnet parser myself, from scratch), and lastly a textual taskbar, an IRC client, and some animations using Bash.
I want a language that is readable and doesn't try to extend or expound on its own using syntax but lets me do the thinking my own way, so I have nothing stopping me from using it for what it wasn't used for. Because isn't that what we all do with programming languages anyway?
-dav7

As promised...
A little simple at the moment, but it's the result of a dream... to create The Perfect Language. I just may end up calling it TPL if it works out.
; dav7's view of what The Perfect Language is
; Licensed under the Nonexistant Public License (NPL) - "do w/e you want w/ it, just give me a bit of credit."
; 30-sep-08 - ?-oct-08
; <[email protected]>
; /me invents comment blocks so he doesn't have to keep typing ;s
There. :D
Now, the problem with most common programming languages (I'm looking at you, C) is that they
- are rather unreadable
- are really hard to work with for the unknowledgable
- impose a 32768-second wait on the impatient, ADHD-infused programmer as the code file(s) compile for the
247th time
- involve a lot of typing, some of it needing to be a specific case (CAPS or lowercase)
- requires a lot of input to get something basic functional, and has a very high initial code to output
ratio: at the beginning of a project a high percentage of code is required to get a reasonable amount of
output, and only after there is a fairly decent amount of code present will the code / output ratio
decrease so that only a relatively small amount of code is needed to produce the application-specific
output desired
- is not natively very image-oriented - to display an image in a window without 5GB of libraries, I need to
know Xlib, how to decode PNGs and how to manage double-buffering
So, I want to create a language that
- is both readable AND easy to type. No, I'm not going to do a survey of what word groups are the easiest
for the eye to pick up on, or go anywhere near that extreme; rather, my language will have two "modes".
One is amazingly quick to type, and the other, while relatively minimalistic, actually uses ASCII characters
to denote function, data and flow, and my compiler/interpreter combo will have a converter that will pass
through and convert a code file from one "syntax mode" to the other.
- can be both interpreted or emitted, depending on the situation ("emitted" here means that instead of working on
something that can generate native code for 784598754 platforms myself, I'll just output C-- code or something)
- has bindings for X
- makes it very easy to debug a program
From a result-, goal- or solution-based person like myself, I don't see language design the way most others would.
I don't value a language based on its algorithmic efficiency, I value it based on ease of use. I don't see things
from a procedural perspective, but rather a tokenized object oriented tree of constructs that I must feed to the
computter to achieve the result I want. This language adheres to that principle.
So, let's get started with this new language. As I go along, I explain points of interest / trivia about whatever
I'm referring to.
; The ubiquitous "Hello World". To print something, you encase it with single or double quotes and don't assign
; any meaning to it by telling the language to set the string to a variable or test it against something. A
newline is automatically added at the end of a line of such output produced by quoting.
"Hello world!"
; variable assignment by usage. There's no "true" or "false" here. Everything uses plain, un-expounded (in that 0
won't mean false or 1 true) integers to represent state or status.
x = 1
; if/then - the '? var : abc : def' construct compares 'var', and if 'var' is 1, it executes 'abc', otherwise it
; executes 'def'. This'll print "x = 1!". This construct could be used to do anything - I'd want it to operate
; as much like the C preprocessor as possible.
? x = 1: "x = 1!" : "x = 0!"
; the previous line could also be written as:
? x: "x = 1!" : "x = 0!"
; or even:
"'x' is equal to $x, which would equal"; ? x: "TRUE" : "FALSE"; "in a lot of other programming languages."
; calling a procedure. See the procedure declaration below for more info.
test x
; a loop. Loops start with a '[' and end with a ']'. This language doesn't have any for or while loops - you
; construct those on your own.
[ ;; this demos both nested comment blocks, and the fact that I stole C's add-1 method -> ;; x++
; the ! operator breaks out of a loop. I might change this.
? x > 5: !
; Print the current index, up to 5. Using a $ next to a known variable name in a quoted string will
; print that variable's contents.
"$x"
; Now for a for-esque loop - very similar to the previous example. Note that at the beginning of the block, a
; semicolon isn't required to denote its seperation of the pre- or proceeding code behind and in front of it.
z = 0 [ z++; ? z > 10: !
"$z"
; procedure start. No definition of the function or parameters is required - variables are accessible inside
; the function as 'a', 'b', 'c', etc. When 'z' is reached the next variable is indexed as 'aa', then the next
; as 'ab', etc. Also, functions can be defined after they're called - the parser will have the entire program
; in memory before it executes a single line of it, and the compiler will likewise parse the entire program
; before outputting any C.
test:
; Yes, it looks like I have the quotes wrong, but I don't. This language allows for Bash-style
; variable-string combination ;)
"ohai from teh procedure! You passed "$a"!"
; procedure end. Note that I start with "proc:" and end with ":proc" - this makes it very easy to see
; what function I might be seeing the end of if it's long and I can see any function starts.
:test
; Now for everything demoed here as a one-liner.
"Hello world!"; x = 1; ? x: "x = 1!" : "x = 0!"; "'x' is equal to $x, which would equal"; ? x: "TRUE" : "FALSE"; "in a lot of other programming languages."; test; [ ? x > 5: !; "$x" ] z = 0 [ z++; ? z > 10: !; "$z" ] test: "ohai from teh procedure!" :test
; And now for everything in its slightly more readable form...
"Hello world!"
x = 1
if x = 1 then "x = 1!" else "x = 0!"
if x then "x = 1!" else "x = 0!"
"'x' is equal to $x, which would equal"; if x then "TRUE" else "FALSE"; "in a lot of other programming languages."
test
[ x++
if x is greater than 5 then break
; OR
; if x > 5 then break
"$x"
z = 0 [ z++; if z > 10 then !
"$z"
test:
"ohai from teh procedure!"
:test
; And now for this version as its oneliner:
"Hello world!"; x = 1; if x then "x = 1!" else "x = 0!"; "'x' is equal to $x, which would equal"; ? x: "TRUE" : "FALSE"; "in a lot of other programming languages."; test; [ if x is greather than 5 then break; "$x" ] z = 0 [ z++; if z > 10 then break; "$z" ] test: "ohai from teh procedure!" :test
That's about it.
What do you think?
What language has the closest syntax as mine?
Is this language viable? Could it survive actually being developed?
Please do let me know your opinions/comments/suggestions/flames.
-dav7

Similar Messages

  • What if you gift an app to someone who already owns that app?

    I'd like to know what happens if you gift an app to someone who happens to already own it. Ideally, iTunes would check, and let you know there's no need to gift that app, and maybe suggest something else.
    Anyone know for sure what happens? Otherwise, it kinda ruins it if you always ask people, "Hey, do you own XYZ?" "No, why?" "Just wondering."

    Can he convert the gift into store credit?
    No.
    Is there an official policy on this?
    http://www.apple.com/legal/itunes/us/terms.html#APPS
    "Gifts are not refundable"
    If the money is just lost, who can I send a message to in order to voice my concerns?
    You can comment to Apple through the iTunes feedback page.
    Buying a gift for anyone always carries the risk that they already have it. Not even all stores selling physical goods allow exchanges and returns, and electronic goods almost never are returnable. So if you're thinking of giving an electronic gift, you really need to be confident that they recipient doesn't already have it, or just accept the risk that they will and that your money will be lost. Note that if the gift was in the form of a redemption code not linked specifically to that person's email address, the recipient could pass the gift on to someone else.
    Regards.
    Message was edited by: Dave Sawyer

  • I have downloaded and installed Adobe Flash Player, but it was installed to a "disk image".  I don't know what this is and I cannot see anything that requires Flash Player.  What am I doing wrong?

    I have downloaded and installed Adobe Flash Player, but it was installed to a "disk image".  I don't know what that is, but I cannot view anything that requires flash player.  What am I doing wrong?

    Thanks for your help, but that didn't do any good either.  I have been double clicking from the download files, double clicking on the "install adobe flash player", closing the anti virus, closing Safari, watching the install progress and clicking finish.  It indicates that "flash player" is installed, but every time I try to view something requiring flash player, it tells me I must download it.  It shows up in the "system preference"  and from there I can make some changes, but it still won't let me view anything requiring "flash player".   It does not show up in my apps like Adobe Reader does.  It shows up in the "downloaded files" section of "Finder".  I'm getting really perplexed over my inability to get this right.

  • Scopes Preview won't show anything that isn't very bright

    The scopes preview doesn't show an actual preview of the video. I don't know what I am doing wrong. See what I mean:
    http://i6.photobucket.com/albums/y213/jaimefeu/Picture2.png

    jaimefeu wrote:
    It worked perfectly less than a year ago and now it's not working.
    I worked perfectly up less than a year ago and now it's not. That's a long time. What did you do to your computer in that timespan?
    I'm wondering if it's a setting in color or something someone's seen before. Are there any ideas before I start giving out the specs and people start telling me to do things like get a new video card or update my graphics card or other things that probably don't need updating or, in essence, breaking my computer on someone's whim?
    Here's an idea, how's about cluing folks in to what you're doing with what kind of video and some computer hardware/software specs rather than us trying to play Carnac the Magnificent?

  • I wonder what title would get someone to look at my post.

    I want to change the alignment of a TextField to RIGHT_ALIGNMENT. I cannot figure out how to do it. I've looked through the API documentation. I don't want to use Swing. Could someone please help. Thanks.

    The Doctor comes through! Like you said, "You can't do that," is not exactly what I wanted to hear, but it was definetely more than any other reply. You gave me a diagnosis.
    I had thought about writing my own subclass of TextField with right alignment, but I don't think I'm advanced enough to do that, yet.
    Maybe I can use a label and make it look like a text field. I think that's probably going to be the easiest thing for me to do right now. Although, I am still interested in finding out a way to change the alignment of a text field.
    macrules2:
    JTextField is definetely an option, but at my present level of expertise, I'm trying not to get too involved with Swing (at least not Swing & applets). I have some unsolved problems with applets using Swing...namely: they won't work in a web browser. I've asked for help here at these forums, but nothing helped. The problem may be that I just didn't understand the solutions that I was given, but whatever the case may be, I couldn't get my applets that use Swing to display in a web browser.
    Everyone:
    I think I'll try a different subject next time.

  • Latest version of Flash Player keeps crashing on Chrome, would like someone who knows the browser to answer?

    Just happened today. For some reason, when I run Candy Crush Soda Saga, it crashes immediately. What's going on?

    The standalone Flash Player (Projector) is not updated with the Flash Player browser add-ons; you need to download the latest standalone player manually from http://www.adobe.com/support/flashplayer/downloads.html

  • Need professional advice on what product would suit my needs best!

    I own a mid size business and we are venturing out into producing our own large multi-page brochures.  Final size of brochures after fold will be around 10 x 13 around 8 pages.  (So the center catalog layout page will be 20 x 26). I need a program that is simple yet can produce something that looks award winning, any suggestions?

    I'm not sure about "simple" (there would be a learning curve for sure) but it sounds like Adobe InDesign would be the application for you.
    Also, if your final goal is a print ready PDF, with InDesign there is no need to purchase Acrobat as well since it will directly export to PDF.
    http://www.adobe.com/products/indesign/

  • HT4743 What happens when you buy a tv season that isn't finished yet?

    If I buy a season of a tv series, but the season isn't finished yet, do I get the new episodes too? Or do I only get the episodes listed on iTunes when I click buy? If I do get all the episodes, do they automatically download? I just need to know If I have to wait until the entire season is listed... Thanks!!
    Can I then put the season on my iPad?

    In addition I believe you can  get a pro rata refund or similar if you cancel the season pass before downloading future episodes or if the show goes bust and doesn't complete the season.
    Complete my Season may be another option when a season has completed (and should work eventually for those that have episodes yet to air for that season).
    Here, when you buy an episode, if the season is complete you can buy the season for the full cost less that of those you've already bought.
    Beware however as it won't let you do it if the remaining cost falls to less than a single episode - I've been caught out twice with that - you need to know how many episodes in total and stop buying individual ones at the appropriate point.
    AC

  • Firefox continues to crash unexpectedly. The report mesage suggests that the information I send will help Firefox to cure the problem but I never hear anything from them. How is someone who isn't a computer geek supposed to solve this problem?

    Firefox continues to crash unexpectedly. When it does a message requests me to send a report that is supposed to help Firefox understand the problem but I never hear from them again. Just how is someone who isn't a computer geek able to understand all the detailed discussions from other users. My Firefox is completely up to date. Is there anyone who can explain what is happening in simple terms?
    == Crash ID(s) ==
    Application Basics Name Firefox Version 3.6.3 Profile Directory Show in Finder Installed Plugins about:plugins Build Configuration about:buildconfig Extensions Name Version Enabled ID Modified Preferences Name Value browser.history_expire_days.mirror 180 browser.places.importBookmarksHTML false browser.places.importDefaults false browser.places.leftPaneFolderId -1 browser.places.migratePostDataAnnotations false browser.places.smartBookmarksVersion 2 browser.places.updateRecentTagsUri false browser.startup.homepage http://www.google.co.uk/ browser.startup.homepage_override.mstone rv:1.9.2.3 extensions.lastAppVersion 3.6.3 network.cookie.prefsMigrated true places.last_vacuum 1273847973 print.macosx.pagesetup-2 PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCFET0NUWVBFIHBsaXN0IFBVQkxJQyAiLS8vQXBwbGUvL0RURCBQTElTVCAxLjAvL0VO… print.print_bgcolor true print.print_bgimages true print.print_command print.print_downloadfonts true print.print_evenpages true print.print_footerleft print.print_footerright print.print_headerleft print.print_headerright print.print_in_color true print.print_margin_bottom 0.5 print.print_margin_left 0.5 print.print_margin_right 0.5 print.print_margin_top 0.5 print.print_oddpages true print.print_orientation 0 print.print_pagedelay 500 print.print_paper_data 0 print.print_paper_height 11.00 print.print_paper_size -1317362828 print.print_paper_size_type 1 print.print_paper_size_unit 0 print.print_paper_width 8.50 print.print_printer print.print_reversed false print.print_scaling 1.00 print.print_shrink_to_fit true print.print_to_file false print.print_unwriteable_margin_bottom 57 print.print_unwriteable_margin_left 25 print.print_unwriteable_margin_right 25 print.print_unwriteable_margin_top 25 privacy.sanitize.migrateFx3Prefs true security.warn_viewing_mixed false

    Hi Mariah ~
    It's Shaunn, the original poster. Thanks for your posting. I'm glad I'm not the only one that's having this problem.
    Now that you mention it, I'm having the exact same problem on Facebook as well, when I play Family Feud.
    I wish someone would investigate and post a solution to this problem. No-one from Playlist has responded, and no-one "Officially" from Firefox either.
    So Mariah, I appreciate you and your post.
    If you find anything out...from anywhere...would you please let me know. You can post it right here and I'll get an email from Firefox.
    I'll do the same for you.
    Enjoy your day and good luck.
    Shaunn

  • What CS5 Package Would Suite Me Best???

    I was going to get the Master collection, but I wanted to ask a few questions on whether the Web Suite would be just fine???
    My friend and me have been doing a lot of work, and we decided to get into the Mobile App business.
    We plan to develop our own apps in iOS, Mac, Google, Android etc. Mainly iOS and Android. Also we plan to build our own websites for our little companys.
    My friend is the artist of the two of us, and he already has photoshop, indesign and illustrator on his mac.
    I want to know if Premiere Pro, After Effect and Audition play a part in building apps or designing/building websites?? They are the only programs the Web Suite doesn't have, I don't know much about them, but i thought they were for editing and making movies?
    So the question: "Is Web Suite CS5 everything i would need to do what i have said above?" Like would I miss out on anything without those few programs?
    If it is, I would get it for PC, and when i get my mac book pro/iMac in like 4-6 months, I would order a suite for it and will probably go with the Master Suite.

    Hi ajdk-
    Then it comes down to your morals and how carefully you want or need to protect patient confidentiality. Your basic network concept should work.
    As a start, storing any patient data with regular business data and emails is asking for a security breach.
    Make sure to back up your back ups and store said backup securely in a media-rated fire proof vault.
    These documents may help:
    Creating a small Ethernet network
    AirPort Base Station and Network Setup Guide (Mac OS X 10.4 or earlier)
    Luck-
    -DP

  • When I call someone who is also on Verizon it says, "All circuits busy" what does that mean?

    When I call someone who is also on Verizon it says, "All circuits busy" what does that mean?

        Thanks for reaching out to us. I'm sorry you had problems contacting your friends/family.
    There are normally a couple of reasons you would hear that particular message.
    1.If the announcement is received when calling one specific number the issue is with that device's service provider. They would need to contact their provider and do an investigation.
    2. If the announcement is received when ANY number is called the issue is with the Verizon Wireless network. At that time, we we need to open a remedy ticket (which reports it to our engineers to investigate further).
    Tamara H.
    Follow us on Twitter @VZWSupport

  • HT201407 hi..I cant activate my Iphone 5. I bought this from someone who cant remember her apple password and even the email address that she used to set up the account.What am I gonna do now....How can I activate my Iphone. what are my options...pls help

    hi..I cant activate my Iphone 5. I bought this from someone who cant remember her apple password and even the email address that she used to set up the account.What am I gonna do now....How can I activate my Iphone. what are my options...pls help me.thank you

    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818
    hannibalfromlemery wrote:
    .I cant activate my Iphone 5. I bought this from someone
    The Apple ID and Password that was Originally used to Activate the iDevice is required.
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund, as you will not be able to re-activate it.

  • Why is my macbook pro running slow.  It runs slow even if only one app is open, especially if it's a browser.  I don't know how to read Etrecheck, but was hoping someone who does can help me out.  Would be super grateful.  :-)

    Hi.  This is my first time posting.  My Macbook Pro with Os X Mavericks has been running super slow since before I installed Mavericks so I'm pretty sure it's not the OS that has the problem.  It runs slow even if only one app is open, especially if it's a browser, particulary google chrome.  If mail is open...forget about it, down to a crawl.  I don't know how to read Etrecheck, but was hoping someone who does can help me out.  Would be super grateful.  :-)
    P.S. - Also, it sounds like something is loose inside my mac.  How should I proceed?
    Thanks in advance.
    Hardware Information:
              MacBook Pro (13-inch, Late 2011)
              MacBook Pro - model: MacBookPro8,1
              1 2.8 GHz Intel Core i7 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 384 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 23:21:37
    Disk Information:
              APPLE HDD HTS547575A9E384 disk0 : (750.16 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 749.3 GB (603.2 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-8A8 
    USB Information:
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] com.leapfrog.driver.LfConnectDriver (1.8.0 - SDK 10.7) Support
              [not loaded] com.seagate.driver.PowSecDriverCore (5.0.1) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.0.1) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.0.1) Support
              [not loaded] com.seagate.driver.SeagateDriveIcons (5.0.1) Support
    Problem System Launch Daemons:
              [failed] com.apple.wdhelper.plist
    Problem System Launch Agents:
              [loaded] com.paragon.NTFS.auth.plist Support
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [loaded] com.leapfrog.connect.shell.plist Support
              [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [running] com.sophos.autoupdate.plist Support
              [running] com.sophos.intercheck.plist Support
              [running] com.sophos.notification.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.seagate.SeagateStorageGauge.plist Support
              [running] com.sophos.uiserver.plist Support
              [running] org.chromium.chromoting.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [failed] com.adobe.ARM.[...].plist Support
              [loaded] com.facebook.videochat.[redacted].plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
    User Login Items:
              Activity Monitor
              Dropbox
              Google Drive
              younity
              EvernoteHelper
    Internet Plug-ins:
              o1dbrowserplugin: Version: 5.2.4.18058 Support
              nplastpass: Version: 2.5.5 Support
              Default Browser: Version: 537 - SDK 10.9
              AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 Support
              FlashPlayer-10.6: Version: 13.0.0.206 - SDK 10.6 Support
              Silverlight: Version: 5.1.20125.0 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.206 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              googletalkbrowserplugin: Version: 5.2.4.18058 Support
              SharePointBrowserPlugin: Version: 14.4.1 - SDK 10.6 Support
              AdobePDFViewer: Version: 11.0.06 - SDK 10.6 Support
              JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Safari Extensions:
              Slick Savings: Version: 1.0
              Slick Savings: Version: 1.0
              Surfon: Version: 1.2.2
              Pearltrees Extension: Version: 6.0.13
              Mindomo Bookmarks: Version: 1.0
              Ebay Shopping Assistant: Version: 1.1
              Zootool: Version: 0.7
              Amazon Shopping Assistant: Version: 1.1
              Pocket: Version: 1.7.1
              Searchme: Version: 1.3
    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
    User iTunes Plug-ins:
              TuneUp Visualizer: Version: 2.4.0 - SDK 10.6 Support
    User Internet Plug-ins:
              Picasa: Version: 1.0 - SDK 10.4 Support
    3rd Party Preference Panes:
              remoting_host_prefpane  Support
              Flash Player  Support
              Paragon NTFS for Mac ® OS X  Support
    Time Machine:
              Mobile backups: ON
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 697.84 GB Disk used: 136.06 GB
              Destinations:
                        NO NAME [Local] (Last used)
                        Total size: 3.41 GB
                        Total number of backups: (null)
                        Size of backup disk: Too small
                                  Backup size 3.41 GB < (Disk used 136.06 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   6%          Activity Monitor
                   5%          WindowServer
                   1%          InterCheck
                   1%          sysmond
                   0%          ocspd
    Top Processes by Memory:
              152 MB          Finder
              115 MB          HelpViewer
              111 MB          mds_stores
              86 MB          InterCheck
              57 MB          WindowServer
    Virtual Memory Information:
              983 MB          Free RAM
              1.03 GB          Active RAM
              584 MB          Inactive RAM
              1.01 GB          Wired RAM
              17.41 GB          Page-ins
              222 MB          Page-outs

    Launch the Console 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 Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • First of all, I would have to say that getting in touch with you is a nightmare and I am not at all happy that I can't just email or live chat with someone who can help!  I am not a technical person, I just want to be able to use Photoshop Elements and ge

    First of all, I would have to say that getting in touch with you is a nightmare and I am not at all happy that I can't just email or live chat with someone who can help!  I am not a technical person, I just want to be able to use Photoshop Elements and get on with it. I bought Photoshop Elements via Amazon some months ago and it worked fine.  I then got a message that advised that the trial version would expire, which it subsequently has (I have been trawling your site for weeks and weeks trying to find an email or phone contact to get some assistance).  Relucltantly, I am now typing this - and I suspect it will not help in the slightest!  I bought the FULL not TRIAL edition of Photoshop Elements and I have contacted Amazon who confirmed this, but say I need to contact you.  Can you please let me know how I can resolve this?  Louise A Fraser

    Hi Louise, sorry to hear of your problems. This is not Adobe. We are mainly support volunteers, other users like you, trying to help one another.  You need to contact Adobe directly for activation and licencing issues. Click the link below. Use the dropdown menu for boxes (1) & (2) to scroll down the list and choose:
    1. Adobe Photoshop Elements
    2. Adobe ID, and signing-in
    3. Click on the blue button: Still need help? Contact us – then click the area marked chat 24/7, then click “start chat ”
    It’s usually possible to start a live chat, if an Adobe agent is free, and often to get the problem fixed right away. Have your serial number available. The agent can directly troubleshoot your system if you agree to activate the Adobe Connect add-on. Don’t let them pass the buck. Stay connected and ask to speak with a supervisor if necessary.
    Click here to get help now Contact Customer Care

  • What Macbook would be perfect for me? What would best suit my activity/needs?

    I currently have a Toshiba L650 Satellite.
    I'm an 18 year old female, and I want to buy my very first macbook.
    As Macbooks are expensive, I want to get the perfect one for me.
    I use my laptop for:
    -Photoshop (I edit a lot of pictures/gifs/etc)
    -Photo's (lots of photos I take on my camera I store on my computer, this also means I want an SD card slot)
    -USB plug ins.
    -Music (So I want to be able to put discs in my computer)
    -Storing videos. (Average amount, not lots, just average amount of videos)
    -Word documents I use often.
    -Internet (I spend A LOT of time on the internet - facebook, youtube, social networking, browsing, etc. My laptops main use is the internet and photos)
    -I watch some TV shows on it, like Vampire Diaries, etc sometimes.
    -I'm not really a gamer. I do, however, play the sims 3 ocassionally and I'm thinking about buying Skyrim, but don't know about this one, maybe not.
    -I webcam a lot too. Via Facebook generally. But sometimes Skype too.
    & I think that's about it.
    What would be the better Macbook for me?
    I was looking at either the Macbook pro 13" or the Macbook air 13" - but don't know which one or if neither of these would suit me.
    I like my computers to run fast and I like as much memory as possible. However, on my current laptop I've only used 83gb I think. It says total space is 583gb and there's 500gb remaining so I think that means I used 83gb?
    On my new laptop, I want to store a bit more stuff than that though. So what is best for me?? What MAC is best for me??
    I don't know a lot about computers so you may need to explain thoroughly for me to understand better.

    Most of your list could be supported by either MacBook you listed. I think if you are a heavy user of Photoshop that you will find the MacBook Pro to be the better solution.
    You version of Photoshop that you have on your Toshiba will not run  on the Mac and will have to be replaced with the Mac version. Adobe may make you a deal on the Mac version. Call an ask their sales staff what they can do for you if you want to stay with PS.
    Seeing as how you are planning on switching platform, you may want to check out two applications from Apple before you switch which are iPhoto and Aperture.
    The first iPhoto will come with you Mac and is a way of storing photos and doing simple editing on them. It is very well integrated with the rest of the software on the Mac.
    The other is Aperture. This is an extra cost item that is for the more serious user. It is capable of much more powerful edits on your photos.
    Allan

Maybe you are looking for

  • Printer escape code

    hello, i have designed a charachter mode report that require a page size height 66 and width 132 portrait mode to print, i need to print this report on a generic printer, i have tried various generic printer defination files that are shipped with ora

  • BW BASIS Problem

    Hi Guys THis is more of a basis question. I have BI7 ides installed on my machine. I start up the BW instance in the console. There is 2 servers listed and the database. One server turns red because one the services isnt working. service name 'JMX Ad

  • Problems with dragging photos into iWeb

    I am trying to add new photos to my online gallery in iWeb but it's not working. I click on "media" and then drag the photos I want and it only is showing the image number, not the actual image. If anyone has any help or suggestions, I'd greatly appr

  • CHECKING NETWORK CONFIGURATION REQUIREMENTS  : WARNING

    Hello........ when I want to install oracle 10.2.0.1 software, there is warning about CHECKING NETWORK CONFIGURATION REQUIREMENTS it is : Checking Network Configuration requirements ... Check complete. The overall result of this check is: Failed <<<<

  • Using LDAP in ZENWorks

    LDAP is being moved from one server to another and I have been asked to check my ZEN server configuration to prepare for this move. Where does ZEN65 use LDAP (or what object should I look at to change any LDAP settings)? I don't remember configuring