|
|
|
Thursday, 29 July 2010 22:46 |
Send sms (worldwide) using www.smsmatrix.com.
More examples at SMS Gateway page.
try
{
String MATRIXURL = "http://www.smsmatrix.com/matrix";
String PHONE = "12506063167";
String USERNAME = "
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
";
String PASSWORD = "pass72727";
String TXT = "This is a test, pls ignore";
String q = "username=" + URLEncoder.encode (USERNAME, "UTF-8");
q += "&" + "password=" + URLEncoder.encode (PASSWORD, "UTF-8");
q += "&" + "phone=" + PHONE;
q += "&" + "txt=" + URLEncoder.encode (TXT, "UTF-8");
URL url = new URL (MATRIXURL);
URLConnection conn = url.openConnection();
conn.setDoOutput (true);
OutputStreamWriter wr = new OutputStreamWriter (conn.getOutputStream());
wr.write (q);
wr.flush();
BufferedReader rd = new BufferedReader (new InputStreamReader (conn.getInputStream()));
String line;
System.out.println ("Matrix API Response :");
while ((line = rd.readLine()) != null) { System.out.println (line); }
wr.close();
rd.close();
} catch (Exception e) { }
 Read more: |
|
|
Wednesday, 28 July 2010 04:00 |
 | About TurboCAD MAC Deluxe 2D/3D
Makes it easy to design anything. Snap to x, y coordinates to quickly layout floorplans, diagrams and more with the complete set of 2D design tools. The new freehand spline gives you maximum drawing freedom while the new fair curve tool lets you precisely manipulate any spline circle, arc or curve. Use the 3D surface and solid modeling tools to build accurate models that are easy to manipulate and quickly edit. Perfect for architects, illustrators, engineers and more. |
Read more: |
|
Thursday, 22 July 2010 01:29 |
Send sms (worldwide) using www.smsmatrix.com.
More examples at SMS Gateway page.
string MATRIXURL = "http://www.smsmatrix.com/matrix";
string PHONE = "12506063167";
string USERNAME = Server.UrlEncode ("
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
");
string PASSWORD = Server.UrlEncode ("pass72727");
string TXT = Server.UrlEncode ("This is a test, pls ignore");
string q = "username=" + USERNAME +
"&password=" + PASSWORD +
"&phone=" + PHONE +
"&txt=" + TXT;
HttpWebRequest req = (HttpWebRequest)WebRequest.Create (MATRIXURL);
req.Method = "POST";
req.ContentType = "application/x-www-form-urlencoded";
req.ContentLength = q.Length;
StreamWriter streamOut = new StreamWriter(req.GetRequestStream(), System.Text.Encoding.ASCII);
streamOut.Write (q);
streamOut.Close();
StreamReader streamIn = new StreamReader(req.GetResponse().GetResponseStream());
string res = streamIn.ReadToEnd();
Console.WriteLine ("Matrix API Response:\n" + res);
streamIn.Close();
 Read more: |
|
|
Wednesday, 21 July 2010 01:12 |
|
Over the last few months we've been interviewing developers who have worked on widely popular Joomla sites. However, not every successful Joomla developer has sites with a shelf full of awards or 5 million visitors per month.
We're now going to turn our attention to other types of successful web design firms. We're particularly interested in how people make a living with Joomla. In a new series of interviews we're going to investigate how people like you are able to leverage Joomla, start their own businesses, become independent or work to achieve other goals.
First we interviewed Allie Whitney from Global Nomad. She works with unemployed locals on the Tibetan Plateau in western China, providing free training and hiring them to become Joomla web developers.
This week we're talking about a similar topic, interviewing Jen Kramer from 4Web, Inc about how she succeeds with her Joomla business despite living in a small, rural town.
Tell us about 4Web and where you’re located.
We are located in Keene, New Hampshire in the United States. It is a small town of 20,000 people located in the southwestern corner of New Hampshire. Keene is the “big city” in this region. You have to drive 50-60 miles to reach New Hampshire’s largest cities (Concord, Manchester, and Nashua) and roughly 100 miles to Boston. Keene State College is one of our major employers.
4Web is run by Jen has been working with Joomla since the Mambo days. Prior to owning 4Web, Jen worked as a freelancer from 2000-2008 under her previous business, Focused Consulting LLC. Initially she built a lot of Dreamweaver sites but made the switch to Mambo in 2005. Heidi was one of Jen’s star students at Marlboro College Graduate School, where she graduated in 2008. Heidi has worked part-time for 4Web for the past year. Read more: |
|
Thursday, 01 July 2010 04:00 |
 | About [utforma]
A standalone, six channel audio manipulator, for hardware synths, audio inserts, and anything else that can carry a signal. used to create and design new sounds to expand and bring a new life to music and sound. all while doing it on-the-fly.
effects and features included in [utforma]:
- six channel manipulation.
- six effects with mix controls for each channel.
- updated filter control.
- improved ring modulation.
- improved degrade.
- many more features. |
Read more: |
|
|
|
|
<< Start < Prev 1 2 3 4 Next > End >>
|
|
Page 1 of 4 |