source-code

[ follow ]
CodeProject
1 month ago
Web design

Analyzing and Customizing the Detailed Mechanisms of WPF Slider Control

Understanding and applying WPF controls can lead to more elegant CustomControl designs
The source code of WPF is openly available on GitHub for analysis
Privacy professionals
Medium
3 months ago
Privacy professionals

8 Tools to Protect Sensitive Data from Unintended Leakage

Private data being leaked into source code is a serious threat that can harm businesses
Organizations can use tools like Piiano Flows to protect sensitive information from becoming public
Medium
3 months ago
Privacy professionals

8 Tools to Protect Sensitive Data from Unintended Leakage

Private data being leaked into source code is a serious threat that can harm businesses
Organizations can use tools like Piiano Flows to protect sensitive information from becoming public
SecurityWeek
1 year ago
Privacy professionals

'Nexus' Android Trojan Targets 450 Financial Applications

The Nexus Android banking trojan is being promoted on underground forums as a new botnet, under the malware-as-a-service (MaaS) business model, according to fraud prevention firm Cleafy.The trojan was initially announced in June 2022, but was active months before that.Starting January 2023, however, its authors started promoting it as a botnet, at $3,000 per month for a MaaS subscription.
ComputerWeekly.com
1 year ago
Privacy professionals

Ransomware gangs harass victims to 'bypass' backups | Computer Weekly

Ransomware gangs are becoming increasingly assertive and aggressive in their approaches to victims, resorting to high-pressure tactics including campaigns of targeted harassment to extort money, even from those that have paid attention to ransomware prevention and maintain backups of their data.This is according to a report published today by Palo Alto Networks' Unit 42 incident response and threat intelligence department.
SecurityWeek
1 year ago
Privacy professionals

Documents, Code, Business Systems Accessed in Reddit Hack

Reddit on Thursday informed users that its systems were hacked as a result of what the company described as a sophisticated and highly targeted phishing attack aimed at employees.According to Reddit, the intrusion was detected on February 5.The hackers gained access to some internal documents, source code, internal dashboards and business systems.
morePrivacy professionals
Information security
Medium
3 months ago
Information security

8 Tools to Protect Sensitive Data from Unintended Leakage

Private data being leaked into source code is a serious threat that can harm businesses
Organizations can use tools like Piiano Flows to protect sensitive information from becoming public
TechRepublic
9 months ago
Information security

Threatening botnets can be created with little code experience, Akamai finds

1. Botnets are a major threat to the security of websites and networks and are becoming increasingly sophisticated.
2. Akamai's Bot Manager Premier is an advanced tool that can help organizations detect and mitigate botnet activity.
3. Akamai's Bot Manager Premier provides insights and analysis
SecurityWeek
10 months ago
Information security

New Babuk-Based Ransomware Targeting Organizations in US, Korea

An emerging threat actor has been targeting organizations in the US and South Korea with a new ransomware family based on leaked Babuk source code, Cisco's Talos research unit reports.Dubbed RA Group and active since April 2023, the gang has compromised at least three organizations in the US and one in South Korea, spanning across the insurance, manufacturing, pharmaceuticals, and wealth management sectors.
Ars Technica
10 months ago
Information security

Leak of MSI UEFI signing keys stokes fears of "doomsday" supply chain attack

A ransomware intrusion on hardware manufacturer Micro-Star International, better known as MSI, is stoking concerns of devastating supply chain attacks that could inject malicious updates that have been signed with company signing keys that are trusted by a huge base of end-user devices, a researcher said.
moreInformation security
Intellectual property law
Patently-O
9 months ago
Intellectual property law

Providing a Detailed Explanation of the Evidence

by Dennis Crouch
The decision in Parus Holdings, Inc. v. Google LLC, - F.4th - (Fed.Cir.2023), underscores the importance of adhering to the PTAB procedural requirements, particularly the prohibition against incorporating arguments by reference from one document into another during an IPR, as stipulated in 37 C.F.R. § 42.6(a)(3).
Intellectual Property Law Blog
10 months ago
Intellectual property law

Solving Open Source Problems with AI Code Generators - Legal Issues and Solutions, Part 1

AI-based code generators are a powerful application of generative AI.These tools leverage AI to assist code developers by using AI models to auto-complete or suggest code based on developer inputs or tests.These tools raise at least three types of potential legal issues:
Does training AI models using open source code constitutes infringement or, even if the use is licensed, does doing so require compliance with conditions or restrictions of the open source licenses?
Intellectual Property Law Blog
10 months ago
Intellectual property law

Solving Open Source Problems with AI Code Generators - Legal Issues and Solutions, Part 2

AI-based code generators are a powerful application of generative AI.These tools leverage AI to assist code developers by using AI models to auto-complete or suggest code based on developer inputs or tests.These tools raise at least three types of potential legal issues:
Does training AI models using open source code constitutes infringement or, even if the use is licensed, does doing so require compliance with conditions or restrictions of the open source licenses?
Federal Circuit Narrows Scope for Copyrighting Software Function | Patently-O
Patently-O
11 months ago
Intellectual property law

Federal Circuit Narrows Scope for Copyrighting Software Function

