Star Wars [NEW UPDATED]

Star Wars [NEW UPDATED]

Star Wars.

Star Wars.

Star Wars. 

Star Wars.


Star Wars.


Star Wars.


Star Wars Star Wars Star Wars Star Wars. Star Wars Star Wars Star Wars Star Wars. Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars.


Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars Star Wars.


Star Wars.


Star Wars Star Wars Star Wars Star Wars.


———————————————————————————————————————————————————————————————————————Star Wars————————————————————————————————————————————————————–


STAR


WARS


STARWARS.


starwars


Sraw Rats


Star Wars.


STAR WARS STAR WARS STAR WARS STAR WARS STAR WARS STAR WARS STAR WARS 


STAR WARS


starwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwarsstarwars


Star Wars? Star Wars.


Star Wars.


~~Star Wars~~

  • Star Wars
  • Star Wars
  • Star Wars
  • Star Wars
  • Star Wars

Anyword Review: Is It the Right AI Writing Tool For You?

Content creation can get tricky, especially if you’re a team generating marketing content across multiple channels. But what if there was a single platform you could use to instantly develop highly engaging content for your emails, ads, social media captions, and blog articles? Luckily, there is,…

10 Key Takeaways From Sam Altman’s Talk at Stanford

In a recent Q&A session at Stanford University, Sam Altman, the visionary CEO of OpenAI, shared invaluable insights on the future of artificial intelligence and its potential impact on society. As the co-founder of the research organization behind groundbreaking AI models like GPT and DALL-E, Altman’s…

We’re Fascinated With Funko Fusion And Hades II (Feat. Niki Grayson) | GI Show

We’re Fascinated With Funko Fusion And Hades II (Feat. Niki Grayson) | GI Show

In this week’s episode of The Game Informer Show, special guest Niki Grayson (Giant Bomb, If You’re Driving Close Your Eyes) joins Alex and Charles to discuss the wild mix of intellectual property featured in Funko Fusion, the best LEGO games, our time playing the Hades II Technical Test, and Game Informer’s Tales of Kenzara: Zau review. Lastly, we’ve been catching up on new releases and ongoing games, including Fortnite’s collaboration with Avatar: The Last Airbender, Halo Infinite, whimsical rock-climbing in Surmount, and No Rest For The Wicked.

Watch the Video Version:

[embedded content]

Follow us on social media: Alex Van Aken (@itsVanAken), Charles Harte (@ChuckDuck365), Niki Grayson (@Godsewa)

The Game Informer Show is a weekly gaming podcast covering the latest video game news, industry topics, exclusive reveals, and reviews. Join host Alex Van Aken every Thursday to chat about your favorite games – past and present – with Game Informer staff, developers, and special guests from around the industry. Listen on Apple PodcastsSpotify, or your favorite podcast app.

The Game Informer Show – Podcast Timestamps:

00:00:00 – Intro

10:40 – Hades II Technical Test

17:55 – Funko Fusion

33:50 – Fortnite and LEGO Fortnite

45:40 – Halo Infinite

49:10 – Tales of Kenzara: Zau Review and 2024 Metroidvanias

01:03:30 – Dabbling in Surmount and No Rest For The Wicked

Creating bespoke programming languages for efficient visual AI systems

Creating bespoke programming languages for efficient visual AI systems

A single photograph offers glimpses into the creator’s world — their interests and feelings about a subject or space. But what about creators behind the technologies that help to make those images possible? 

MIT Department of Electrical Engineering and Computer Science Associate Professor Jonathan Ragan-Kelley is one such person, who has designed everything from tools for visual effects in movies to the Halide programming language that’s widely used in industry for photo editing and processing. As a researcher with the MIT-IBM Watson AI Lab and the Computer Science and Artificial Intelligence Laboratory, Ragan-Kelley specializes in high-performance, domain-specific programming languages and machine learning that enable 2D and 3D graphics, visual effects, and computational photography.

“The single biggest thrust through a lot of our research is developing new programming languages that make it easier to write programs that run really efficiently on the increasingly complex hardware that is in your computer today,” says Ragan-Kelley. “If we want to keep increasing the computational power we can actually exploit for real applications — from graphics and visual computing to AI — we need to change how we program.”

