Boston Social Entrepreneur Fellowship. Check out the link below:
http://www.cjp.org/page.aspx?id=212217
Sent from iDoClipboard on the iPhone
This blog covers a wide range of topics ranging from technology in the law to how-to's of iPhone development.
Sent from iDoClipboard on the iPhone
Bill Paul
Looking for alternative energy stocks with undiscovered potential?
Who isn't?
Here are three possibilities (with three more to come next week). You can
decide for yourself whether they are worth further investigation.
First up: PFB
Corporation, which trades on the Toronto Stock Exchange under the symbol PFB.
Calgary-based PFB is an energy
efficiency play. The company makes insulating building products that it
sells under branded names in commercial and residential markets in North America
and Japan.
The company most recently reported third quarter net income of $1.6 million
or 24 cents vs. $1.1 million or 16 cents, and nine months net of $2.5 million or
38 cents compared $1.1 million or 17 cents. Earnings rose significantly despite
lower sales, a reflection of the difficult economy faced by all
construction-related businesses.
What would seem to make PFB a hidden gem is management's demonstrated ability
to control costs (and maintain the regular 6-cent-a-share divided payout) in
tough economic times. With energy efficiency - especially in buildings -
increasingly being recognized as by far the most cost-effective way to start
greening the economy, PFB has hidden potential that might really blossom as the
overall economy improves.
Next up: Vodafone Group Plc, whose ADRs trade on NASDAQ under the symbol VOD,
and Telefonica S.A., whose ADRs trade on the Big Board under the symbol TEF.
Although they're already telecom giants, what gives Vodafone and Telefonica
hidden potential is the role they appear destined to play in Europe's smart grid
build-out.
By 2020 the British government plans to have a smart meter in every home
under a program whose cost is expected to top $11.5 billion. (The rest of Europe
may not be far behind.) This will require enormous amounts of data to be
wirelessly transmitted from those smart meters back to Britain's energy
companies. Vodafone and Telefonica (through its O2 unit) reportedly are
negotiating to be the carriers of all that data, quite possibly through a new
joint-venture firm.
While the payoff for investors won't be immediate, Vodafone and Telefonica
could become huge long-term beneficiaries of the smart grid, which a number of
communications experts now think will become as big as or bigger than the
Internet.
DISCLOSURE: None
DISCLAIMER: This is a news article. Please read terms
and policy.
The following was posted in a LinkedIn user group I subscribed to:
"By examining the iPhone SDK Agreement, Apple’s End User License Agreement, and federal copyright and trademark registration, this guide provides an introductory overview of the common legal issues surrounding iPhone Application development, and the measures developers can adopt to minimize liability and maximize protection of their intellectual property rights. This article was recently distributed at the Voices that Matter: iPhone Developers Conference in Boston. Click here to read the article: http://www.rmchale.com/publications/APracticalLegalGuidetoiPhoneApplicationDevelopment
1. The sources I have linked to all do a great job of presenting the
legal issues that iPhone developers face when working with Apple and
protecting property rights.
2. The iPhoneDevSDK forum is very interesting for it's look at the
various real-life issues that developers face such as cease and desist
letters.
http://www.iphonedevsdk.com/forum/business-legal-app-store/23491-iphone-legal-trouble.html
3. I predict that in the next few years, as smart phones get smarter,
and accessories are attached, product liability claims against
software developers will increase. Are individual iPhone developers
liable if they make an app that is compatible with a device
manufacturer's product? What kind of warning does your app have? Is
the app something you reasonably foresee will be used by someone
driving?
4. Does your app meet Apple's content ratings system? It better not
have the ability to access the Internet or else you will be given the
strictest rating.
5. If you are working jointly with other iPhone developers, have you
started thinking about how to structure your relationships for tax and
control purposes?
http://www.danielsonlegal.com/blog/2009/07/14/iphone-developer-legal-guide/
http://www.danielsonlegal.com/blog/docs/iPhone_Developer_Legal_Guide.pdf
David Dobin
Ddobin@gmail.com
301-379-4264
http://www.sba.gov/localresources/index.html
http://business-law.freeadvice.com/business-law/
http://smallbusiness.findlaw.com/http://www.hootofloot.com
David Dobin
Ddobin@gmail.com
301-379-4264
So I was watching the news and heard that unemployment had gone up to
10.5%. Then I heard Joe Biden say that the government will spend our
way out of bankruptcy. If that's the case, I want to know how to get
some of that money. That seems like important information. So in just
a couple hours of research, I found the following links:
http://grants.nih.gov/grants/guide/rfa-files/RFA-OD-09-009.html
This is just the beginning of my research. Next step?
David Dobin
Ddobin@gmail.com
301-379-4264
This update corrects some of the major bugs from version 1.0 by
removing me as the default email recipient and fixing the app so it
doesn't save the same text every time the app is launched. I also re-
formatted the table so that it's easier to read and, taking a tip from
a user, changed the mail button to an envelope.
David Dobin
Ddobin@gmail.com
301-379-4264
Version 1.0 does not support references to separate local style sheets
or JavaScript files.
You can find more information at
http://appshopper.com/productivity/idowebedit
How I designed the app:
1. I used Core Data to save each web page. Check out the following
tutorial to learn more about Core Data:
This is a must-read for anyone new to Core Data who will be using
persistent custom objects. (if you don't know what a custom object is,
you need to read My First Blog Post).
2. The app uses 1 UIView and 2 subviews: a UITextView and a UIWebView.
Then, to switch between the two, I implemented a flipView method and
set each subview hidden (e.g.,[theWebView setHidden: YES];) as
appropriate:
[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1.00];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
UIViewAnimationTransition transition;
transition = UIViewAnimationTransitionFlipFromLeft;
[UIView setAnimationTransition: transition forView:self.view cache:YES];
[UIView commitAnimations];
Who this app is designed for:
1. Experienced developers: Copy and paste code into the text view to
see how your code renders on a small screen. Also, test out web APIs
before integrating them into your mashup.
2. Beginning developers: Test out code in order to learn how the web
languages work generally.
3. All developers: Try out short code snippets while you are on the go
to see how they look on an iPhone.
MORE INFO on developing for Safari on the web:
http://developer.apple.com/safari/library/codinghowtos/Mobile/UserExperience/index.html
http://developer.apple.com/safari/library/navigation/SampleCode.html
David Dobin
Ddobin@gmail.com
301-379-4264
The extent of my programming experience before January was a little
HTML that I wrote in 2000. So when I started thinking about my first
real iPhone app, I didn't even understand the basic concepts that go
into a computer program.
Take timers, for example. A timer allows the program designer to
control when things happen in a program-like a timer on a bomb
controls when the bomb explodes. Well, when I started learning iPhone
development and how to make an iPhone app, I didn't even know timers
existed let alone know how to implement one in an iPhone app.
Then I read a tutorial on animating a ball using an NSTimer at http://icodeblog.com/
. After reading the tutorial, I understood what a timer was. Still, it
was probably another month before I could get one working on a real
app without crashing my program.
What's my point? A non-computer programmer can learn how to build an
iPhone app. But it takes time and patience, just like anything else
that's worthy. You won't be able to make a dozen apps overnight.
Believe me, I tried. But if you keep at it, read alot, write your own
code and accept that some days you will feel like you took two (or
ten) steps back, you will get a hang of it. After all, you are
learning a new language.
Here are some links that I found useful for beginning iPhone app
development. But understand that you won't truly get what's inside
those pages until you try to learn the basics of Objective-C (see my
first blog) and try it yourself.
http://appsamuck.com/blog/index.php/category/31-days/
David Dobin
Ddobin@gmail.com
301-379-4264
As many of you know, the app reached number one on the App Store's
list of free productivity apps in Japan.
Anyways, here is the list of countries and their respective download
totals:
1 Japan 4856
2. USA 628
3. Germany 111
4. Canada 81
5. Great Britain 81
6. France 79
7. Italy 60
8. Australia 53
9. SG 37
10. Russia 31
David Dobin
Ddobin@gmail.com
301-379-4264
http://mithin.in/2009/06/22/using-iphone-sdk-mapkit-framework-a-tutorial/
http://blog.objectgraph.com/index.php/2009/04/02/iphone-sdk-30-playing-with-map-kit/
I worked with the Objectgraph tutorials and found them very helpful. A
quick review of the other tutorial also showed that it is very helpful.
If you know of any more tutorials, feel free to post them.
www.iDoTouch.com