IPAD must-haves. And fun-to-haves.

Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini

Apple Wireless Keyboard

The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad

Apple unveils iPad mini: ‘Thin as a pencil, light as paper’

iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool

Lightning connector and FaceTime HD camera

Apple announces 4th generation iPad packing an A6X CPU

Pages

Showing posts with label starting. Show all posts
Showing posts with label starting. Show all posts

Thursday, August 8, 2013

Applescript/Terminal: Get PIDs of processes starting with...

Hello,

 

Is there a way to return all the PIDs of processes starting with "Myapp_action_download" in a neat array in Applescript, so I can kill them using Terminal?

 

Something like this:

 

set openapps to {}

set openapps to (do shell script "the shell script which I don't know")

--This script gets all the PIDs of processes starting with "Myapp_action_download", and returns them in a neat array

set appcount to 0

 

repeat (count of items of openapps)

set appcount to appcount + 1

do shell script ("kill -9 " & (item appcount of openapps) as text)

end repeat

 

Kind regards,

 

Isaiah


View the original article here

Applescript/Terminal: Get PIDs of processes starting with...

Hello,

 

Is there a way to return all the PIDs of processes starting with "Myapp_action_download" in a neat array in Applescript, so I can kill them using Terminal?

 

Something like this:

 

set openapps to {}

set openapps to (do shell script "the shell script which I don't know")

--This script gets all the PIDs of processes starting with "Myapp_action_download", and returns them in a neat array

set appcount to 0

 

repeat (count of items of openapps)

set appcount to appcount + 1

do shell script ("kill -9 " & (item appcount of openapps) as text)

end repeat

 

Kind regards,

 

Isaiah


View the original article here

Thursday, April 11, 2013

Re: Best way for starting COCOS2D ?