Laughing Hyena
  • Home
  • Hyena Games
  • Esports
  • NFT Gaming
  • Crypto Trends
  • Game Reviews
  • Game Updates
  • GameFi Guides
  • Shop
Tag:

process

Decrypt logo
GameFi Guides

US Housing Regulator to Study Crypto Holdings in Mortgage Qualification Process

by admin June 24, 2025



In brief

  • The FHFA will examine the impact of crypto holdings on mortgage qualifications in the U.S.
  • A Trump donor and meme stock investor, Pulte has long supported digital assets, holding investments in Bitcoin and Solana.
  • Pulte joined the FHFA earlier this year and was sworn in as director in March.

The U.S. Federal Housing Finance Agency will examine how crypto holdings might be considered in the mortgage qualification process, its director, Bill Pulte, said Monday.

“We will study the usage of cryptocurrency holdings as it relates to qualifying for mortgages,” Pulte announced on X.

Further details on how crypto would be assessed were not provided. The FHFA has been approached for comment.

The FHFA is the independent regulator of key aspects of the U.S. housing market, including Fannie Mae, Freddie Mac, and the Federal Home Loan Banks. 

It was created in the wake of the 2008 financial crisis to ensure entities operate safely and provide reliable funding for housing finance.

Pulte was sworn in as director of the FHFA on March 14 following his nomination by President Donald Trump.

Pulte, the founder of investment firm Pulte Capital Partners, is the grandson and namesake of William Pulte, the founder of Pulte Homes, the third-largest homebuilder in the U.S.

In addition to advocating for the inclusion of crypto in FHFA policy, Pulte has his own investments in digital assets.



His financial disclosure earlier this year shows holdings of between $500,001 and $1,000,000 in both Bitcoin and Solana. 

He also holds shares in MARA, formerly Marathon Digital Holdings, a major bitcoin mining company.

In addition to crypto, he has also held so-called meme stocks such as GameStop and Bed Bath & Beyond. He has invested in Tesla, Palantir, and several companies owned by YouTube content creator MrBeast.

Pulte entered the crypto market in 2019, publicly revealing that he had purchased 11 BTC and announcing that he would give away crypto to his followers on X.

According to OpenSecrets, Pulte donated $6,600 to Donald Trump’s re-election campaign in 2024, as well as contributions to Trump’s Save America PAC and the Republican National Committee.

Edited by Sebastian Sinclair

Daily Debrief Newsletter

Start every day with the top news stories right now, plus original features, a podcast, videos and more.



Source link

June 24, 2025 0 comments
0 FacebookTwitterPinterestEmail
Process management via the Linux terminal
Gaming Gear

How To Kill a Process in the Linux terminal

by admin June 9, 2025



In this how-to we’ll look at various ways of using the terminal emulator to identify processes and how to kill them. A process can be an application or script running on your Linux machine. Sometimes a process can crash or become a memory hog and this is when we need to step in and “kill” the process. As ever, there are a multitude of tools that we can use to do this. We will use a variety of approaches and tools to identify and kill the processes.

While you become accustomed to these commands, it’s important to take care that you don’t kill a process which results in you losing work. Wherever possible use an application that isn’t currently in use on your machine as an example of a process to kill.

All the commands in this how-to will work on most Linux machines. We’ve used a Ubuntu 20.04 install but you could run this how-to on a Raspberry Pi. All of the how-to is performed via the Terminal. You can open a terminal window on most Linux machines by pressing ctrl, alt and t.


You may like

How to Kill a Known Application in Linux 

(Image credit: Tom’s Hardware)

To begin, let’s open a software application and then, in the terminal, use the killall command to kill the application. We have used Inkscape, the free and open source vector graphics package as an example, but it doesn’t really matter what you use, just so long as you aren’t depending on it for anything at the current time.

Using the killall command kills all processes linked to the named application. Later we will look at using the kill command to kill a specific process.

1. Launch Inkscape, or another test application, from the system gui.

2. In the terminal, use the killall command to kill all Inkscape processes. You should see that Inkscape closes immediately when this command is issued.

Get Tom’s Hardware’s best news and in-depth reviews, straight to your inbox.

killall inkscape

Identifying Different Processes in Linux

(Image credit: Tom’s Hardware)

Often, software applications have numerous processes running and it can be useful to try and work out which one is likely causing the problem. For example, it could be one browser window rather than all of Chromium or Firefox.Then you can close the problematic process while leaving the rest of the app running. We can use the top tool in the terminal to look at, interact and then kill the rogue processes.