Finding a middle ground

Over the last two decades, chip designers and programming engineers have witnessed a slowing of Moore’s law and a marked shift from general-purpose computing on CPUs to more varied and specialized computing and processing units like GPUs and accelerators. With this transition comes a trade-off: the ability to run general-purpose code somewhat slowly on CPUs, for faster, more efficient hardware that requires code to be heavily adapted to it and mapped to it with tailored programs and compilers. Newer hardware with improved programming can better support applications like high-bandwidth cellular radio interfaces, decoding highly compressed videos for streaming, and graphics and video processing on power-constrained cellphone cameras, to name a few applications.

“Our work is largely about unlocking the power of the best hardware we can build to deliver as much computational performance and efficiency as possible for these kinds of applications in ways that that traditional programming languages don’t.”

To accomplish this, Ragan-Kelley breaks his work down into two directions. First, he sacrifices generality to capture the structure of particular and important computational problems and exploits that for better computing efficiency. This can be seen in the image-processing language Halide, which he co-developed and has helped to transform the image editing industry in programs like Photoshop. Further, because it is specially designed to quickly handle dense, regular arrays of numbers (tensors), it also works well for neural network computations. The second focus targets automation, specifically how compilers map programs to hardware. One such project with the MIT-IBM Watson AI Lab leverages Exo, a language developed in Ragan-Kelley’s group.

Over the years, researchers have worked doggedly to automate coding with compilers, which can be a black box; however, there’s still a large need for explicit control and tuning by performance engineers. Ragan-Kelley and his group are developing methods that straddle each technique, balancing trade-offs to achieve effective and resource-efficient programming. At the core of many high-performance programs like video game engines or cellphone camera processing are state-of-the-art systems that are largely hand-optimized by human experts in low-level, detailed languages like C, C++, and assembly. Here, engineers make specific choices about how the program will run on the hardware.

Ragan-Kelley notes that programmers can opt for “very painstaking, very unproductive, and very unsafe low-level code,” which could introduce bugs, or “more safe, more productive, higher-level programming interfaces,” that lack the ability to make fine adjustments in a compiler about how the program is run, and usually deliver lower performance. So, his team is trying to find a middle ground. “We’re trying to figure out how to provide control for the key issues that human performance engineers want to be able to control,” says Ragan-Kelley, “so, we’re trying to build a new class of languages that we call user-schedulable languages that give safer and higher-level handles to control what the compiler does or control how the program is optimized.”

Unlocking hardware: high-level and underserved ways

Ragan-Kelley and his research group are tackling this through two lines of work: applying machine learning and modern AI techniques to automatically generate optimized schedules, an interface to the compiler, to achieve better compiler performance. Another uses “exocompilation” that he’s working on with the lab. He describes this method as a way to “turn the compiler inside-out,” with a skeleton of a compiler with controls for human guidance and customization. In addition, his team can add their bespoke schedulers on top, which can help target specialized hardware like machine-learning accelerators from IBM Research. Applications for this work span the gamut: computer vision, object recognition, speech synthesis, image synthesis, speech recognition, text generation (large language models), etc.

A big-picture project of his with the lab takes this another step further, approaching the work through a systems lens. In work led by his advisee and lab intern William Brandon, in collaboration with lab research scientist Rameswar Panda, Ragan-Kelley’s team is rethinking large language models (LLMs), finding ways to change the computation and the model’s programming architecture slightly so that the transformer-based models can run more efficiently on AI hardware without sacrificing accuracy. Their work, Ragan-Kelley says, deviates from the standard ways of thinking in significant ways with potentially large payoffs for cutting costs, improving capabilities, and/or shrinking the LLM to require less memory and run on smaller computers.

It’s this more avant-garde thinking, when it comes to computation efficiency and hardware, that Ragan-Kelley excels at and sees value in, especially in the long term. “I think there are areas [of research] that need to be pursued, but are well-established, or obvious, or are conventional-wisdom enough that lots of people either are already or will pursue them,” he says. “We try to find the ideas that have both large leverage to practically impact the world, and at the same time, are things that wouldn’t necessarily happen, or I think are being underserved relative to their potential by the rest of the community.”

