|
Top Stories
iPhone on Ulitzer
As a diversion from its high-profile “who-knows-where-it-will-end”
dogfight with Gizmodo over an errant iPhone prototype, Apple has posted a
longish open letter on its web site over the signature of its CEO Steve Jobs
reiterating all the reasons why Apple has no use for Adobe’s Flash
technology.
Steve – or his ghost writer – says Adobe mischaracterizes the Apple ban
when it says it’s business-driven and only meant to protect the Apple App
Store. He claims it’s technology-driven.
“Flash,” he says, “was created during the PC era – for PCs and mice.
Flash is a successful business for Adobe, and we can understand why they want
to push it beyond PCs. But the mobile era is about low-power devices, touch
interfaces and open web standards – all areas where Flash falls short.”
Flash, he ticks off, is closed and 100% proprietary; highly insecure; crashes
Ma... (more)
SYS-CON Events announced today that Adaptivity, the IT transformation
company, has been named "Platinum Plus Sponsor" of SYS-CON's 5th
International Cloud Expo (www.CloudComputingExpo.com), which will take place
on April 19-21, 2010, at the Jacob Javits Convention Center in New York City.
Adaptivity's CEO Tony Bishop (http://tonybishop.ulitzer.com) will be offering
major thought leadership on Day Two of the 3-day event in a Morning Keynote.
Read Exclusive Cloud Computing Journal Q&A; with Tony Bishop here.
Cloud Expo was announced on February 24, 2007, the day the term "cloud
computing" was coined. That same year, the first Cloud Expo took place in New
York City with 450 delegates. Next April, Cloud Expo is returning to New York
City with more than 5,000 delegates and over 100 sponsors and exhibitors.
The three-day event will attract more than 5,000 delegates from 48 co... (more)
SYS-CON Events announced today that the 8th International Cloud Expo will
take place June 6-9, 2011, in New York City.
The International Cloud Computing Conference & Expo series is the world's
leading Cloud-focused event and is held three times a year, in New York,
Silicon Valley and in Europe. Over 600 corporate sponsors and 10,000 industry
professionals have participated in Cloud Computing Expo since its inception,
more than all other Cloud-related events put together.
Cloud Computing Expo 2011 East
Call for Papers Deadline November 30, 2010 - SUBMIT YOUR SPEAKING PROPOSAL
TODAY!
The four-day event will offer a rich array of sessions led by exceptional
speakers about the business and technical value of cloud computing with more
than 150 sponsors and exhibitors and over 5,000 estimated delegates from well
over 48 different countries.
Explore Cloud Expo Sponsorship &... (more)
Click Here to Save $800 at Cloud Expo New York !
Cloud Expo, Inc. announced on Thursday that Cloud Expo 2011 New York, the 8th
International Cloud Computing Conference & Expo, will take place June 6-9,
2011, at the Javits Center in New York City.
Cloud Expo - International Cloud Computing Conference & Expo series is the
world’s leading Cloud-focused event and is held in New York, Silicon
Valley, Prague, Tokyo, and Hong-Kong.
Over 900 corporate sponsors and more than 65,000 industry professionals have
participated in Cloud Expo since its inception, tenfold more than all other
Cloud-related events put together.
Click Here to Save $800 at Cloud Expo New York !
"Cloud Expo was announced on February 24, 2007, the day the term ‘cloud
computing' was coined," said Fuat Kircaali, Chairman and Founder of Cloud
Expo, Inc. "Cloud has become synonymous with ‘computing' and ‘soft... (more)
If you've programmed in a modern programming language (Java, C, JavaScript,
or even stored procedure languages), you've probably heard of exception
handling via try/catch statements. ColdFusion supports the same capability.
If you're new to using them, I'll explain how they're used, and even
experienced programmers may learn a thing or two about CF's particular use of
try/catch exception handling.
This is the fourth in a series on error handling (see CFDJ, Vol. 2, issues 10
and 12, and Vol. 3, issue 2). In the three previous installments, we've
focused on handling errors at the page level. Something goes wrong, and you
want to do something other than have the user see the typical CF error
message. That rather cryptic, black-on-white message is great for developers
but it's not useful to end users, and we discussed several ways to improve on
that.
In this article, w... (more)
Behind every cloud service or cloud-based solution, there are real people...
A robust ecosystem of solutions providers has emerged around cloud computing.
But who are the CEOs & CTOs behind those providers, who are the internal and
external entrepreneurs driving companies involved in the Cloud, who are the
leading engineers, developers, analysts, researchers, marketing
professionals, authors...who, in short, are the people behind the cloud?
This list will be updated weekly between now and November 4-7, 2013, when
13th Cloud Expo | Cloud Expo Silicon Valley opens its doors in the Santa
Clara Convention Center, in the heart of California's Silicon Valley. Here
are some highly prominent "Cloud People" to kick off with...
RANDY BIAS | @randybias
"Randy Bias is visionary. He sees things others don't." [Emphasis added.]
That is how Mårten Mickos puts it, as succinctly as ever.... (more)
Sometimes I take for granted just how cool ColdFusion really is! The other
day one of my programmers asked me how to do what I thought was a fairly easy
task.
When I showed him the four lines of CF code he needed, he said, "ColdFusion
rocks! It would have taken me 50 lines in PHP to do the same thing!" What
could I say, other than "Yep"? Below are a few lines of code that I hope will
make your life easier.
Q:How can we prevent a browser from caching the content of our Web pages? For
example, our content is constantly changing; if a user browses a page, goes
on to other pages, and then uses the back button to return to a previous
page, we don't want the user seeing the same content he or she saw the first
time - we want the user to see the updated content on that page. Can we do
this?
A:Absolutely! Most browsers do cache page content to enhance the performance
of s... (more)
I’ve been around software for 20 years now. Looking back, I have mixed
feelings about the progress we’ve made. The end results have been amazing
but the process of building software hasn’t fundamentally changed since the
80s. In fact, I see us make some of the same mistakes over and over again.
One of the common anti-patterns is over-relying on tools and frameworks
instead of inventing new programming models.
Layers of abstraction are fundamental to software. Some layers are defined
through programming models, e.g., machine language, assembly language, 3GLs,
JSP. Others are defined through a combination of tools and frameworks, e.g.,
MFC and Visual Studio on top of C++. There is a limit to how high we can
raise a level of abstraction through tools and frameworks alone. At some
point, a new programming model is the best way forward.
Here are some examples: CASE tools ... (more)
I’d like to use this opportunity and invite Flex developers living in
Europe to attend our Advanced Flex Master Class in Brussels, Belgium on March
1 and 2, 2010.
This question we get on almost every new client project: “We’re
struggling with handling of null values for numeric data types in Flex/Java
projects.
Every time there’s an update, we end up replacing the original nulls with
zeros when the user didn’t actually change that value.
Have you guys come up with a silver bullet for handling numeric nulls?”
Consider a Java method with a Double parameter. You pass uninitialized
ActionScript Number, that is, Number.NaN. What will BlazeDS deserialize
(unmarshal)? Double.NaN.
At this point your Java code may use something like
(value==Double.NaN)?null:value, capitalizing on the fact that information
about special value of NaN had been delivered from your client code t... (more)
When a new version of a software is released, the old version lives for a
while and its creators usually care about supporting it. Yesterday, after
reading about the release of Cairngorm 3, it’s clear that Adobe Consulting
ignores this rule.
For those who are not following Cairngorm evolution, I want to remind that
there was a framework called Cairngorm 2, that was a library of classes
(built on Model-View-Controller architecture) to be included in the Flex
application. I never agreed with the architecture of Cairngorm 2 which was
acting as a Crazy Glue and lead to generation of monolithic applications
based on global singletons. People who follow my writings or were attending
my presentations at various conferences know that during the last four years
I was openly stating that Cairngorm 2 has more cons than pros. For example,
here's the just one of of these occasi... (more)
Thursday, July 29, 2010
Woodcliff Lake, New Jersey
To the President of Syria, Mr. and Mrs. Bashar al-Assad
Mr. and Mrs. President Bashar al-Assad:
At the tender age of 17 months my severely ill daughter Sofia, an American
citizen, was abducted by her mother on Monday, July 26, in Istanbul, Turkey,
and taken to Syria.
Fox News: ▸ video ▸ story
I was informed yesterday by Sofia's mother that she will not be coming back
to the United States nor will she allow Sofia to return home.
Sofia has been diagnosed with a severe medical condition that requires
immediate treatment in the United States. It was scheduled to start on July
27, 2010, in New Jersey, the day after her abduction and was supposed to last
until she reaches the age of 3.
Any delay in the urgently needed treatment will result in a life-long
disability for Sofia and make her dependent for the whole of her a... (more)
|
@ThingsExpo Stories By Liz McMillan  Digital Transformation (DX) is not a "one-size-fits all" strategy. Each organization needs to develop its own unique, long-term DX plan. It must do so by realizing that we now live in a data-driven age, and that technologies such as Cloud Computing, Big Data, the IoT, Cognitive Computing, and Blockchain are only tools. In her general session at 21st Cloud Expo, Rebecca Wanta explained how the strategy must focus on DX and include a commitment from top management to create great IT jobs, monitor ... Feb. 3, 2018 12:00 PM EST Reads: 2,186 | By Yeshim Deniz  DX World EXPO, LLC, a Lighthouse Point, Florida-based startup trade show producer and the creator of "DXWorldEXPO® - Digital Transformation Conference & Expo" has announced its executive management team. The team is headed by Levent Selamoglu, who has been named CEO. "Now is the time for a truly global DX event, to bring together the leading minds from the technology world in a conversation about Digital Transformation," he said in making the announcement. Feb. 3, 2018 12:00 PM EST Reads: 1,959 | By Liz McMillan  "Cloud Academy is an enterprise training platform for the cloud, specifically public clouds. We offer guided learning experiences on AWS, Azure, Google Cloud and all the surrounding methodologies and technologies that you need to know and your teams need to know in order to leverage the full benefits of the cloud," explained Alex Brower, VP of Marketing at Cloud Academy, in this SYS-CON.tv interview at 21st Cloud Expo, held Oct 31 – Nov 2, 2017, at the Santa Clara Convention Center in Santa Clar... Feb. 3, 2018 10:45 AM EST Reads: 2,658 | By Ram Sonagara  The IoT Will Grow: In what might be the most obvious prediction of the decade, the IoT will continue to expand next year, with more and more devices coming online every single day. What isn’t so obvious about this prediction: where that growth will occur. The retail, healthcare, and industrial/supply chain industries will likely see the greatest growth. Forrester Research has predicted the IoT will become “the backbone” of customer value as it continues to grow. It is no surprise that retail is ... Feb. 1, 2018 06:00 AM EST Reads: 879 | By Elizabeth White  "Space Monkey by Vivent Smart Home is a product that is a distributed cloud-based edge storage network. Vivent Smart Home, our parent company, is a smart home provider that places a lot of hard drives across homes in North America," explained JT Olds, Director of Engineering, and Brandon Crowfeather, Product Manager, at Vivint Smart Home, in this SYS-CON.tv interview at @ThingsExpo, held Oct 31 – Nov 2, 2017, at the Santa Clara Convention Center in Santa Clara, CA. Dec. 31, 2017 12:00 PM EST Reads: 2,634 | By Pat Romanski  SYS-CON Events announced today that Conference Guru has been named “Media Sponsor” of the 22nd International Cloud Expo, which will take place on June 5-7, 2018, at the Javits Center in New York, NY.
A valuable conference experience generates new contacts, sales leads, potential strategic partners and potential investors; helps gather competitive intelligence and even provides inspiration for new products and services. Conference Guru works with conference organizers to pass great deals to gre... Dec. 30, 2017 11:00 AM EST Reads: 2,421 | By Pat Romanski  The Internet of Things will challenge the status quo of how IT and development organizations operate. Or will it? Certainly the fog layer of IoT requires special insights about data ontology, security and transactional integrity. But the developmental challenges are the same: People, Process and Platform. In his session at @ThingsExpo, Craig Sproule, CEO of Metavine, demonstrated how to move beyond today's coding paradigm and shared the must-have mindsets for removing complexity from the develop... Dec. 30, 2017 08:30 AM EST Reads: 15,331 | By Liz McMillan  In his Opening Keynote at 21st Cloud Expo, John Considine, General Manager of IBM Cloud Infrastructure, led attendees through the exciting evolution of the cloud. He looked at this major disruption from the perspective of technology, business models, and what this means for enterprises of all sizes. John Considine is General Manager of Cloud Infrastructure Services at IBM. In that role he is responsible for leading IBM’s public cloud infrastructure including strategy, development, and offering m... Dec. 29, 2017 12:00 PM EST Reads: 3,505 | By Liz McMillan  "Evatronix provides design services to companies that need to integrate the IoT technology in their products but they don't necessarily have the expertise, knowledge and design team to do so," explained Adam Morawiec, VP of Business Development at Evatronix, in this SYS-CON.tv interview at @ThingsExpo, held Oct 31 – Nov 2, 2017, at the Santa Clara Convention Center in Santa Clara, CA. Dec. 29, 2017 08:00 AM EST Reads: 3,683 | By Pat Romanski  To get the most out of their data, successful companies are not focusing on queries and data lakes, they are actively integrating analytics into their operations with a data-first application development approach. Real-time adjustments to improve revenues, reduce costs, or mitigate risk rely on applications that minimize latency on a variety of data sources. In his session at @BigDataExpo, Jack Norris, Senior Vice President, Data and Applications at MapR Technologies, reviewed best practices to ... Dec. 28, 2017 02:00 PM EST Reads: 4,775 | By Liz McMillan  Widespread fragmentation is stalling the growth of the IIoT and making it difficult for partners to work together. The number of software platforms, apps, hardware and connectivity standards is creating paralysis among businesses that are afraid of being locked into a solution.
EdgeX Foundry is unifying the community around a common IoT edge framework and an ecosystem of interoperable components. Dec. 24, 2017 01:45 PM EST Reads: 2,658 | By Elizabeth White  Large industrial manufacturing organizations are adopting the agile principles of cloud software companies.
The industrial manufacturing development process has not scaled over time. Now that design CAD teams are geographically distributed, centralizing their work is key. With large multi-gigabyte projects, outdated tools have stifled industrial team agility, time-to-market milestones, and impacted P&L; stakeholders. Dec. 23, 2017 10:00 AM EST Reads: 2,584 | By Elizabeth White  "Akvelon is a software development company and we also provide consultancy services to folks who are looking to scale or accelerate their engineering roadmaps," explained Jeremiah Mothersell, Marketing Manager at Akvelon, in this SYS-CON.tv interview at 21st Cloud Expo, held Oct 31 – Nov 2, 2017, at the Santa Clara Convention Center in Santa Clara, CA. Dec. 22, 2017 11:00 AM EST Reads: 2,070 | By Elizabeth White  "IBM is really all in on blockchain. We take a look at sort of the history of blockchain ledger technologies. It started out with bitcoin, Ethereum, and IBM evaluated these particular blockchain technologies and found they were anonymous and permissionless and that many companies were looking for permissioned blockchain," stated René Bostic, Technical VP of the IBM Cloud Unit in North America, in this SYS-CON.tv interview at 21st Cloud Expo, held Oct 31 – Nov 2, 2017, at the Santa Clara Conventi... Dec. 18, 2017 03:45 PM EST Reads: 3,689 | By Elizabeth White  In his session at 21st Cloud Expo, Carl J. Levine, Senior Technical Evangelist for NS1, will objectively discuss how DNS is used to solve Digital Transformation challenges in large SaaS applications, CDNs, AdTech platforms, and other demanding use cases. Carl J. Levine is the Senior Technical Evangelist for NS1. A veteran of the Internet Infrastructure space, he has over a decade of experience with startups, networking protocols and Internet infrastructure, combined with the unique ability to it... Dec. 18, 2017 01:30 PM EST Reads: 3,731 | By Elizabeth White  22nd International Cloud Expo, taking place June 5-7, 2018, at the Javits Center in New York City, NY, and co-located with the 1st DXWorld Expo will feature technical sessions from a rock star conference faculty and the leading industry players in the world. Cloud computing is now being embraced by a majority of enterprises of all sizes. Yesterday's debate about public vs. private has transformed into the reality of hybrid cloud: a recent survey shows that 74% of enterprises have a hybrid cloud ... Dec. 18, 2017 01:00 PM EST Reads: 5,575 | By Pat Romanski  Gemini is Yahoo’s native and search advertising platform. To ensure the quality of a complex distributed system that spans multiple products and components and across various desktop websites and mobile app and web experiences – both Yahoo owned and operated and third-party syndication (supply), with complex interaction with more than a billion users and numerous advertisers globally (demand) – it becomes imperative to automate a set of end-to-end tests 24x7 to detect bugs and regression.
In th... Dec. 17, 2017 02:00 PM EST Reads: 2,701 | By Elizabeth White  "MobiDev is a software development company and we do complex, custom software development for everybody from entrepreneurs to large enterprises," explained Alan Winters, U.S. Head of Business Development at MobiDev, in this SYS-CON.tv interview at 21st Cloud Expo, held Oct 31 – Nov 2, 2017, at the Santa Clara Convention Center in Santa Clara, CA. Dec. 17, 2017 10:00 AM EST Reads: 2,821 | By Liz McMillan  Coca-Cola’s Google powered digital signage system lays the groundwork for a more valuable connection between Coke and its customers. Digital signs pair software with high-resolution displays so that a message can be changed instantly based on what the operator wants to communicate or sell. In their Day 3 Keynote at 21st Cloud Expo, Greg Chambers, Global Group Director, Digital Innovation, Coca-Cola, and Vidya Nagarajan, a Senior Product Manager at Google, discussed how from store operations and ... Dec. 15, 2017 11:00 AM EST Reads: 3,410 | By Elizabeth White  "There's plenty of bandwidth out there but it's never in the right place. So what Cedexis does is uses data to work out the best pathways to get data from the origin to the person who wants to get it," explained Simon Jones, Evangelist and Head of Marketing at Cedexis, in this SYS-CON.tv interview at 21st Cloud Expo, held Oct 31 – Nov 2, 2017, at the Santa Clara Convention Center in Santa Clara, CA. Dec. 14, 2017 04:00 PM EST Reads: 2,490 |
|
|
|