1. Launch the top tool in the terminal. When it’s launched, you will see the terminal populate with information regarding all the processes and their status. The second line of the top screen shows the total number of tasks, which are currently running and which are sleeping, stopped or zombie status. Below this you will see a list of processes and this information will refresh at a default of once every three seconds.

top

2. Press i to constrain the current processes list to those currently active. This can be very useful if you are only interested in current running processes and makes the list easier to read.

3. Press z to add color to the top interface to make it easier to read. Because this is a text based interface, adding color can help distinguish between labels and data.

4. Launch Inkscape or another non essential application.

5. Find the listing for Inkscape and note the PID. The PID is the number assigned to identify the process and they are listed in the first column of the top output. In our example the PID for inkscape was 4582 but it will be different each time Inkscape is running.

6. Press k and then type the PID number to kill the process.

7. Press ENTER and you should see a message “Send pid 4582 signal [15/sigterm]” which is confirming you want to kill this process. Press “enter” once more to confirm and kill the process.

8. Press q to close top and return to the terminal emulator. Often, you will want to look at top for a quick glimpse at the processes and then return to the terminal.

Killing an Individual Process Outside of top

(Image credit: Tom’s Hardware)

Occasionally you might want to kill an individual process outside of top. We can use the PID number found via top in combination with the kill command to do this. Note that the killall command we used earlier won’t work with an individual PID.

1. Launch Inkscape or another application. The choice of application doesn’t really matter, just make sure you aren’t working in the application.

2. Launch top in the terminal. Press i and z to constrain the results and add color to the top theme.

top

3. Identify and note the PID for the application to kill. In our example the PID for Inkscape was 4582.

4. Exit top by pressing q.

5. Use the kill command and the PID number to kill the Inkscape process from the terminal emulator. Replace the example PID value below with your own identified PID.

kill 4582

Using top provides an excellent set of detective tools to identify misbehaving processes and can often allow you to clinically close an unresponsive process whilst possibly saving other data in an application.

Killing Processes Using the ps Process Report

There is an alternative to top. We can use the ps command, designed to produce a report of all the running processes.

1. Launch Inkscape or another application. The choice of application doesn’t really matter, just make sure you aren’t working in the application.

2. Run the ps command with two arguments. The -e argument shows all the processes and the -f argument sets the format to the system standard syntax.

ps -ef

(Image credit: Tom’s Hardware)

3. Use grep to filter the report. searching just for “inkscape”. The typical ps -ef output is extremely dense, packed with dozens of running processes. Using a filter we can search for the application name. The PID is the second column, just after the username. You may see multiple PIDs for the application.The one that we are interested in just shows the application name.

ps -ef | grep inkscape

(Image credit: Tom’s Hardware)

4. Use the kill command along with the PID to kill the process. In our case Inkscape had a PID of 19166.

kill 19166

Process management is a key Linux skill to learn and it’s worth taking the time to practice these approaches before you need to deploy them in a real situation.



Source link

June 9, 2025 0 comments
0 FacebookTwitterPinterestEmail
ASML
Product Reviews

TSMC reiterates it doesn’t need High-NA EUV for 1.4nm-class process technology

by admin May 29, 2025



TSMC reiterated its long-known stance on next-generation High-NA EUV lithography tools at its European Technology Symposium in Amsterdam. The company does not require these highest-end lithography systems for its next-generation process technologies, including A16 (1.6nm-class) and A14 (1.4nm-class) process technologies. To that end, TSMC will not adopt High-NA EUV tools for these nodes. 

“ People seems to always interested when TSMC going to use High-NA, I think our answer is very simple,” said Kevin Zhang, Deputy Co-COO and Senior Vice President of Business Development and Global Sales, at the event. “Whenever we see High-NA will provide meaningful, measurable benefit, we will do it. With A14, the enhancement I talked about earlier is very substantial without using High-NA. So, our technology team continues to find a way to extend the life of current EUV while harvesting the scaling benefit.”

TSMC’s A14 process relies on the company’s second-generation nanosheet gate-all-around transistors, along with a new standard cell architecture. According to TSMC, A14 provides up to 15% higher performance at the same power and complexity, or alternatively, 25% to 30% lower power consumption at the same frequency. In terms of transistor density, A14 achieves a 20% increase compared to N2 for mixed logic/SRAM/analog configurations and up to 23% when it comes to pure logic.


