Former President Trump has said he will testify at his upcoming hush money trial in New York City.
“I’m testifying. I tell the truth. I mean, all I can do is tell the truth,” Trump told reporters at a press conference at Mar-a-Lago on Friday. “And the truth is, that there’s no case.”
He’s set to appear at the trial, which stemmed from accusations that he falsified business records to cover up a payment to adult film star Stormy Daniels during the 2016 election, on Monday.
The ex-president and current 2024 White House candidate made the announcement alongside Speaker Mike Johnson, R-Fla., who was in Palm Beach to roll out a legislative package aimed at bolstering election integrity.
SEEKING WORK | Italy (GMT+1) | Remote Full-stack developer with 8 years of experience. Available part-time or full-time, solo or as part of a small team. I can work with Node.js, Clojure and Zig. I use GCP (certified) and Cloudflare for most of my projects. Email: giacomo@giacomodebidda.com Site/Blog: https://www.giacomodebidda.com/ Free consultation: https://cal.com/giacomodebidda/30min Note: if you … Continue reading New comment by jackdbd in "Ask HN: Freelancer? Seeking freelancer? (February 2023)"
Imagine running a retail business without knowing how much you’re paying your wholesaler for goods. Or running a restaurant without looking at the price of your ingredients. Or constructing homes without looking at the price of raw materials… you get the idea.
That lack of transparency would be frightening, but hey, things could still work out, right?
Well, let’s up the stakes.
Imagine that, on top of not knowing exactly how much you were paying for your *inputs*, you also didn’t know if you would have consistent and continued *access* to your wholesaler, your food supplier, or your building materials. That would almost certainly induce high blood pressure, stomach ulcers, and mild insomnia.
In the world of private credit (this is basically business credit for *all* companies that aren’t publicly traded behemoths or small businesses), it’s not only normal but *expected* that getting and maintaining access to debt capital (one of the key inputs for running any business!) will be opaque, error-prone, and hard to operationalize. In other words, supply chain uncertainty is the dismal reality in middle-market finance.
Private credit is enormous (add up all the VC dollars spent last year and you’d still be short of the amount of private credit issued over the same period), unavoidable, and broken.
That means credit access–the fuel or primary *financial input* for most medium-sized businesses–is hard to price, access, report on, and predict.
And yet it doesn’t have to be that way; the data and operational issues of private credit have been solved in other domains (e.g., CRMs for Sales, infrastructure tooling for devs, EMRs for hospitals). What’s missing is a software layer for business finance.
Finley has built the system of record for private credit. We plug into all borrower source systems and automate reporting and analysis for private credit lenders. The result is full transparency into the *cost* and *availability* of capital.
We’re a team of builders, designers, finance experts, engineers, and systems thinkers from top companies in finance and technology, and we’re backed by leading investors like Y Combinator and Bain Capital Ventures.
We’re two years into our journey and our software helps companies manage over $3 billion in private credit, but it’s still Day 1.
The challenges we’re taking on will reshape the economy over the next decade, and we’d love to partner with team members who share our passion for innovation and company-building.
Hi, I have 4 years of experience as a backend developer and now looking for an async remote job. I do communication mostly in slack for my past and current work. I have experience working with US people. No timezone issue because we communicate asynchronously. I mostly work on web apps and CLI apps.
SEO keywords are vital to building high-quality content. Plus, you can get to know your target market better and give you valuable search data. Simplify your keyword research process now with an seo keyword generator. You will learn: Understand seo keywords, from what it is to their importance Know how to use an seo keyword … Continue reading Supercharge Your SEO with A Keyword Generator
Behind every great website or application is a lot of coding. When that code is heavy or overly complex, it can slow down website speed and increase bounce rates. This is why a lot of marketers are excited about a new user interface from .NET called Blazor.
The name is a combination of “browser” and the .NET markup syntax Razor, for those familiar with it.
What is Blazor, and what do you need to know about it? Here’s a quick run-down that even non-developers can understand.
What Is Blazor?
Blazor is a user interface that allows developers to build front-end applications using C#, HTML, and Razor templates. You can build components and pages that then run on a server or directly on a browser. It was built by the .NET team and is completely open-source and free for anyone to use.
The use of templates, C#, and HTML makes developing easier and, in many cases, faster.
What Are Blazor Apps?
One of the platform’s key components is Blazor apps, which allow devs to add features without coding every single step. It is a bit similar to the way a WYSIWYG website builder allows users to build a website without coding at all.
In this case, however, it lets devs code without JavaScript.
Blazor can be run in two ways—on the server or using WebAssembly, which allows you to run it directly on most browsers.
There are pros and cons to both. Using WebAssembly, you’ll enjoy a fast UX that is supported offline and can use a CDN. However, the initial load time can be slow, and you may need to call the API, which can slow things down.
If you choose to go with the server route, you’ll find onboarding is a bit easier, and load and render times are faster. However, your app won’t work offline, and changes can cause major latency issues. Also, it can be difficult to scale apps because each user has their connection to the server.
Why You Should Use Blazor
Blazor allows developers to write the client-side of code in C# or HTML, which means you don’t have to know JavaScript or other languages. This makes it easier for a single developer to work on a project. It can also make it more manageable to delegate tasks to team members since they only need to know one coding language.
Since the same code is used on the client and server side of an application, the code only needs to be written once—which can save you tons of time.
Server-side rendering comes standard, which is great for SEO. This allows bots from search engines to easily crawl your code and your site. Server-side rendering improves load time, so when a website loads, it takes a few seconds to show up on-screen. This duration can be reduced if the server sends all the data needed to render the page to the browser before it loads.
Using HTML and C# also reduces the amount of JavaScript on an application, which can increase load times and reduce bounce rates.
How Does Blazor Work?
Blazor works by combining C#, HTML, and apps to make application development easier. It can do nearly everything JavaScript can do, but you don’t have to know JavaScript.
It uses Razor templates to create components that produce browser-renderable HTML and CSS. It’s the same as any other browser content: pure, semantic, and accessible HTML and CSS.
This means you can use all CSS features, including media queries for responsive design, and CSS custom properties.
This video from dotNETConf walks you through how to build a full-stack web app:
I’ll also go through how to set it up in a further section.
What Is Blazor Used For?
Blazor is used to build web-based applications. This can include mobile apps, webpages, and anything else you can build with JavaScript.
The framework allows you to complete a number of common development tasks, such as rendering components and HTML, fetching data over HTTP, and client-side routing.
When used on a browser, it has full access to the browser’s JavaScript APIs. As a result, Blazor apps can use JavaScript functions from .NET methods and also .NET methods from JavaScript functions.
For cases where the framework doesn’t have a specific API or component, or if developers want to work with the JavaScript ecosystem, then JavaScript interop is used.
How to Setup a Blazor Project
Now that you understand the basics of Blazor, let’s talk about how to use the program. As I mentioned above, it is a free, open-source program, so you won’t need to pay to use it. You also have access to the source code through GitHub, if that’s your thing.
You’ll need two things to create a project: the platform and Visual Studio 2019 or above.
Here’s how to get started:
Step 1: Download and install Blazor from the Microsoft page. Click the “Get started” button.
Step 2: Install Visual Studio, if you don’t already have it. This will let you do that actual coding. This may take a few minutes to install and load.
Step 3: Run a command prompt and run > dotnet command. This will verify everything is installed correctly. If it is ready to use, you will get a response like this:
Step 4: Next, open Visual Studio and select “Create a new project.”
Step 5: Select ASP.NET. If you don’t already have the ASP.NET Core Web Application installed in Visual Studio, you’ll need to add it.
Step 5: In “Configure new project” add a name, then select “Create.”
Step 6: In the “Create a new ASP.NET Core web application” box, choose “.NET Core and ASP.NET Core 5.0” in the dropdown menu, then “Web Application” and “Create.”
You now have a project set up. Now you can start using Blazor apps to see how they work. While the actual coding is beyond the scope of this article, I highly recommend this tutorial from Microsoft.
If you want to play around with without downloading a ton of stuff, you can use this browser-based tutorial.
Frequently Asked Questions About Blazor
Is Blazor Worth Using?
It depends on your needs. It is ideal for programmers who don’t like JavaScript, don’t know JavaScript, or don’t want to slow down their site with tons of JavaScript. However, it does require the whole runtime to be shipped and may not work with non-standard browsers in some cases.
Is the Blazor Server Fast?
In general, yes. However, all users have a persistent bi-directional connection to the server, which can cause issues for larger applications.
Is Blazor Easy to Learn?
If you already know C#, you’ll have an easy time picking up Blazor. It’s easy, fast, and integrates well with the .NET ecosystem
How Much Does Blazor Cost?
Blazor is part of the open-source .NET platform, which means there are no fees or costs, even if you use it commercially. It was built and is maintained by a community of contributors.
Does Blazor Matter for Marketing?
Blazor is unlikely to have a daily impact for the average marketer, but there are some benefits marketers should be aware of.
It may make it easier (and faster) for development teams to create new pages or applications. It also makes it easier for search engine bots to crawl, which is a bonus for digital marketing.
What Is the Difference Between Blazor and Razor?
Razor is a template markup syntax for .NET. Blazor (which combines the word “browser” and Razor) is a framework that can run multiple types of code and deliver it to servers or browsers. Essentially, it is an evolution of Razor.
It depends on your needs. It is ideal for programmers who don’t like JavaScript, don’t know JavaScript, or don’t want to slow down their site with tons of JavaScript. However, it does require the whole runtime to be shipped and may not work with non-standard browsers in some cases.
”
}
}
, {
“@type”: “Question”,
“name”: “Is the Blazor Server Fast?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: ”
In general, yes. However, all users have a persistent bi-directional connection to the server, which can cause issues for larger applications.
If you already know C#, you’ll have an easy time picking up Blazor. It’s easy, fast, and integrates well with the .NET ecosystem
”
}
}
, {
“@type”: “Question”,
“name”: “How Much Does Blazor Cost?”,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: ”
Blazor is part of the open-source .NET platform, which means there are no fees or costs, even if you use it commercially. It was built and is maintained by a community of contributors.
Blazor is unlikely to have a daily impact for the average marketer, but there are some benefits marketers should be aware of.
It may make it easier (and faster) for development teams to create new pages or applications. It also makes it easier for search engine bots to crawl, which is a bonus for digital marketing.
”
}
}
, {
“@type”: “Question”,
“name”: “What Is the Difference Between Blazor and Razor? “,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: ”
Razor is a template markup syntax for .NET. Blazor (which combines the word “browser” and Razor) is a framework that can run multiple types of code and deliver it to servers or browsers. Essentially, it is an evolution of Razor.
”
}
}
]
}
Blazor Conclusion
If you are looking for a way to streamline the development process—and improve page speed a bit—Blazor is a great platform. While it’s more than the average marketer needs to build a website or launch a landing page, it’s great news for developers.
The user-friendly platform helps streamline workflows, reduces coding language limitations, and makes it easier for dev teams to get work done.
Have you tried Blazor yet? What do you like best about it?
GDPR Cookie Consent Agreement
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish.AcceptRejectRead More
Privacy & Cookies Policy
Privacy Overview
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.