by Dennis Crouch
The copyright lawsuit between the data-software company SAS Institute and its scrappy copycat World Programming has been interesting to follow over the past several years, and the Federal Circuit has now issued a controversial opinion in the case.SAS Inst.v. World Programming Ltd., - F.4th - (Fed.
moreIntellectual property law
Vue
Raymondcamden
9 months ago
Vue

Using Goodreads Data in Eleventy - Update

Yesterday I shared a blog post where I detailed how to take your data export from Goodreads and make use of it in an Eleventy site.While describing the process, I mentioned that I wasn't terribly confident in the approach.Things got even worse when I tried to make use of the Google Books API as well.
Medium
9 months ago
Vue

Mythical Angular-Angular Myth: Component styles

This is a very short and interesting subject to me.In Angular, every component can have its own attached styles.Styles can be in the same file or in separated files, similar to the templates.In addition, we can encapsulate styles.There are two methods of encapsulation: Emulated and ShadowDom.This article describes both types of encapsulation and their influence on the performance of the whole app.
Medium
10 months ago
Vue

How to Use 'keyof' 'typeof' in TypeScript

A usage of 'keyof' and 'typeof'
Before getting into the sorting function, let's review the basics of keyof and typeof in TyepScript.TypeScript typeof returns a type of variable or property.Ifyou use it with an object, it generates a type that has the same fields and types as the object.// typeofconst a = { value: 100, text: "Test_a" } // type { value: number, text: string }const b: typeof a = { value: 200, text: "Test_b" }const c: typeof a = { value: 300, text: 300 } // Type 'number' is not assignable to type 'string'
The keyof operator takes an object type and produces a string or numeric literal union of its key.
Medium
10 months ago
Vue

Create a GitHub Public Repository Listing App

In this article, I'm going to write about how to use React to create a simple web app that lists users' public GitHub repositories.Without further ado, let's begin.Step 1
Using npx create-react-app my-app, construct a basic React app.Step 2
Create the files Profile.js and Search.jsas shown above.Step 3
Now, use npm add react-router-dom to install react-router-dom.
Medium
10 months ago
Vue

How to Display a List of GitHub Commit Messages and Contributor Commit Graph in a React App

In this article, we'll explore how to obtain commits and commit counts for each contributor, create a list of commit messages, and display a graph of commits relative to contributors.We'll begin by setting up a basic React application.In the App.js file, we'll create inputs for the username and repository to search on GitHub.
Medium
10 months ago
Vue

Firebase Auth with React: Implement Email/Password and Google Sign-in

Firebase Authentication is a powerful tool for managing user authentication in web and mobile applications.With Firebase, developers can easily integrate authentication methods into their applications without having to build complex authentication systems from scratch.In this write-up, we will explore how to implement Firebase Authentication in a React application, specifically focusing on the Email/Password and Google Sign-in methods.
moreVue
Electronic Frontier Foundation
9 months ago
Privacy professionals

Victory! New Jersey Court Rules Police Must Give Defendant the Facial Recognition Algorithms Used to Identify Him

1. A New Jersey court has ruled that police must provide defendants with access to facial recognition technology when it is used in their case.
2. The ruling is a major victory for civil liberties advocates, as it reinforces the right to due process and the ability to challenge evidence used in criminal cases.
3. This ruling is an important step in the ongoing effort to ensure privacy and civil liberties are respected in the digital age.
news.bitcoin.com
10 months ago
Cryptocurrency

Bitcoin Makes Progress in Clearing Backlog, but Lightning Network Capacity and Channels Dropped Amid Congestion Bitcoin News

In the past week, the Bitcoin network has made progress in resolving its congestion issues.On May 7, 2023, the number of unconfirmed transactions reached an all-time high of over 500,000 transfers, causing a major backlog.However, as of today, that number has been reduced to 263,406.Currently, 184 blocks need to be cleared to process the majority of transactions that are still stuck in the network's mempool.
news.bitcoin.com
10 months ago
Cryptocurrency

Sleeping Bitcoin Wallet Awakens: $3.7M Worth of BTC Suddenly Moves After Close to 12 Years of Dormancy Bitcoin News

On May 11, 2023, a long-inactive bitcoin wallet sprang to life and transferred a substantial 139.7 bitcoin worth $3.7 million.The address, established on June 19, 2011, has contributed to the year's total of 1,125.37 bitcoin moved from dormant 2010 and 2011 wallets.139.7 Bitcoin Worth $3.7 Million Suddenly Moves From Idle Wallet A vintage wallet created on June 19, 2011, suddenly relocated 139.7 BTC, equivalent to $3.7 million at the time of transfer, on Thursday, May 11, 2023.
news.bitcoin.com
10 months ago
Cryptocurrency

BRC20 Token Economy Thrives Amidst Crypto Downturn, Surging 53% in Five Days Bitcoin News

Despite the broader crypto-economy experiencing a downward trajectory, dropping 1.59% in the past 24 hours and hovering around $1.11 trillion, the BRC20 token economy has bucked this trend, expanding from $279 million to over $427 million within five days.Impervious to Market Slump, BRC20 Tokens Defy the Odds Built atop the Bitcoin blockchain, the recently established BRC20 token economy has seen significant growth in the past five days.
DevOps.com
1 year ago
Artificial intelligence

Tabnine Extends Generative AI Alliance With Google

By: Mike Vizard on
Tabnine has extended its alliance with Google Cloud to advance the adoption of generative artificial intelligence (AI) to automate the writing and testing of code.The generative AI platform provider has already developed its own large language model that is hosted on Google Cloud.
news.bitcoin.com
1 year ago
Cryptocurrency

Lido's Staked Ethereum Token STETH Reaches $10.3B Market Capitalization, Ranks Ninth by Market Valuation Defi Bitcoin News

With the crypto economy experiencing significant gains over the past week and the price of ethereum rising 11.9%, the market capitalization of Lido's staked ether has increased to $10.3 billion.This recent increase has propelled the token's overall market valuation to the ninth-largest position, according to the crypto market capitalization aggregation website coingecko.com.
GSMArena.com
9 months ago
Mobile UX

Motorola Razr 40 series is launching soon in India

The Motorola Razr 40 and Razr 40 Ultra unveiled a couple of days ago will launch soon in India.This revelation comes from Motorola's Indian branch, which took to Twitter to tease the debut of its latest foldables in the world's second-largest smartphone market.Motorola is yet to explicitly confirm whether it will launch both Razr 40 series smartphones in India or just one.
Talkpython
9 months ago
Python

How To Keep A Secret in Python Apps

Think about the different APIs and databases your application works with.Every one of them requires either an API key or a database connection string that itself contains a password.How do you let your application access this sensitive information without storing it in source code or putting in other compromising locations?
Tripwire
9 months ago
Information security

Decade-old critical vulnerability in Jetpack patched on millions of WordPress websites

/
1. Millions of WordPress websites have been vulnerable to a critical 10-year-old vulnerability in Jetpack, which has now been patched.
2. Attackers could have exploited the vulnerability to gain access to user information, including passwords, and even take control of the server hosting the WordPress website.
Eed3si9n
10 months ago
Scala

tree-sitter-scala 0.20.0

1. Tree Sitter Scala 0.20.0 is a powerful and versatile parser for Scala code that can be used to create compilers, linters, text editors, and more.
2. Tree Sitter Scala 0.20.0 is built using the Tree-sitter parser library,
IPWatchdog.com | Patents & Intellectual Property Law
10 months ago
Intellectual property law

Patently Strategic Podcast: Open Source and Patent Rights

Use of free open-source code can be a massive accelerant when building complex software applications.Why reinvent wheels?And depending on resources and budget, sometimes it's the only practical way.But like with most things, free often isn't really free.The cost is just transferred somewhere else.When it comes to open source, these short-term savings can have significant long-term consequences for your intellectual property rights.
DevOps.com
1 year ago
Information security

ReversingLabs Adds Ability to Detect Secrets in Application Binaries

By: Mike Vizard on
ReversingLabs today announced it added an ability to detect secrets exposed in application binaries to its Software Supply Chain Security (SSCS) platform.Tomislav Peričin, chief software architect for ReversingLabs, said this addition will make it easier for DevSecOps teams to identify secrets that are inadvertently left in applications as plain text or that can be discovered because of weak cryptography, scripts that have been included in directories that have secrets configuration files, packaging automation mistakes, compromised developer accounts or the activities of malicious insiders.
VentureBeat
1 year ago
Data science

StarRocks analytical DB heads to Linux Foundation

The StarRocks online analytical processing (OLAP) database is getting a new home today, at the Linux Foundation.StarRocks was created and developed by a commercial entity also known as StarRocks, until it changed its name to CelerData in August 2022.The project got its start in 2020, originally as a fork of the open-source Apache Doris analytics database.
GSMArena.com
1 year ago
Mobile UX

Telegram responds to WhatsApp allegations

Telegram spokesperson Remi Vaughn reached out to us to refute claims by Wired and WhatsApp head Will Cathcart about the security of the popular chat app.According to Vaughn, the Wired article contains many errors and the editorial team ignored comments and responses from Telegram, which in turn mislead Cathcart.
Medium
9 months ago
Vue

Optimizing Development Workflow

The most important thing I learned from various web-based projects, both big and small, that I have been involved in since 2014 is this:
As a software development project grows, the harmonious collaboration among its various components significantly affects the gears of development.Perhaps the two most crucial elements forming the most vital parts of these gears are the project's work items and branch strategy.
Medium
10 months ago
Vue

I created a Zero-Runtime CSS-in-JS Library Compatible with Next.js App Router and RSC

Have you ever wished for a way to style your React components like Chakra UI but without any runtime overhead?I did.And so, I set out to build just that.Over my years of working with React, I've loved using CSS-in-JS libraries like Emotion and Styled-components.However, their inherent performance overhead from injecting CSS at runtime and their incompatibility with the latest Next.js
DevOps.com
10 months ago
DevOps

The Hidden Configuration Tax Affecting Uptime SLO

By: Greg Arnette on
This article is a preview of a talk by Greg Arnette for SLOconf 2023 on May 15 - 18.To watch this talk and many more like it, register for free at sloconf.com .Tax season was just a few weeks ago, and that got me thinking about how frustrating it is to get hit with a surprise tax bill and how that can relate to uptime: Configuration sprawl.
Electronic Frontier Foundation
10 months ago
Privacy professionals

Court Accepts EFF's Amicus Brief on the Right to Publish Code in Tornado Cash Case

Protecting the First Amendment rights of coders to develop and publish code is a core EFF value.It's also one where arises from the U.S. Treasury Department's decision to put Tornado Cash, an open-source project, on its specially designed nationals (SDN) list.As a result of that listing, the project was taken down from GitHub.
Pythonbytes
11 months ago
Python

Creating very old Python code

About the show Sponsored by Microsoft for Startups Founders Hub.


via Brendan Hannigan
You can set an environment variable or use it as a command line argument and then instead of creating tons of __pycache__ folders to store your *.pyc files right next to the source code, it puts them in some specified folder.
TechRepublic
10 months ago
Information security

GitLab announces AI-DevSecOps platform GitLab 16

1. GitLab 16 comes with new features that support DevSecOps, including AI-driven analytics to ensure code quality and comprehensive security scanning and alerting.
2. GitLab 16 provides a number of benefits for developers, such as simplified setup and configuration, automated pipelines, and faster CI/CD
Amazic
10 months ago
Privacy professionals

8 best practices for managing secrets & sensitive data in a DevOps environment - Amazic

In the world of DevOps, sensitive data is any information that, if revealed, might hurt a company or its clients.To that end, all the components of a DevOps environment, including source code, configuration files, databases, user passwords, API keys, or logs, classify as sensitive information.In fact, IBM's 2022 Cost of Data Breach report stated that the average data breach cost increased to USD 9.44 million in 2022.
Theregister
10 months ago
Information security

US lawmakers push voting system pen testing, bug disclosure

US voting machines would undergo deeper examination for computer security holes under proposed bipartisan legislation.Senators Mark Warner (D-VA) and Susan Collins (R-ME) this week introduced an amendment to the Help America Vote Act (HAVA) that would require the nation's Election Assistance Commission to include penetration testing in its certification process of voting hardware and software.
SecurityWeek
10 months ago
Information security

OpenSSF Receives $5 Million for Open Source Software Security Project

The Open Source Security Foundation (OpenSSF) this week announced that it has added four new members and that Microsoft and Google have pledged $5 million in funding for the Alpha-Omega project.Founded in 2020 and hosted by the Linux Foundation, OpenSSF is a cross-industry organization focused on improving the security of the open source software supply chain through collaboration between tech companies.
DevOps.com
10 months ago
Information security

ReversingLabs: Increased Focus on Software Supply Chain Security

By: Mike Vizard on
A global survey of 300 global executives, technology and security professionals found software containing vulnerabilities (82%) followed by secrets leaked through source code (55%), malicious code (52%) and suspicious code (46%) posed a serious risk to the business.Conducted by Dimensional Research on behalf of ReversingLabs, a provider of a platform for securing software supply chains, the survey found 87% of respondents detected significant risks in their software supply chain in the last year.
Social Media Explorer
1 year ago
Online marketing

Twitter Source Code Leak Should Serve As Warning Say Security Experts - Social Media Explorer

According to Twitter, the code was stolen and left by a disgruntled employee.... [+]
NurPhoto via Getty Images Researchers from security have said that Twitter's source codes were being leaked online.They also suggested that this should act as an alarm to other companies about the need for better network protection.
Speckyboy Design Magazine
10 months ago
Graphic design

WordPress Offers Two Very Different Paths: That's a Good Thing

WordPress has evolved steadily.It has added significant features, while somehow maintaining familiarity.But much of the user and developer experiences are based on our choices.Do we go with a battle-tested classic theme or opt for a newfangled block theme?Do we embrace the Block Editor or stick with the trusty Classic flavor?
LogRocket Blog
10 months ago
JavaScript

Building a file manager in React with Snorlax - LogRocket Blog

Snorlax is an open source file management system that you can deploy and connect to a web application.Built with Go and Rust, Snorlax offers a simple API that you can leverage to handle the basic Create, Read, Update, and Delete (CRUD) functions, which are typically required.We can create a frontend that looks similar to the Finder on MacOS or Window's File Explorer using Snorlax's API.
LogRocket Blog
1 year ago
JavaScript

Using go generate to reduce boilerplate code - LogRocket Blog

Boilerplate code is a section of code that is repeated in multiple parts of programs throughout a software application with little to no variation.Boilerplate code is usually necessary for application functionality without directly contributing to its primary purpose or functionality.Boilerplate code may include operations like setting up basic file structures, initializing variables, defining functions, or importing libraries or modules.
Marcin Wanago Blog - JavaScript, both frontend and backend
1 year ago
JavaScript

API with NestJS #101. Managing sensitive data using the AWS Secrets Manager

When managing the architecture of our system, we often deal with sensitive data.It's our job to ensure they don't fall into the wrong hands.An excellent example of confidential information is the database password and the Json Web Token secret key.In this article, we explore how we can use the AWS Secrets Manager to increase the security of our NestJS application.
Medium
1 year ago
JavaScript

Building a Modern Document Website for React Native Library Like React Native ECharts

In addition to the website launch information, I will also describe how to build a modern documentation website.If you're interested in building a documentation website for your open-source project, this guide can be a great reference.To initiate the creation of a modern documentation website, I recommend using Docusaurus as the first step.
Voorhoede
1 year ago
JavaScript

Highlights from Vue.js Nation 2023 | De Voorhoede

Having a healthy situation with developer tools, first- and third-party libraries and guidelines for best practices speaks much of the maturity of the framework and of how active the team and the community are.With Vue 3 it's definitely getting better.The Volar extension for VS Code has been recently updated and is now faster, more stable and feature-rich.
news.bitcoin.com
10 months ago
Cryptocurrency

Cashtokens Take Center Stage Following Bitcoin Cash Upgrade: Over 26,000 Tokens Created Defi Bitcoin News

Following the recent Bitcoin Cash upgrade on Monday, data reveals that approximately 1,308 fungible tokens and 25,336 non-fungible tokens (NFTs) have emerged on the blockchain.Moreover, the Cashtokens token ecosystem is now accessible through the blockchain explorers 3xpl.com and salemkode.com,allowing users to explore its potential.
news.bitcoin.com
10 months ago
Cryptocurrency

Surge in Ordinal Inscriptions Ignites Exponential Growth in BRC20 Token Economy Bitcoin News

Over the past four days, there has been a surge in Ordinal inscriptions, and as a result, the BRC20 token economy has experienced significant growth with over 10,000 additional coins.The current value of the BRC20 token economy now stands at $497.75 million, comprising a total of 24,677 distinct tokens.
news.bitcoin.com
10 months ago
Cryptocurrency

Bitcoin's Ordinal Inscriptions Surpass 7 Million Mark, Fueling the Trend's Unstoppable Momentum Bitcoin News

On May 15, 2023, the number of Ordinal inscriptions surpassed the 7 million mark and as of 9:00 a.m.Eastern Time on Tuesday morning, 7,204,882 Ordinal inscriptions have been added to the Bitcoin blockchain.Miners have collected 1,324 bitcoin in fees by confirming inscription transactions which equate to roughly $35.86 million in added onchain fees.
news.bitcoin.com
10 months ago
Cryptocurrency

Okx Introduces New Ordinals Marketplace Amid Bitcoin Inscription and BRC20 Buzz Bitcoin News

On Tuesday, the crypto firm Okx announced the launch of a new Ordinals marketplace.The platform is accessible via the Okx Wallet and will enable users to mint and trade Ordinal inscriptions and BRC20 tokens.While the Ordinals marketplace is still in its early stages, users can take advantage of the ability to view and transfer Ordinal inscriptions using the multichain wallet.
news.bitcoin.com
10 months ago
Cryptocurrency

Despite Transfers Lingering in the Mempool, Bitcoin's Daily Transaction Rate Taps All-Time High Bitcoin News

Bitcoin is on a roll in 2023, breaking records left and right.For instance, on May 2, at block height 787,895, the cryptocurrency's hashrate soared to 491 exahash per second (EH/s).Moreover, on April 20, at block height 786,240, the difficulty hit a new high of 48.71 trillion.But that's not the only thing that's been skyrocketing this month.
news.bitcoin.com
10 months ago
Cryptocurrency

NFT Sales Surge 31% This Week as Bitcoin NFTs Secure Second Place in Blockchain Sales Market Updates Bitcoin News

Non-fungible token (NFT) sales witnessed a minor rise last week, registering a humble increase of around 1.46% compared to the preceding week.The cumulative value of NFT sales amounted to $149.31 million from April 29 to May 6, 2023.Nevertheless, the most recent week exceeded anticipations, as sales skyrocketed by 31.22%.
www.nytimes.com
10 months ago
Tech industry

U.S. Tech Espionage Team Unveils First Cases Involving China and Russia

The Biden administration announced arrests and criminal charges on Tuesday in five cases involving sanctions evasion and technology espionage efforts linked to Russia, China and Iran.Two Russian nationals were taken into custody last week under accusations of sending aircraft parts to Russia in violation of sanctions imposed after the invasion of Ukraine.
www.cnn.com
10 months ago
US politics

Justice Department files criminal charges in cases of American tech stolen for Russia, China and Iran

The Justice Department announced on Tuesday five criminal cases against people accused of stealing or illegally diverting American technology and materials for the Russian, Chinese and Iranian governments.The cases are the first enforcement actions by the department's Disruptive Technology Strike Force, which aims to counter efforts by hostile nation-states to illegally acquire sensitive US technology to advance their authoritarian regimes and facilitate human rights abuses.
news.bitcoin.com
10 months ago
Cryptocurrency

Over 440,000 Ethereum Added to Liquid Staking Derivatives in Two Weeks Defi Bitcoin News

In less than two weeks, the total value locked (TVL) in liquid staking derivatives has increased by 441,110 ether, worth roughly $793 million.While Lido Finance dominates the market with 74.35% of the TVL, competing liquid staking protocols Rocket Pool and Frax Ether have recorded double-digit gains of 34% to 42% in the past 30 days.
news.bitcoin.com
10 months ago
Cryptocurrency

Bitcoin Network Starts to Clear Congestion, Onchain Fees Drop by 90% Bitcoin News

On May 7, 2023, the Bitcoin network was plagued with an overwhelming 500,000 unconfirmed transactions, causing a major bottleneck in the system.However, the good news is that the congestion has been clearing, resulting in a significant reduction in onchain fees, which have now dropped below $5.As of now, there are only slightly over 300,000 unconfirmed transactions awaiting confirmation, and 185 blocks need to be mined to clear the backlog.
news.bitcoin.com
10 months ago
Cryptocurrency

Paypal's Latest Report: $1 Billion in Crypto Assets, Holdings Are Predominantly BTC and ETH Bitcoin News

Payments behemoth Paypal has disclosed in a Form 10-Q financial report filed with the U.S. Securities and Exchange Commission (SEC) that it is holding nearly $1 billion in cryptocurrency assets.This news comes on the heels of Paypal's announcement that Venmo now facilitates external transfers of cryptocurrencies to wallets and exchange platforms.
The Verge
10 months ago
Software development

Google launches an AI coding bot for Android developers

Google is launching a new AI-powered coding bot for Android developers.During its I/O event on Wednesday, Google announced that the tool, called Studio Bot, will help developers build apps by generating code, fixing errors, and answering questions about Android.According to Google, the bot is built on Codey, the company's new foundational coding model that stems from its updated PaLM2 large language model (LLM).
DevOps.com
10 months ago
Artificial intelligence

The Right Tool for the Job: AI Edition

By: Don Macvittie on
(Actually, the right job for the tool.)We are currently in a really weird space with regard to AI capability.For my AI friends, I will make the disclaimer that what we call AI today is not actually AI, it is more akin to LiSP "AI" than actual intelligence (and, in reality, is firmly somewhere in between).
Engadget
10 months ago
Artificial intelligence

Meta's open-source ImageBind AI aims to mimic human perception | Engadget

Meta is open-sourcing an AI tool called ImageBind that predicts connections between data similar to how humans perceive or imagine an environment.While image generators like Midjourney, Stable Diffusion and DALL-E 2 pair words with images, allowing you to generate visual scenes based only on a text description, ImageBind casts a broader net.
TechRepublic
10 months ago
Artificial intelligence

White House addresses AI's risks and rewards as security experts voice concerns about malicious use

The White House, last week, released a statement about the use of artificial intelligence, including large language models like ChatGPT.The statement addressed concerns about AI being used to spread misinformation, biases and private data, and announced a meeting by Vice President Kamala Harris with leaders of ChatGPT maker OpenAI, owned by Microsoft and with executives from Alphabet and Anthropic.
Theregister
10 months ago
Artificial intelligence

Samsung to ban staff from using ChatGPT after 'code leak'

Samsung has imposed a "temporary" ban on generative AI tools like ChatGPT after what appears to be an accidental source code leak.An internal memo seen by Bloomberg told staffers they'd better not use tech such as OpenAI's ChatGPT or Google's Bard on pain of termination because of the risk to the company's intellectual property.
ITPro
11 months ago
Artificial intelligence

EU's AI legislation aims to protect businesses from IP theft

A new draft of EU artificial intelligence (AI) legislation could better protect business IP from being secretly scraped by AI firms, with developers facing new transparency obligations on copyrighted content.The long-awaited AI Act could force developers to disclose when they collect and use copyrighted material to train large language models (LLMs).
news.bitcoin.com
10 months ago
Cryptocurrency

Bitcoin's BRC20 Token Economy Skyrockets 192% to $279 Million in Just Four Days Blockchain Bitcoin News

Blockchain by Jamie Redman Four days ago, the market capitalization of all the BRC20 tokens built on top of the Bitcoin network was a modest $95 million.However, over the past four days, the BRC20 market valuation has seen tremendous growth, increasing by 192% and reaching $279 million.More Than 13,000 BRC20 Tokens Built on Bitcoin Are Now Worth $279M The BRC20 token standard, which is built on top of the Bitcoin network, is gaining momentum and the BRC20 token economy is flourishing.
news.bitcoin.com
10 months ago
Cryptocurrency

Defi Market Holds Steady at $49.31 Billion TVL, Lido Finance Leads the Pack With 24.82% Share Defi Bitcoin News

Since April 18, 2023, the total value locked (TVL) in decentralized finance (defi) has been fluctuating just below the $50 billion threshold.As of today, the TVL amounts to $49.31 billion, registering a 1% increase within the last 24 hours.TVL in Defi Shows Signs of Improvement, Yet to Surpass Previous Record of $53 Billion Currently, the combined TVL across all defi platforms stands at $49.31 billion as of May 6, 2023, with Lido Finance leading the pack by commanding a 24.82% share of $12.24 billion on Saturday.
news.bitcoin.com
10 months ago
Cryptocurrency

NFT Sales See Modest Increase of 1.46% to Reach $149M in Past Week Markets and Prices Bitcoin News

Markets and Prices by Jamie Redman In the past week, sales of non-fungible tokens (NFTs) have increased by 1.46%, raking in a total of $149,312,180.However, while the number of NFT buyers has risen by 22.48%, the number of NFT transactions has decreased by 8.78% compared to the previous week.Azuki Emerges as Top-Performing NFT Collection This Week With 504.96%
news.bitcoin.com
10 months ago
Cryptocurrency

Meme Coin PEPE's Market Cap Surpasses $1B with 896% Surge Over the Past Week Altcoins Bitcoin News

As per the latest statistics recorded before the weekend, the meme token PEPE has witnessed a massive surge in value, following its recent listing on the crypto exchange Binance.In just seven days, the crypto asset has skyrocketed by 896% against the U.S. dollar, making it the third-largest meme token in terms of market valuation.
news.bitcoin.com
10 months ago
Cryptocurrency

Bitcoin Miners Breathe a Sigh of Relief as Difficulty Drops 1.45% After Five Consecutive Increases Mining Bitcoin News

Bitcoin's network has been putting miners through the wringer lately, with five straight difficulty increases that had them on edge.However, on May 4, 2023, at block height 788,256, the network difficulty level took a dip, dropping by 1.45% and bringing the overall difficulty down to 48.01 trillion for the next two weeks.
news.bitcoin.com
10 months ago
Cryptocurrency

Gold, Silver, and Crypto Prices Surge After Federal Reserve's Quarter-Point Increase Markets and Prices Bitcoin News

Markets and Prices by Jamie Redman Following a quarter-point increase in the federal funds rate by the Federal Reserve on Wednesday, precious metals such as silver and gold experienced a surge in value against the U.S. dollar, with gains ranging from 0.87% to 1.18%.Gold, in particular, has been on an upward trajectory, having risen by 3.4% in the past month and over 25% in the last six months.
news.bitcoin.com
10 months ago
Cryptocurrency

NFT Sales Drop for Second Consecutive Month After Record-Breaking Start to 2023 Markets and Prices Bitcoin News

Sales of non-fungible tokens (NFTs) have declined by 5.76% over the past 30 days, according to the latest NFT sales statistics.The data reveals that the sales figure stood at $732.13 million in April, which is $44.75 million lower than the $776.88 million recorded in March.NFT Sales Decline by 5.76% in April, Ethereum Dominates, Bored Ape Yacht Club Leads in Collections NFT sales surpassed $1 billion in both January and February 2023; however, sales figures declined in March and April.
news.bitcoin.com
10 months ago
Cryptocurrency

Paypal Upgrades Crypto Services to 60 Million Venmo Users, Allowing Transfers to External Wallets and Exchanges Bitcoin News

After the American financial technology giant Paypal rolled out crypto payments last year, the company is now introducing cryptocurrency transfer services to Venmo users.The firm detailed that Venmo customers will be able to send funds to an existing Paypal account, an external wallet, or a crypto exchange platform.
news.bitcoin.com
10 months ago
Cryptocurrency

Bitcoin Network Hits 75% Progress Towards Next Reward Halving Featured Bitcoin News

At 11:06 a.m.Eastern Time (ET) on April 29, 2023, at block height 787,500, the number of blocks left to discover until the next Bitcoin blockchain halving is now fewer than 52,500 blocks.This means the network has progressed 75% through the 210,000-block halving cycle, which will ultimately result in a reduction of the block reward from 6.25 bitcoins per block to 3.125 bitcoins per block.
Medium
11 months ago
Data science

Python Software Foundation Concerned About "Unintended Consequences" of Proposed EU Law

In a blog post by the Python Software Foundation, the group outlines concerns about the EU's Cyber Resilience Act and Product Liability Act.Though they make clear that the foundation is in support of the state goals of the policies.They worry about the effects of these proposals on the health of open-source communities.
news.bitcoin.com
1 year ago
Cryptocurrency

Binance Experiences Significant BTC, ETH, and Stablecoin Withdrawals Following CFTC Lawsuit Bitcoin News

After the U.S. Commodity Futures Trading Commission sued Binance for alleged violations of trading and derivatives rules, a significant amount of cryptocurrency was withdrawn from the exchange.Data from analytics provider Nansen shows $400 million in Ethereum-based funds were withdrawn in 24 hours, and 3,655 bitcoin worth more than $99 million were withdrawn over the past day, according to Coinglass metrics.
Medium
1 year ago
Vue

How to Perform Unit Tests for UI Components

I think I have written articles about the problem of writing unit tests for UI components.Here're a few articles that I wrote that lead to the conclusion of this article here:
So the main issue can be demonstrated via the following component snippet:
In a unit test, we want to check the return elements from the render of the component; however, there are too many hidden dependencies we don't see from the explicit interface of App function, including:

(1) global dom-related dependencies
(2) API-related dependencies
(3) framework wise dependencies


Believe it or not, most of us can figure out one or two of the above hidden dependencies, but not all of them.
news.bitcoin.com
1 year ago
Cryptocurrency

Bitcoin Hashrate Reaches 400 Exahash per Second, Researcher Says Network Could Reach Zettahash Era by 2025 Mining Bitcoin News

Despite Bitcoin's difficulty reaching an all-time high at 46.84 trillion, participants in bitcoin mining have kept the hashrate running stronger than ever before.According to statistics, on March 23, 2023, the hashrate reached a high of 400 exahash per second (EH/s).The 400 exahash equates to 0.4 zettahash or four hundred quintillion hashes per second.
GeekWire
1 year ago
Marketing

Microsoft buying TikTok wouldn't be so strange after all - here's why it's still unlikely to happen

With the future of TikTok in the U.S. in doubt again, there's a fresh round of speculation about potential buyers for the hit social video app.Microsoft is among the companies frequently mentioned in a hypothetical deal to acquire TikTok from its parent company, Beijing-based ByteDance.Even if the opportunity emerges from this complex geopolitical stew, there is no indication that Microsoft would be interested in revisiting its unsuccessful negotiations to buy TikTok in the U.S. and a few other countries in 2020.
www.dw.com
1 year ago
Marketing

TikTok CEO faces off with US lawmakers DW 03/23/2023

PoliticsUnited States of America 7 minutes ago7 minutes ago There is momentum in the US to ban the popular video app.But TikTok says it is taking actions to address security concerns.TikTok's chief executive, Shou Zi Chew, told US lawmakers on Thursday the app's China-based parent company, ByteDance, would not be manipulated by any government.
english.elpais.com
1 year ago
Marketing

TikTok CEO to tell Congress app is safe, urge against ban

The TikTok Inc. building is seen in Culver City, Calif., on March 17, 2023.Damian Dovarganes (AP) Washington - 22 Mar 2023 - 11:26 UTC TikTok's CEO plans to tell Congress that the video-sharing app is committed to user safety, data protection and security, and keeping the platform free from Chinese government influence.
www.kvue.com
1 year ago
Marketing

TikTok CEO to tell Congress app is safe, urge against ban

WASHINGTON TikTok's CEO plans to tell Congress that the video-sharing app is committed to user safety, data protection and security, and keeping the platform free from Chinese government influence.Shou Zi Chew is due to answer questions Thursday from U.S. lawmakers concerned about the social media platform's effects on its young user base and possible national security risks posed by the popular app, which was founded by Chinese entrepreneurs.
Exchangewire
1 year ago
Marketing tech

First Citizens Buy SVB; Twitter Value Declines

In today's ExchangeWire news digest: First Citizens agree to buy SVB; Twitter's value more than halves and the firm's source code is leaked; and the CMA update their provisional findings from their probe into Microsoft's planned purchase of Activision Blizzard.SVB purchased by First Citizens
First Citizens have agreed to buy Silicon Valley Bank (SVB) following their dramatic collapse.
news.bitcoin.com
1 year ago
Cryptocurrency

NFT Sales Drop 5.4% to $193M, Ethereum Dominates with $107M in Sales: Weekly Recap Bitcoin News

Over the past week, statistics show non-fungible token (NFT) sales totaled $193.08 million, down 5.44% from the previous week.Ethereum dominated NFT sales with more than $107 million or 55% of all sales, while Solana-centric NFT sales recorded $26.3 million or 13% of sales in the same period.NFT Market Shows Signs of Slowdown With Declining Weekly Sales and Lower 30-Day Totals Non-fungible token sales, or NFT sales, fell 5.44% this week compared to last week, with $193.08 million in sales recorded across 19 different blockchains.
news.bitcoin.com
1 year ago
Cryptocurrency

Bitcoin Difficulty Increases for Third Time in Six Weeks, Miners Remain Undeterred With High Hashrate Mining Bitcoin News

On March 23, 2023, bitcoin experienced another difficulty increase, following two previous rises in the last month, jumping 7.56% higher.Currently, bitcoin miners have not been deterred by the increases, as the network hashrate has been coasting along at 346 exahash per second (EH/s).Bitcoin Hashrate Remains High Despite Recent 7.56% Difficulty Rise As of writing, there are more than 1,700 blocks left until the next difficulty retarget on April 5, 2023.
news.bitcoin.com
1 year ago
Cryptocurrency

Multichain Wallet Bitkeep Raises $30 Million From Bitget to Strengthen Links Between Defi and Cefi Bitcoin News

On Wednesday, the multichain wallet Bitkeep announced it raised $30 million from the crypto derivatives platform Bitget.Bitkeep now has an overall valuation of $300 million, with goals aimed at strengthening the links between decentralized finance (defi) and centralized finance (cefi).Bitget Invests $30 Million in Bitkeep; Wallet Firm Is Now Valued at $300M Crypto derivatives exchange Bitget has announced that it has invested $30 million in the multichain wallet company Bitkeep, making it the startup's controlling stakeholder.
news.bitcoin.com
1 year ago
Cryptocurrency

Value Locked in Defi Rises Above $50 Billion Mark, Ethereum Dominates TVL by Blockchain Defi Bitcoin News

The total value locked (TVL) in decentralized finance (defi) has risen above the $50 billion mark after falling below the range throughout most of March.At present, the value locked in defi is approximately $50.34 billion, up 1.97% over the past 24 hours.Defi Value Swells Close to 2% Higher to Over $50 Billion With crypto assets swelling in value and the crypto economy rising 1.2% to $1.24 trillion, the total value locked (TVL) in defi on Wednesday was $50.34 billion.
news.bitcoin.com
1 year ago
Cryptocurrency

Magic Eden Launches Bitcoin Ordinal Inscription Market, Partners With Hiro, Xverse to Bolster Support Bitcoin News

On Monday, the non-fungible token (NFT) marketplace Magic Eden announced the launch of Bitcoin Ordinal inscription support.Magic Eden said it has partnered with the wallets Hiro and Xverse to bring a familiar wallet transaction experience to the marketplace.Magic Eden's Decision to Launch on Bitcoin Without Royalty Support and Compete With Emerging Markets Magic Eden announced in a recent blog post that it has added Bitcoin Ordinal inscription support to the NFT marketplace.
news.bitcoin.com
1 year ago
Cryptocurrency

Bitcoin Network Preps for Another Difficulty Spike as Hashrate Remains Strong and Miners Profit Amid Price Surge Mining Bitcoin News

Following the last two difficulty increases on the Bitcoin network, another rise in difficulty is expected to take place on March 24, 2023.Statistics show that Bitcoin's hashrate has remained high despite the last two adjustments, and block times have been faster than the ten-minute average.Bitcoin Difficulty Expected to Rise Following the Past Two Consecutive Increases At the time of writing, Bitcoin's difficulty is at an all-time high of 43.55 trillion, and the network's hashrate remains above the 300 exahash per second (EH/s) range at 319.86 EH/s.
news.bitcoin.com
1 year ago
Cryptocurrency

Bitcoin Surges by More Than 37% Against US Dollar This Week, Taps $28K on Sunday Market Updates Bitcoin News

Market Updates by Jamie Redman Bitcoin reached a high of $28,422 per unit on Sunday at around 3 p.m. Eastern Time as the leading cryptocurrency has continued to rise during the last week.Since last Sunday, bitcoin has increased in value by 37.9% against the U.S. dollar, and the cryptocurrency's overall market capitalization has swelled to $546 billion.
Theregister
1 year ago
Privacy professionals

Got Conti? Here's the ransomware cure to avoid paying up

Good news for ransomware victims: Kaspersky security researchers say they've cracked the Conti ransomware code and released a decryptor tool after uncovering leaked data belonging to the notorious Russian crime group.This latest leak contained 258 private keys, source code and some pre-compiled decryptors, and the Kaspersky team used it to develop a new version of its public decryptor.
news.bitcoin.com
1 year ago
Business

Blockchain.com Shutters Asset Management Subsidiary Amid Crypto Winter and Industry Turmoil Bitcoin News

According to reports and a filing that shows its name struck off the U.K. companies' register list, Blockchain.com is sunsetting its Blockchain.comAsset Management subsidiary.A company spokesperson cited deteriorating macroeconomic conditions and the crypto winter as some of the reasons for halting the institutional business.
news.bitcoin.com
1 year ago
Cryptocurrency

Bitcoin Becomes 12th Largest Asset Worldwide by Valuation, Surpassing Visa Market Updates Bitcoin News

Market Updates by Jamie Redman After dropping below $26,000 per unit, the price of bitcoin, the leading digital asset by market capitalization, is still up 9.6% since last week.However, its price has decreased by 6.5% in the last 24 hours.Out of the 7,316 companies, crypto assets, precious metals, and exchange-traded funds worth more than $82 trillion in value, bitcoin is the 12th largest asset worldwide by valuation.
news.bitcoin.com
1 year ago
Cryptocurrency

Openai's GPT-4 Launch Sparks Surge in AI-Centric Crypto Assets Altcoins Bitcoin News

Following Openai's release of GPT-4, a deep learning and artificial intelligence product, crypto assets focused on AI have spiked in value.The AGIX token of the Singularitynet project has risen 25.63% in the last 24 hours.Over the last seven days, four out of the top five AI-centric digital currencies have seen double-digit gains against the U.S. dollar.
news.bitcoin.com
1 year ago
Cryptocurrency

Stablecoin Trading Dominates Monday's Crypto Market, Tether and BUSD Sell at Premiums Market Updates Bitcoin News

Market Updates by Jamie Redman On Monday, the crypto economy experienced significant market activity with $183.85 billion in global trade volume over 24 hours, with a large portion of those trades involving stablecoins.USDC traded near parity with the U.S. dollar, and several stablecoins, including tether and BUSD, sold at premiums.
www.theguardian.com
1 year ago
UK politics

TikTok would be disappointed' if UK banned app on official devices

TikTok has said it would be disappointed if it was banned from UK government devices, after it was reported that ministers were due to follow the example of the US, Canada and the European Commission in blocking the social video app.TikTok said moves to strip it from government-issued phones were based on misplaced fears.
Vue.js Feed
1 year ago
Vue

Nuxt DevTools

Nuxt DevTools is a set of powerful visual tools to help understand app performance.Analyze page loads, track execution times, and debug code with ease.Visual aids identify and troubleshoot issues quickly, allowing for quick resolution and optimal user experience.Installation

Nuxt DevTools requires Nuxt v3.1.0
Vue.js Feed
1 year ago
Vue

Particles-Bg-Vue: Animation Background Component

Particles-bg-vue is a vue.js particles animation background component.Use it to make your website look cool.Specify
This project refers to the source code of the Proton official website, and proton's online demo.I packaged it into a vue.js component.Thanks to the great author.Online demo
Install
npm install --save particles-bg-vue
Usage
Method 1: Import and use in the component
<particles-bg type="lines" :bg="true" /> ... import { ParticlesBg } from "particles-bg-vue"; export default { name: "App", components: { ParticlesBg } };
Method 2: Use it globally
import VueParticlesBg from "particles-bg-vue"; Vue.use(VueParticlesBg); .... <particles-bg type="random" :bg="true" />
Parameter Description
type - Is the type of particle animation
Is the type of particle animation, random is a random selection.
[ Load more ]