Trump Says iPhones Will Get More Expensive. Actually, It's Going to Be Much Worse Than That.

In what seems like an admission that his trade war is neither "good" nor "easy to win," President Donald Trump tweeted over the weekend that prices for Apple products, like iPhones, "may increase because of the massive Tariffs we may be imposing on China."
This kind of honesty is actually a positive step for the administration. Yes, it's misleading to say that the tariffs are being imposed "on China"—tariffs are import taxes paid by consumers, not by foreign producers—but being upfront about how tariffs will increase prices for Americans is a marked improvement over his months of denials, let alone his claim that "tariffs are the greatest."
Still, the Saturday tweet really undersells the potential impact of Trump's plan to slap 25 percent tariffs on another $200 billion of Chinese imports. It is not only Apple products but potentially hundreds of consumer goods that could spike in price—from computers, tablets, and video games to vacuum cleaners, furniture, and children's toys. All just in time for Christmas.
TABLE: You may want to buy these products now ?? before Trump tariffs kick in.
They are primarily supplied by China and are on the 25% tariff list worth $200 billion (coming shortly) or among the remaining $267 billion (threatened by Trump) #ITCdata pic.twitter.com/7b3zCH4RKC
— Trade News Analysis (@TradeNewsCentre) September 8, 2018
In short, American consumers are about to feel the brunt of tariffs in the same way that aluminum- and steel-consuming industries have for months. The first rounds of tariffs focused on industrial goods and raw materials, and they have increased costs without achiving their primary policy goal of on-shoring manufacturing jobs.
Despite the lack of evidence that the tariffs are working—indeed, without understanding why he even wants tariffs in the first place, if Bob Woodward's new book is to be believed—Trump is now doubling down.
Adding 25 percent to the cost of a new iPhone will hike the price of Apple's low-end product to more than $200. If cell phone prices spike, or if there's a hit to Apple stock (a major driver of the stock market as a whole, and a key component of mutual funds held by many average investors as part of retirement accounts and the like), this will quickly go from being an economic problem for Trump to a political one.
But Trump has what he says is an easy solution.
"Make your products in the United States instead of China," he tweeted this weekend. "Start building new plants now."
Even if it were possible for Apple to re-route complex global supply chains that have been years in the making, all to appease Trump's desire for an American-made iPhone, would consumers benefit?
No. An American-made iPhone would cost more than $2,000 at the retail level, according to an analysis by Marketplace.
One interesting detail in that Marketplace report: Cheap Chinese labor, contrary to popular opinion, is not the source of most of the savings achieved by building iPhones in China. Apple pays about $5 per iPhone in labor costs, but building phones in the U.S. would add only about $10 to that total. The real problem with trying to make an all-American iPhone is that cell phone components and parts are sourced all around the world. The pieces that go into an iPhone cost Apple about $190 to puchase, but would easily cost three times as much to produce in the U.S.
Even if it were possible to force, or entice, Apple to make an iPhone in the U.S., you'd end up with a far more expensive product. Or as Michael Froman, a former U.S. trade representative, told Inside Trade reporter Anshu Siripurapu in December:
Froman: "We can make iPhones in this country, completely in this country, but they'll probably cost $3,000 and they won't be available to the single mother who uses it to FaceTime with her kids … People rely on trade in ways that they have no realization of." https://t.co/oTpjquxHus
— Anshu Siripurapu (@AnshuSiripurapu) September 8, 2018
It turns out that Apple knows more about the process of making iPhones than Donald Trump does. Tariffs will hurt American consumers, but they won't make Apple build iPhones in the U.S.—because that would hurt consumers even worse.
What are the best programming languages to learn for a career in coding?
THE IT INDUSTRY is replete with programming languages and choices, but not all of those choices might make for a long-lasting, well-remunerated and secure career.
It's not just certificates and experience that organisations are looking for, either, but also attitudes and evidence of a well-rounded individual. As Bill Gates is reported to have said: "I choose a lazy person to do a hard job. Because a lazy person will find an easy way to do it."
Of course, spending many hours on a couch in front of a TV would not be enough to turn Bill's head. Paradoxically, his ideal candidate would be possessed of endless energy, with a burning desire to find shortcuts and workarounds combined with the skill, stamina and diligence to see the quest for a life of ease through to the end.
Gates's point was that the best engineers are those whose driving urge is to simplify through technology. This is the goal of machine learning for example. Why look for patterns in data yourself when you can train a machine to do it, and do it much better?
"It's a lot about being intelligently lazy - automating everything a computer can do for you," said Katrina McIvor, principal technologist for DevOps at QA, adding that machine learning and AI are some of the biggest technology growth areas at present.
"They are getting a lot of traction under the heading of data science. It all used to be called data mining, so it's not new, the tools are just better these days and the people in companies are more willing to talk about it."
The goal is to make data science simple not necessarily so that anyone could do it using a dashboard, but so new layers can be built on top of a stable platform.
"The Microsoft Machine Learning stuff will let you train a model and predict outcomes via a web service without you needing to write a line of code," said McIvor. "Of course, knowing how to wire things up together is another thing."
Those looking for a job in tech are generally in the business of wiring things up, and there are a few key languages in the data science area, such as Scala, Python and R.
Scala was also mentioned by Ritika Trikha, a researcher at HackerRank, a platform that allows coders to practise their craft and employers to recruit the most promising developers.
"Among the newer languages we're seeing are Swift, Go and Scala," she said. "There's a lot of interest in those right now."
Apache Spark is written in Scala, which makes it popular with data scientists. It is based on the Java Virtual Machine [JVM] and is very compact once you've learned the ropes.
"The bit I particularly like is that a single line of code is an entire class, complete with constructor, getter, setter, toString, hashcodes the works," said McIvor.
"Writing all that [Java] boilerplate was boring, so why not let the compiler do it for you? It's being intelligently lazy again."
That said, learning Scala might be a bit of a leap for many. With its simple syntax, Python may be a better starting off point. Despite being a relatively old language it is still very relevant today.
"Python is amazingly versatile, it's used for coding, infrastructure stuff, general helper scripts and a lot in the AI / data science area as well these days," explained McIvor.
No one ever got fired for buying IBM, as the saying goes, and by the same token no one will go far wrong learning Python or one of the other ‘big four'.
"There are so many new programming languages coming out but the most in demand are still Java, Python, C and C++. These four fundamental pillars are what make up the majority of businesses' code," said Trikha.
But what of JavaScript, the language that StackOverflow currently rates the most popular? Could this be because StackOverflow's readers are disproportionately focused on certain areas?
"Yes, we see JavaScript. It's probably number five in some industries like mobile and gaming, but only number seven or so in security, healthcare or finance," said Trikha.
Rust is an up and coming language that some believe may one day displace C++ in many areas where it dominates currently, but so far it hasn't made much of a dent in industry, Trinkha said.
"I looked into Rust, but a lot of companies are invested in legacy systems and it's incredibly difficult to move all that."
HackerRank has also broken down programming languages by industry.
"So in social media is Java and Python, in healthcare it's C# and Java and in security it's C and C++ that are in demand," Trikha said, adding that there are also differences between large and small companies.
"Larger companies look to problem-solving skills not so much the language skills whereas smaller companies need people ready to code on day one."
Other than the example of a small company desperately trying to find a Lua expert, though, it's more about aptitude than language.
"When you know how to program, the language is almost irrelevant," McIvor said. "It's like driving in a way; a Mercedes will handle differently to a banged up old Ford, but the basics are the same and someone who can use one can use the other."
As an experienced programmer, your employer should be able to help you get up to speed on the bits of a language you need to know she added.
Recent experience is certainly important. HackerRank's research has found that developers with two or more years' experience who put in about 20 hours of practice had a 50 per cent higher chance of being invited to a job interview following a skills assessments than senior engineers with no practice, while self-taught coders with 50 hours recent practice were on a par with developers with more than two years experience.
Aside from practising on online coding sites like HackerRank, developers should get involved in some open source projects, advised McIvor.
"Experience is something hard to quantify. You have to be a confident programmer, even just knowing what type of thing you are looking for and where to find it is half the battle. There are a load of projects that you can try implementing in different languages to give you experience as well. I don't think there is a minimum amount of experience or a maximum, it's confidence and logic," she said.
"Can you read a problem, work out - usually as a picture - the steps for how to get from A to B, and then can you do it in a reasonable way in your language of choosing? Knowing about things like source control and test driven development is a must these days - all things that you will get some practice with if you get involved with the open source projects."
Once you get to the interview or coding test, you need to display that confidence too.
"Communicate your thought processes as much as possible," said former software engineer at Google, Microsoft and Apple and tech hiring consultant Gayle Laakman McDowell, author of the book Cracking the Coding Interview.
"That's something you can definitely prepare for. Get comfortable talking out loud and exposing your thought processes. Whenever you notice yourself being quiet, take a step back and at least give me a headline of your thought processes." µ
Risman Adnan of Samsung on Nurturing Innovation and Agility in Indonesia
Risman Adnan is the director of the Samsung R&D Institute Indonesia. He spoke to InfoQ about his approach to nurturing innovation, agility and creating a culture of craftsmanship.
In it's quest for innovation, Samsung set up an R&D center (SRIN) in Jakarta, Indonesia. In 2014, Adnan moved from Microsoft to Samsung to become director of software R&D. Adnan is a well-known figure in the Indonesian IT industry and one of the driving forces towards innovation and agility. He is a keynote speaker at the first agile Indonesia conference coming up in July.
InfoQ: For those who don’t know you, can you please give us a little background about yourself?
Risman Adnan: I have spent more than 17 years in the Indonesian IT industry and worked in various roles, from software engineer, developer lead, technical evangelism, technical sales, marketing and now in an R&D organization. My journey started from a theoretical physics background and unintentionally I got exposed to the software industry. I consider myself a self-learner with more than casual curiosity on business, math, physics and computing.
InfoQ: When was SRIN established, and what was the main reason for opening a center in Jakarta?
Adnan: Samsung R&D Indonesia (SRIN) was founded in 2012 as an R&D center focused on commercializing services. As part of Samsung’s R&D family, SRIN is one out of 20+ Samsung R&D centers around the world who each strive to support Samsung’s cutting edge technologies through unique and specialized core competences. Since its inception, SRIN has been involved in commercializing app services for the latest Samsung Galaxy devices in regional and global markets. Moving forward, SRIN strives to become R&D center of excellence in Indonesia, focused on commercializing the latest global R&D achievements in mobile app, middleware software, data management and analytic technologies. More about SRIN can be found here.
InfoQ: How did the center develop and grow over the past years?
Adnan: SRIN is all about its people, who create an R&D culture, build competencies and drive contributions (product and IP outcomes) together. It is quite different with other software development organizations as it requires higher creativity, analytic and problem solving skills to be able to innovate. People are the main asset of SRIN; we hire the best talents, build and grow their competencies and contribute to the company. In terms of culture, SRIN is a learning organization at its core. It is in our DNA. We engage our engineers to continuously learn and improve fundamental knowledge on top of software engineering techniques, such as algorithm, operating system, programming language and artificial intelligence (AI). We believe those fundamentals are critically important for advanced technology explorations and SRIN has to build in-house learning capability. As a result, SRIN has developed new competencies in specific areas, such as middleware software, data analytics and AI/deep learning. For IP contribution, SRIN has filed some inventions at the US patent office since the last three years. It is truly fascinating for me to be part of the SRIN journey and experiencing “learn-it-all” progress in the last three years!
infoQ: You set up the SRIN Academy; tell us a bit more about that?
Adnan: Not only in Indonesia- talent shortage happens everywhere in the software industry! Specialized and skilled talents are a rare and expensive commodity. For instance, backend software engineer, framework maker and data scientist. Instead of buying, which does not exist in Indonesia market, we made a conscious decision to build and grow our talents. An interesting fact was, even though Indonesian engineers are not ready from colleges, they are diligent and hungry to learn. Another fact we found, was that learning the fundamentals can not be outsourced or delegated to third parties, it should be part of the culture. Knowing that fact, we developed in-house courses to prepare SRIN engineers and key partners. In each course, we focus to balance between conceptual understanding and required practical skills. Now SRIN Academy has four courses, including Algorithm Data Structure, C++, Java, and Deep Neural Networks. Also since 2016, we have opened SRIN Academy courses for key University partners like BINUS, UI (University of Indonesia) and President University. We strongly believe that our partner ecosystem will play an important role in our long term success.
InfoQ: How would you describe the engineering culture at Samsung?
Adnan: I always describe it as FAST; it is not related to speed (even though we do things faster) but it means Focus, Alignment, Scientific and Talent. Let me elaborate.
Focus. Our work requires groups of people to focus on goals, problems and solutions. The physics of people who do the work are critical. We use common sense to help them focus. First, we have a clear team model and R&R in such a way we can distribute tasks within people skills, capabilities and personal interests. It is not straightforward as some infrastructures needed to be in place such as platform stacks, standard frameworks, and development/test guidelines. SRIN has an SE committee who owns all standards being used in the development lifecycle, also software design engineers (SDE) who develop and maintain code frameworks and automation middleware. During the development phase, SDEs enable software engineers (SWE) to focus on construction based on design and specification defined by Product Owner (PO) and Project Lead (PL). On the testing phase, software quality engineers (SQE) run test cases and provide feedbacks to the development team. It is a very common setup, however, it requires time and maturity to do it well; we learnt it the hard way!
Alignment. Software development is collaborative work in which people interactions and the rhythm of their communications are really important. I named it physics of people. Once a team has clear R&R, next is about alignment, the physics of people that defines how the team flows to make progress. We don’t have secret recipes in SRIN; the whole thing was actually experiments in which we make mistakes (not the same mistakes anyway) and learn. The test of our knowledge is our experiment itself and it is also the sole judge of our engineering “truth”. Our experiments help us to produce our own laws in doing engineering. Our laws fit to the physics of our people. We experiment, imagine, deduce, and guess what next. During experiments, we learn from experts, books, papers, etc. Do you believe that someone else’s process model or practice can help your unique team? We don’t. One thing I noticed is that we are more casual, instead of formal. We have less formal meetings, and encourage more casual discussions where anyone can talk. We can make decision as fast as we fail and make other decisions to make it better. Is “agile” a better word for that?
InfoQ: Sounds agile yes. It also sounds a bit like lean startup, experiment, measure, learn….
Adnan: Scientific. We believe engineering work is the development of effective solutions to practical problems, through the application of scientific knowledge. Both engineering and science involve a mix of design and discovery, creating knowledge through craftsmanship experiments, problem-driven, seeking to understand. Is software engineering different? Our answer is no. We use analytical techniques in the software project life cycle to avoid myths. We can’t control what we can’t measure. In software projects for example, we need to be able to estimate resources, time and risk; but how? Our way is by tracking effort, time, and defect then do some analysis as basis of our estimation. Is that trivial? No. We do experiment, we measure, make hypothesis and run analysis to estimate. It may not be precise because “to engineer is human”. We still work between the quantifiable realm of science and the chaotic realities of being human.
Talent. All companies want to hire and retain the best talents. How to do that in Indonesia? Well, it needs strategy. We always look for people who basically have technical capabilities in some areas, not necessarily programming! Things like experience in specific technologies and what candidates have done before is not really important for us. We hire people who can learn something new and show ability to think creatively. We hire from many backgrounds such as math, physics, electrical engineering and computer science. Initially, we conduct a basic algorithm problem solving test; if passed, we continue with a series of interviews to know more regarding attitude, manner, curiosity and passion. We also have the (bad) habit to test learning capability, like give technical books, asking the candidate to read and tell us what they learned. Once hired, we put them in academy courses to learn the required fundamental topics like algorithm, operating system and programming language. We measure fundamental skill on a monthly basis, especially algorithm problem solving. Furthermore, we treat our people like family and our office as second home. That’s how we retain our talents.
InfoQ: In our earlier talks, you also said that it’s challenging to get people to really come up with innovation (as opposed to copying existing apps). Can you share a bit about that?
Adnan: To innovate creatively is to define precise problems to solve, know many previous concepts, get many ideas then think of a solution comprehensively. The main question will be – what we need to have to be able to think comprehensively? Ideas. How to get ideas? Know many previous concepts related to the problem. Creative thinking happens when the active brain can relate to multi-disciplinary concepts (business, technology, science, user behavior), recognize patterns, build new ideas, propose new models, validate and finally simplify. In fact, many beautiful apps are very simple, but simplicity comes from a complex thinking process with many inputs – inductively or deductively. It requires huge efforts. Can you imagine creative thinking efforts behind Minecraft? Now, copying that app? It sounds easy. It may produce instant results, but may not solve a problem or even worse, address a different problem. We can get inspired by ideas from existing apps, but copying never work. No shortcut for innovation.
InfoQ: What are the important aspects of software craftsmanship that are needed for innovation today, and how do these play out at SRIN?
Adnan: Today, we can wake up in the morning, then take online courses at Stanford or MIT, discuss with experts in Quora, learn open source codes from Github, read lots of papers from Arxiv, etc; all to make our brains active. Any inspired engineer around the world can do that, not only in Silicon Valley. Do you notice its impact to software craftsmanship? Equal opportunity for disruption. What I experienced as common blockers are absence of ambition and confidence to innovate. I skipped competence as with MOOC (massively open online course), we can learn anything and develop it anywhere. In Indonesia, we have resources, tons of STEM graduates per year who are hungry to learn, but without ambition and confidence we can’t do it. I have the luxury to inspire people in SRIN and see good progress every year.
InfoQ: Can you contrast your time at Microsoft with SRIN - what do they have in common and what is different?
Adnan: I spent 10 years in Microsoft and performed many roles. Both Samsung and Microsoft believe people are the greatest asset of the company. Both are investing on local development covering customer, partner and developer ecosystem. I love to see that continue to happen in Indonesia. What I see different are business agility and legacy. Microsoft has a very strong top down planning process, measurable metrics and rhythm of business reviews, which is great for stability. I consider it like taking an MBA for 10 years. Samsung offers a more bottom up approach, listens more to customer voices and space for creative experiments, which produces field agility. Microsoft has a strong legacy on software while Samsung is strong on consumer devices. The software vs hardware legacies translate to different company DNAs. I am honored to experience both and I am happy to see more collaborations between Microsoft and Samsung in the future. Do you know that .NET runs on Tizen OS now? Yes, it is truly exciting for developers to code C# with Visual Studio on Tizen devices!
InfoQ: What do you believe makes Indonesia unique in the global IT space?
Adnan: Indonesia’s IT ecosystem also has legacy. It was started by multinational tech principals who are selling and investing in local partner ecosystem. It was B2B landscape, focused on line of business (LOB) apps development, system integration and deployment because of market demand. On IT resource supply side, Indonesia is one of the biggest countries in Asia, with more than 100k STEM graduates per year. On the consumer side, Indonesia offers a huge opportunity as the 4th most populated country (~260mill population, 60% youth). People are young, social and digital savvy.
Indonesia is unique with high supply of “hungry to learn” people in IT and a huge consumer market. In the last five years, we experience obvious changes from B2B focused to B2C, from project-centric to product and services, from LOB to eCommerce, FinTech and EduTech. The business potential is huge for companies who have learning capabilities and investing on people education. The local market itself is big enough to innovate. Pick one industry in Indonesia then look who are the top players; do you think they already innovate with IT efficiently? They are still very conventional. It sounds like opportunity, right?
infoQ: Yes it does! Since I moved to Indonesia in the middle of last year, I also recognized the IT growth spurt the country is making. It feels like Indonesia is catching up and does it fast. Indonesia seems to be picking up on agile too. I can see that this year, many companies move towards agility. What are some of the things you see as strengths and areas of improvement for agility @Samsung?
Adnan: Yes, I also experience the trend. In Samsung we do not blindly adopt process models in lifecycle of our R&D projects. We consider ourselves as agile team, not because we use SCRUM proposed concepts, but solely based on our organization culture. We adjust it with people readiness and maturity too. We believe “to engineer is human” and that aspect is critically important; in such a way we define our process and strategies to adapt with it, not the other way around. We experience that productivity coming from efficient physics of people and infrastructure that enable them to focus. We design and maintain standard technology stacks and code frameworks to turn our proven practices into reusable engines. We also develop middleware to automate some repetitive development tasks like mobile API creation. All help us to be more efficient and productive. We don’t believe in myths; we do experiments, measure, analyze and improve.
Nothing is perfect and all is just approximation. As R&D we are struggling to keep relevant with rapid progress in science and technology. We do research and development projects at the same time and with the same set of people. We have more ideas to build compared to the experts we have. We have to hire people with higher skillsets compared to what the local market can produce. We can only build instead of buying people capabilities and of course it will take more time. Furthermore, R&D potential depends on capability of local University ecosystem. If you run an R&D center in the US, you can set up partnerships with top labs in Universities. In Indonesia, you have to build from the ground up. All of those aspects impact our agility as a company. However, we believe we are on the right track as we are working with people who are hungry to learn and innovate.
InfoQ: Thanks for the interview!
Risman Adnan will be doing the keynote on Agile Indonesia 2017, which happens on 12 and 13 July in Jakarta.
Comments
Post a Comment