The course that he now teaches, 6.106 (Software Performance Engineering), exemplifies this. About 15 years ago, there was a shift from single to multiple processors in a device that caused many academic programs to begin teaching parallelism. But, as Ragan-Kelley explains, MIT realized the importance of students understanding not only parallelism but also optimizing memory and using specialized hardware to achieve the best performance possible.

“By changing how we program, we can unlock the computational potential of new machines, and make it possible for people to continue to rapidly develop new applications and new ideas that are able to exploit that ever-more complicated and challenging hardware.”

HPI-MIT design research collaboration creates powerful teams

HPI-MIT design research collaboration creates powerful teams

The recent ransomware attack on ChangeHealthcare, which severed the network connecting health care providers, pharmacies, and hospitals with health insurance companies, demonstrates just how disruptive supply chain attacks can be. In this case, it hindered the ability of those providing medical services to submit insurance claims and receive payments.

This sort of attack and other forms of data theft are becoming increasingly common and often target large, multinational corporations through the small and mid-sized vendors in their corporate supply chains, enabling breaks in these enormous systems of interwoven companies.

Cybersecurity researchers at MIT and the Hasso Plattner Institute (HPI) in Potsdam, Germany, are focused on the different organizational security cultures that exist within large corporations and their vendors because it’s that difference that creates vulnerabilities, often due to the lack of emphasis on cybersecurity by the senior leadership in these small to medium-sized enterprises (SMEs).

Keri Pearlson, executive director of Cybersecurity at MIT Sloan (CAMS); Jillian Kwong, a research scientist at CAMS; and Christian Doerr, a professor of cybersecurity and enterprise security at HPI, are co-principal investigators (PIs) on the research project, “Culture and the Supply Chain: Transmitting Shared Values, Attitudes and Beliefs across Cybersecurity Supply Chains.”

Their project was selected in the 2023 inaugural round of grants from the HPI-MIT Designing for Sustainability program, a multiyear partnership funded by HPI and administered by the MIT Morningside Academy for Design (MAD). The program awards about 10 grants annually of up to $200,000 each to multidisciplinary teams with divergent backgrounds in computer science, artificial intelligence, machine learning, engineering, design, architecture, the natural sciences, humanities, and business and management. The 2024 Call for Applications is open through June 3.

Designing for Sustainability grants support scientific research that promotes the United Nations’ Sustainable Development Goals (SDGs) on topics involving sustainable design, innovation, and digital technologies, with teams made up of PIs from both institutions. The PIs on these projects, who have common interests but different strengths, create more powerful teams by working together.

Transmitting shared values, attitudes, and beliefs to improve cybersecurity across supply chains

The MIT and HPI cybersecurity researchers say that most ransomware attacks aren’t reported. Smaller companies hit with ransomware attacks just shut down, because they can’t afford the payment to retrieve their data. This makes it difficult to know just how many attacks and data breaches occur. “As more data and processes move online and into the cloud, it becomes even more important to focus on securing supply chains,” Kwong says. “Investing in cybersecurity allows information to be exchanged freely while keeping data safe. Without it, any progress towards sustainability is stalled.”

One of the first large data breaches in the United States to be widely publicized provides a clear example of how an SME cybersecurity can leave a multinational corporation vulnerable to attack. In 2013, hackers entered the Target Corporation’s own network by obtaining the credentials of a small vendor in its supply chain: a Pennsylvania HVAC company. Through that breach, thieves were able to install malware that stole the financial and personal information of 110 million Target customers, which they sold to card shops on the black market.

To prevent such attacks, SME vendors in a large corporation’s supply chain are required to agree to follow certain security measures, but the SMEs usually don’t have the expertise or training to make good on these cybersecurity promises, leaving their own systems, and therefore any connected to them, vulnerable to attack.

“Right now, organizations are connected economically, but not aligned in terms of organizational culture, values, beliefs, and practices around cybersecurity,” explains Kwong. “Basically, the big companies are realizing the smaller ones are not able to implement all the cybersecurity requirements. We have seen some larger companies address this by reducing requirements or making the process shorter. However, this doesn’t mean companies are more secure; it just lowers the bar for the smaller suppliers to clear it.”

Pearlson emphasizes the importance of board members and senior management taking responsibility for cybersecurity in order to change the culture at SMEs, rather than pushing that down to a single department, IT office, or in some cases, one IT employee.

