People
Luca CM Melchionna, Esq., Managing member Luca CM Melchionna has 25+ years of experience in both private practice and academia, in Italy and in the United States. He is a...
Luca CM Melchionna, Esq., Managing member Luca CM Melchionna has 25+ years of experience in both private practice and academia, in Italy and in the United States. He is a...
Mission Melchionna PLLC is an indipendent law firm. Melchionna PLLC’s mission is to provide outstanding legal services and tax advice. We focus on building a relationship with...
About us Melchionna PLLC represents and assists North American and European business clients in achieving their goals with sound legal advice and innovative solutions to current...
On May 26, 2023 Luca CM Melchionna presented and moderated a CLE on Artificial Intelligence along with Marco Muselli of RuleX Inc. a Boston based AI/tech company. The CLE was...
Crypto litigation is here to stay. The landscape in this area is rapidly changing because of growing US courts opinions and/or state legislation. US courts have been asked to...
Mr. Luca Melchionna is one of the coordinators and among the panelists at the October 2022 workshop on cross-border transactions and 2022 M&A updates. The workshop has been...
The V&TC presented: Emerging Trends In Law – NFTs, Cybersecurity, And Privacy – NFTs Litigation. The CLE program presented some of the novel issues posed by digital art and...
On June 2022, Luca CM Melchionna was appointed chair of the standing Technology and Venture Committee, Business Law Section of the New York State Bar Association for the term June...
The convenience and security of non-fungible tokens (NFTs) are shaking up the art world. As this new form of digital ownership takes off, so are many legal questions about their...
Many investors, particularly younger ones, are putting their money where their values are, prompting some of the world’s largest institutional investors to demand more from...
Art dealers can support their portfolio of artists through Non-Fungible Tokens (NFTs). What is an NFT? How does it work? NFTs are blockchain-based virtual tokens that convey...
Forthcoming – Summer 2021 – Preview here Based on a division of powers and the supremacy of a constitution,the rule of law is not invulnerable, as was demonstrated in...
Hydra includes our ‘Ecko Blocks’ plugin, which introduces additional features to the Code core Gutenberg block. These features include language specific syntax highlighting, multiple color schemes, line numbers, and support for popular languages (complete list can be found below).
// This is an example of the 'Light' color scheme
function wp_get_time(){
if(get_theme_mod('layout_use_custom_date_format', false)){
the_date();
}else{
the_time('jS F Y ');
}
}
// This is an example of the 'Dark' color scheme.
function wp_get_time(){
if(get_theme_mod('layout_use_custom_date_format', false)){
the_date();
}else{
the_time('jS F Y ');
}
}
// This is an example of the 'High Contrast' color scheme.
function wp_get_time(){
if(get_theme_mod('layout_use_custom_date_format', false)){
the_date();
}else{
the_time('jS F Y ');
}
}
If you wish to display line numbers along with a Code block this an be enabled via the included options. Below is an example Code block using line numbers with the Dark color scheme.
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
Below is a preview of some of the above languages being highlighted.
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
.wrapper{
max-width: 1400px;
width: 100%;
@media (max-width: 1470px) {
padding: 0 2.5%;
}
}
def openFile(path):
file = open(path, "r")
content = file.read()
file.close()
return content
def self.consume_front(str, size)
str[0..size] = ''
str.lstrip!
end
ls -la /home
function ivy_get_time(){
if(get_theme_mod('layout_use_custom_date_format', false)){
the_date();
}else{
the_time('jS F Y ');
}
}