You may like

Such performance, power, and transistor density increases represent the so-called ‘full node advantage’, and yet, TSMC does not need next-generation High-NA EUV lithography tools to produce chips with predictable yields and desired performance and power characteristics on its A16 and A14 process technologies. One should keep in mind that TSMC’s A16 is essentially N2P with a Super Power Rail (SPR) backside power delivery network. As TSMC does not need High-NA EUV tools for N2 and N2P, it will not need them for A16 either. By contrast, A14 is an all-new node that will be used for mass production in 2028, so the fact that TSMC does not need High-NA for this one is quite remarkable.

When asked whether A14 heavily relies on multi-patterning, Zhang responded that he could not comment on specifics, but said that TSMC’s technology team had found a way to produce chips on a 1.4nm node without using High-NA EUV tools that provide an 8nm resolution compared to a 13.5nm resolution of Low-NA EUV systems.

“This is a great innovation from our technology team,” said Zhang. “As long as they continue to find a way, obviously, we do not have to use High-NA EUV. Eventually, we will use it at some point. It is just so we need to find a right interception point, provide the maximum benefit, maximum return on investment.”

It is noteworthy that TSMC’s A14 will be succeeded by A14 with SPR backside power delivery in 2029, and it does not appear that the foundry will require High-NA EUV tools for this iteration either. To that end, it looks like, unlike Intel, which is set to start using next-generation EUV lithography machines with its 14A manufacturing technology to reduce the number of EUV exposures (read: multipatterning) and process steps in 2027 – 2028, TSMC has no plans to use High-NA EUV for mass production until at least 2030, or perhaps even later.

Get Tom’s Hardware’s best news and in-depth reviews, straight to your inbox.

Follow Tom’s Hardware on Google News to get our up-to-date news, analysis, and reviews in your feeds. Make sure to click the Follow button.



Source link

May 29, 2025 0 comments
0 FacebookTwitterPinterestEmail

Categories

  • Crypto Trends (990)
  • Esports (745)
  • Game Reviews (690)
  • Game Updates (870)
  • GameFi Guides (981)
  • Gaming Gear (936)
  • NFT Gaming (964)
  • Product Reviews (926)
  • Uncategorized (1)

Recent Posts

  • 3,019,050,686,372 Shiba Inu (SHIB) in 24 Hours: Recovery Around Corner?
  • Custodia Chief Doubts TradFi’s Ability To Handle Crypto Bear Market
  • 15 Best White Noise Machines (2025): Lectrofan, Snooz, Hatch, and More
  • Best Altcoins Make Gains as Arthur Hayes Predicts Ethereum to $20,000
  • The Division 2: Survivors Announced, Ubisoft Says It’s “Your Baby”

Recent Posts

  • 3,019,050,686,372 Shiba Inu (SHIB) in 24 Hours: Recovery Around Corner?

    August 24, 2025
  • Custodia Chief Doubts TradFi’s Ability To Handle Crypto Bear Market

    August 24, 2025
  • 15 Best White Noise Machines (2025): Lectrofan, Snooz, Hatch, and More

    August 24, 2025
  • Best Altcoins Make Gains as Arthur Hayes Predicts Ethereum to $20,000

    August 24, 2025
  • The Division 2: Survivors Announced, Ubisoft Says It’s “Your Baby”

    August 24, 2025

Newsletter

Subscribe my Newsletter for new blog posts, tips & new photos. Let's stay updated!

About me

Welcome to Laughinghyena.io, your ultimate destination for the latest in blockchain gaming and gaming products. We’re passionate about the future of gaming, where decentralized technology empowers players to own, trade, and thrive in virtual worlds.

Recent Posts

  • 3,019,050,686,372 Shiba Inu (SHIB) in 24 Hours: Recovery Around Corner?

    August 24, 2025
  • Custodia Chief Doubts TradFi’s Ability To Handle Crypto Bear Market

    August 24, 2025

Newsletter

Subscribe my Newsletter for new blog posts, tips & new photos. Let's stay updated!

@2025 laughinghyena- All Right Reserved. Designed and Developed by Pro


Back To Top
Laughing Hyena
  • Home
  • Hyena Games
  • Esports
  • NFT Gaming
  • Crypto Trends
  • Game Reviews
  • Game Updates
  • GameFi Guides
  • Shop

Shopping Cart

Close

No products in the cart.

Close