The research team is using case studies based on interviews, field studies, focus groups, and direct observation of people in their natural work environments to learn how companies engage with vendors, and the specific ways cybersecurity is implemented, or not, in everyday operations. The goal is to create a shared culture around cybersecurity that can be adopted correctly by all vendors in a supply chain.

This approach is in line with the goals of the Charter of Trust Initiative, a partnership of large, multinational corporations formed to establish a better means of implementing cybersecurity in the supply chain network. The HPI-MIT team worked with companies from the Charter of Trust and others last year to understand the impacts of cybersecurity regulation on SME participation in supply chains and develop a conceptual framework to implement changes for stabilizing supply chains.

Cybersecurity is a prerequisite needed to achieve any of the United Nations’ SDGs, explains Kwong. Without secure supply chains, access to key resources and institutions can be abruptly cut off. This could include food, clean water and sanitation, renewable energy, financial systems, health care, education, and resilient infrastructure. Securing supply chains helps enable progress on all SDGs, and the HPI-MIT project specifically supports SMEs, which are a pillar of the U.S. and European economies.

Personalizing product designs while minimizing material waste

In a vastly different Designing for Sustainability joint research project that employs AI with engineering, “Personalizing Product Designs While Minimizing Material Waste” will use AI design software to lay out multiple parts of a pattern on a sheet of plywood, acrylic, or other material, so that they can be laser cut to create new products in real time without wasting material.

Stefanie Mueller, the TIBCO Career Development Associate Professor in the MIT Department of Electrical Engineering and Computer Science and a member of the Computer Science and Artificial Intelligence Laboratory, and Patrick Baudisch, a professor of computer science and chair of the Human Computer Interaction Lab at HPI, are co-PIs on the project. The two have worked together for years; Baudisch was Mueller’s PhD research advisor at HPI.

Baudisch’s lab developed an online design teaching system called Kyub that lets students design 3D objects in pieces that are laser cut from sheets of wood and assembled to become chairs, speaker boxes, radio-controlled aircraft, or even functional musical instruments. For instance, each leg of a chair would consist of four identical vertical pieces attached at the edges to create a hollow-centered column, four of which will provide stability to the chair, even though the material is very lightweight.

“By designing and constructing such furniture, students learn not only design, but also structural engineering,” Baudisch says. “Similarly, by designing and constructing musical instruments, they learn about structural engineering, as well as resonance, types of musical tuning, etc.”

Mueller was at HPI when Baudisch developed the Kyub software, allowing her to observe “how they were developing and making all the design decisions,” she says. “They built a really neat piece for people to quickly design these types of 3D objects.” However, using Kyub for material-efficient design is not fast; in order to fabricate a model, the software has to break the 3D models down into 2D parts and lay these out on sheets of material. This takes time, and makes it difficult to see the impact of design decisions on material use in real-time.

Mueller’s lab at MIT developed software based on a layout algorithm that uses AI to lay out pieces on sheets of material in real time. This allows AI to explore multiple potential layouts while the user is still editing, and thus provide ongoing feedback. “As the user develops their design, Fabricaide decides good placements of parts onto the user’s available materials, provides warnings if the user does not have enough material for a design, and makes suggestions for how the user can resolve insufficient material cases,” according to the project website.

The joint MIT-HPI project integrates Mueller’s AI software with Baudisch’s Kyub software and adds machine learning to train the AI to offer better design suggestions that save material while adhering to the user’s design intent.

“The project is all about minimizing the waste on these materials sheets,” Mueller says. She already envisions the next step in this AI design process: determining how to integrate the laws of physics into the AI’s knowledge base to ensure the structural integrity and stability of objects it designs.

AI-powered startup design for the Anthropocene: Providing guidance for novel enterprises

Through her work with the teams of MITdesignX and its international programs, Svafa Grönfeldt, faculty director of MITdesignX and professor of the practice in MIT MAD, has helped scores of people in startup companies use the tools and methods of design to ensure that the solution a startup proposes actually fits the problem it seeks to solve. This is often called the problem-solution fit.

