How does Codename One work?

Codename One has an optional SaaS approach so this might (and probably will) change in the future to accommodate improved architectures. Notice that Codename One also provides an option to build offline which means corporations that have policies forbidding such cloud architectures can still use Codename One with some additional overhead/complexity. It also means you … Read more

Programmatic SMS [closed]

Use http://www.twilio.com/ They have a REST interface to send SMS’s and even to establish phone calls or receive phone calls. You even get 30$ credits to try it out. Def. the cheapest solution you will find.

Div show/hide media query

I’m not sure, what you mean as the ‘mobile width’. But in each case, the CSS @media can be used for hiding elements in the screen width basis. See some example: <div id=”my-content”></div> …and: @media screen and (min-width: 0px) and (max-width: 400px) { #my-content { display: block; } /* show it on small screens */ … Read more