Grönfeldt and MIT postdoc Norhan Bayomi are now extending this work to incorporate AI into the process, in collaboration with MIT Professor John Fernández and graduate student Tyler Kim. The HPI team includes Professor Gerard de Melo; HPI School of Entrepreneurship Director Frank Pawlitschek; and doctoral student Michael Mansfeld.

“The startup ecosystem is characterized by uncertainty and volatility compounded by growing uncertainties in climate and planetary systems,” Grönfeldt says. “Therefore, there is an urgent need for a robust model that can objectively predict startup success and guide design for the Anthropocene.”

While startup-success forecasting is gaining popularity, it currently focuses on aiding venture capitalists in selecting companies to fund, rather than guiding the startups in the design of their products, services and business plans.

“The coupling of climate and environmental priorities with startup agendas requires deeper analytics for effective enterprise design,” Grönfeldt says. The project aims to explore whether AI-augmented decision-support systems can enhance startup-success forecasting.

“We’re trying to develop a machine learning approach that will give a forecasting of probability of success based on a number of parameters, including the type of business model proposed, how the team came together, the team members’ backgrounds and skill sets, the market and industry sector they’re working in and the problem-solution fit,” says Bayomi, who works with Fernández in the MIT Environmental Solutions Initiative. The two are co-founders of the startup Lamarr.AI, which employs robotics and AI to help reduce the carbon dioxide impact of the built environment.

The team is studying “how company founders make decisions across four key areas, starting from the opportunity recognition, how they are selecting the team members, how they are selecting the business model, identifying the most automatic strategy, all the way through the product market fit to gain an understanding of the key governing parameters in each of these areas,” explains Bayomi.

The team is “also developing a large language model that will guide the selection of the business model by using large datasets from different companies in Germany and the U.S. We train the model based on the specific industry sector, such as a technology solution or a data solution, to find what would be the most suitable business model that would increase the success probability of a company,” she says.

The project falls under several of the United Nations’ Sustainable Development Goals, including economic growth, innovation and infrastructure, sustainable cities and communities, and climate action.

Furthering the goals of the HPI-MIT Joint Research Program

These three diverse projects all advance the mission of the HPI-MIT collaboration. MIT MAD aims to use design to transform learning, catalyze innovation, and empower society by inspiring people from all disciplines to interweave design into problem-solving. HPI uses digital engineering concentrated on the development and research of user-oriented innovations for all areas of life.

Interdisciplinary teams with members from both institutions are encouraged to develop and submit proposals for ambitious, sustainable projects that use design strategically to generate measurable, impactful solutions to the world’s problems.

Mastering cyber threat prevention and maximizing opportunities – CyberTalk

Mastering cyber threat prevention and maximizing opportunities – CyberTalk

Gary Landau has been leading IT and information security teams for over 25 years as part of startups as well as large global organizations. He is currently a Field CISO with Unisys Security Services, where he supports companies in many different industries. His mantra is “keep making it better” and he is passionate about continuously improving system reliability, performance, and security.

In this interview with Gary Landau, we dive into how Managed Security Service Providers (MSSPs) can play a vital role in helping organizations navigate the current cyber security landscape and how they can help you optimize your cyber security strategy.

If you missed Cyber Talk’s past interview with Gary Landau, click here.

As an MSSP, how do you accurately assess what is happening in cyber security today?

We have the advantage of aggregated information from our collective customers. With visibility into security issues across industries, with different types of regulated information and with information pulled from different geographies, we have an expansive understanding of the various cyber security issues that our customers are facing, and experience in discerning which solutions will work best for a specific client.

In which industries or sectors are you seeing the highest demand for MSSP services, and why do you think that is?

I don’t see one type of industry seeking out MSSP services more than another. But what I do see is that select MSSP services are in greater demand than others. One service that I see in higher demand consists of 24/7 SOC services. Security monitoring and response needs to be 24/7, as it takes a lot of work to run a global SOC and most organizations can’t do it on their own. Part of what makes managing an SOC difficult for most organizations is the staff turnover, especially in a 24/7 security service. For the purpose of maintaining quality and consistency of services, having an MSSP take care of it can make a lot of sense.

What are the biggest challenges or obstacles that MSSPs face in meeting the cyber security needs of their clients?

One of the biggest challenges is storage space — so a lot of clients try to be sparing about how much log data they collect and retain. The more that they collect and retain, the more costly it can be. There’s a cost for ingesting data as well as storing it — mostly with SIEM solutions. So, clients try to make decisions about what not to collect or how to avoid retaining data for excessive lengths of time.

However, every time there’s an incident, those same customers lament that they didn’t have the logs available to do a thorough investigation into how the issue got started or where it spread to. After an incident, a lot of organizations regret that they didn’t collect those logs. It’s a cost-benefit analysis, of course, and they must decide what level of risk is acceptable. If that decision is to forego collecting some logs, then if an incident occurs, they need to be able to justify why they made such a decision. If they aren’t prepared to justify it, then they need to collect the logs.

Can you share some success stories or examples of how your MSSP has helped organizations overcome specific cyber security challenges?

One example is from when Unisys helped a city prepare to host the Superbowl by improving the city’s security posture. This involved collaborating with both local officials and the Department of Homeland Security to ensure cyber security across a vast number of areas.

Another example is our work with the California State University System in support of the largest PeopleSoft installation in the nation; where Cal State houses their HR, finance and student information systems in the cloud. We help them protect their sensitive data with data masking and many other tools and processes. For example, we protect them from ransomware with an immutable data vaulting solution. We keep their cloud environment secure by continually monitoring and driving towards 100% compliance with the recommended security settings, as outlined in the NIST800-53 and ISO27001 benchmarks.

What is your MSSP’s long-term vision for supporting organizations’ cyber security needs as the threat landscape continues to grow?

As an MSSP, Unisys does in-depth assessments to identify cyber security gaps, and then implements and manages advanced cyber security safeguards. Our assessments are continuous, so that our security safeguards are evolving as threats change. However, our focus goes beyond just cyber security. Our vision is to improve businesses and business technology through cloud adoption and application modernization. Cyber security is just a part of making this happen.

Is there anything else that you would like to share with our C-level audience?

C-level leaders should be realistic about their organization’s strengths, weaknesses, capacity and timelines. I recommend looking at where teams are struggling and to address corresponding issues first. Security is not something to procrastinate on. For organizations that want to build up internal capacity in certain areas, working with an MSSP sooner rather than later could save them money in the long-run. Not only can an MSSP take the stress off of teams and enable in-house staff to do a better job of what they already do well, but MSSPs simultaneously improve the overall security posture for the organization, letting everyone rest a little easier.

The Legend Of Zelda: Majora’s Mask Part 13 | Super Replay

The Legend Of Zelda: Majora’s Mask Part 13 | Super Replay

After The Legend of Zelda: Ocarina of Time reinvented the series in 3D and became its new gold standard, Nintendo followed up with a surreal sequel in Majora’s Mask. Set two months after the events of Ocarina, Link finds himself transported to an alternate version of Hyrule called Termina and must prevent a very angry moon from crashing into the Earth over the course of three constantly repeating days. Majora’s Mask’s unique structure and bizarre tone have earned it legions of passionate defenders and detractors, and one long-time Zelda fan is going to experience it for the first time to see where he lands on that spectrum.

Join Marcus Stewart and Kyle Hilliard today and each Friday on Twitch at 2 p.m. CT as they gradually work their way through the entire game until Termina is saved. Archived episodes will be uploaded each Saturday on our second YouTube channel Game Informer Shows, which you can watch both above and by clicking the links below. 

Part 1 – Plenty of Time
Part 2 – The Bear
Part 3 – Deku Ball Z
Part 4 – Pig Out
Part 5 – The Was a Bad Choice!
Part 6 – Ray Darmani
Part 7 – Curl and Pound
Part 8 – Almost a Flamethrower
Part 9 – Take Me Higher
Part 10 – Time Juice
Part 11 – The One About Joey
Part 12 – Ugly Country

[embedded content]

If you enjoy our livestreams but haven’t subscribed to our Twitch channel, know that doing so not only gives you notifications and access to special emotes. You’ll also be granted entry to the official Game Informer Discord channel, where our welcoming community members, moderators, and staff gather to talk games, entertainment, food, and organize hangouts! Be sure to also follow our second YouTube channel, Game Informer Shows, to watch other Replay episodes as well as Twitch archives of GI Live and more. 

MIT conductive concrete consortium cements five-year research agreement with Japanese industry

The MIT Electron-conductive Cement-based Materials Hub (EC^3 Hub), an outgrowth of the MIT Concrete Sustainability Hub (CSHub), has been established by a five-year sponsored research agreement with the Aizawa Concrete Corp. In particular, the EC^3 Hub will investigate the infrastructure applications of multifunctional concrete — concrete having capacities beyond serving as a structural element, such as functioning as a “battery” for renewable energy

Enabled by the MIT Industrial Liaison Program, the newly formed EC^3 Hub represents a large industry-academia collaboration between the MIT CSHub, researchers across MIT, and a Japanese industry consortium led by Aizawa Concrete, a leader in the more sustainable development of concrete structures, which is funding the effort.  

Under this agreement, the EC^3 Hub will focus on two key areas of research: developing self-heating pavement systems and energy storage solutions for sustainable infrastructure systems. “It is an honor for Aizawa Concrete to be associated with the scaling up of this transformational technology from MIT labs to the industrial scale,” says Aizawa Concrete CEO Yoshihiro Aizawa. “This is a project we believe will have a fundamental impact not only on the decarbonization of the industry, but on our societies at large.” 

By running current through carbon black-doped concrete pavements, the EC^3 Hub’s technology could allow cities and municipalities to de-ice road and sidewalk surfaces at scale, improving safety for drivers and pedestrians in icy conditions. The potential for concrete to store energy from renewable sources — a topic widely covered by news outlets — could allow concrete to serve as a “battery” for technologies such as solar, wind, and tidal power generation, which cannot produce a consistent amount of energy (for example, when a cloudy day inhibits a solar panel’s output). Due to the scarcity of the ingredients used in many batteries, such as lithium-ion cells, this technology offers an alternative for renewable energy storage at scale. 

MIT conductive concrete consortium cements five-year research agreement with Japanese industry

Carbon black doped concrete pavements can have current run through them to heat their surfaces, allowing for de-icing. If implemented for city roads and sidewalks, this technology could have benefits for pedestrian and vehicular safety.

Photo courtesy of the MIT EC^3 Hub and Aizawa Concrete.


MIT conductive concrete consortium cements five-year research agreement with Japanese industry

Professor Admir Masic, EC^3 Hub’s founding faculty director, demonstrates the self-heating capability of carbon black doped concrete pavements with a laser thermometer, showing the difference between the pavement surface temperature and the ambient temperature.

Photo courtesy of the MIT EC^3 Hub and Aizawa Concrete.


MIT conductive concrete consortium cements five-year research agreement with Japanese industry

A charged carbon-cement supercapacitor powers multiple LED lights and is connected to a multimeter to measure the system’s voltage at 12 volts.

Photo courtesy of the MIT EC^3 Hub and Aizawa Concrete.


Regarding the collaborative research agreement, the EC^3 Hub’s founding faculty director, Professor Admir Masic, notes that “this is the type of investment in our new conductive cement-based materials technology which will propel it from our lab bench onto the infrastructure market.” Masic is also an associate professor in the MIT Department of Civil and Environmental Engineering, as well as a principal investigator within the MIT CSHub, among other appointments.

For the April 11 signing of the agreement, Masic was joined in Fukushima, Japan, by MIT colleagues Franz-Josef Ulm, a professor of Civil and Environmental Engineering and faculty director of the MIT CSHub; Yang Shao-Horn, the JR East Professor of Engineering, professor of mechanical engineering, and professor of materials science and engineering; and Jewan Bae, director of MIT Corporate Relations. Ulm and Masic will co-direct the EC^3 Hub.

The EC^3 Hub envisions a close collaboration between MIT engineers and scientists as well as the Aizawa-led Japanese industry consortium for the development of breakthrough innovations for multifunctional infrastructure systems. In addition to higher-strength materials, these systems may be implemented for a variety of novel functions such as roads capable of charging electric vehicles as they drive along them.

Members of the EC^3 Hub will engage with the active stakeholder community within the MIT CSHub to accelerate the industry’s transition to carbon neutrality. The EC^3 Hub will also open opportunities for the MIT community to engage with the large infrastructure industry sector for decarbonization through innovation.