14.6 C
New York
Monday, March 31, 2025
Home Blog Page 3801

Why Are Organizations Dropping the Ransomware Battle?


COMMENTARY

Profitable ransomware assaults are growing, not essentially as a result of the assaults are extra subtle in design however as a result of cybercriminals have realized lots of the world’s largest enterprises lack adequate resilience to primary cybersecurity practices. Regardless of large investments in cybersecurity from the personal and public sectors, many organizations proceed to lack adequate resistance to ransomware assaults.

Institutionalizing and Sustaining Foundational Cybersecurity Stays Difficult

Greater than 40 years of expertise as a practitioner, researcher, and chief within the audit and cybersecurity professions leads me to conclude there are two key causes for the shortage of ransomware resilience that’s overexposing organizations to in any other case controllable gaps of their ransomware defenses: 

  • Latest newsworthy intrusions — such because the assaults on gaming organizations, client items producers, and healthcare suppliers — reinforce that some organizations might not have applied foundational practices. 

  • For organizations which have applied foundational practices, they could not sufficiently confirm and validate the efficiency of these practices over time, permitting expensive investments to depreciate in effectiveness extra rapidly. 

In mild of this, there are three easy actions organizations can take to enhance primary resilience to ransomware:

1. Recommit to foundational practices.

In line with Verizon’s “2023 Information Breach Investigations Report,” 61% of all breaches exploited person credentials. Two-factor authentication (2FA) is now thought-about a vital management for entry administration. But a failure to implement this extra layer of safety is on the core of an unfolding ransomware catastrophe for UnitedHealth Group/Change Healthcare. Not solely are sufferers affected by this hack, however service suppliers and clinicians are experiencing collateral harm, encountering important obstacles in acquiring care authorizations and funds. A whole trade is beneath siege because of a significant healthcare supplier failing to implement this foundational management. 

2. Guarantee foundational practices are “institutionalized.”

There is a “set and neglect” mentality that addresses cybersecurity at implementation however then fails to make sure practices, controls, and countermeasures are sturdy throughout the lifetime of the infrastructure, particularly as these infrastructures evolve and adapt to organizational change. For instance, cybersecurity practices that aren’t actively applied with options that guarantee their institutionalization and sturdiness run the chance of not holding up beneath evolving ransomware assault vectors. However what does institutionalization imply? Actions together with documenting the follow; resourcing the follow with sufficiently expert and accountable folks, instruments, and funding; supporting enforcement of the follow by means of coverage; and measuring the effectiveness of the follow over time outline greater maturity behaviors that fortify investments and prolong their helpful life. 

These “institutionalizing options” make sure that basic cybersecurity practices stay viable, and after they lose effectiveness, are improved. For instance, primary encryption practices weren’t in place with the Change Healthcare ransomware hack, which rendered affected person knowledge susceptible to hackers. This prompts questions on whether or not the requirement for knowledge encryption at relaxation was institutionalized in coverage, and if that’s the case, if accountability for assembly such necessities was assigned to correctly expert practitioners. 

3. Measure and enhance the effectiveness of foundational practices.

These questions should be requested: Are cybersecurity frameworks failing us? And are they making us much less efficient?

Using a framework just like the Nationwide Institute of Requirements and Know-how Cybersecurity Framework (NIST CSF) can information program improvement and follow implementation, however use alone just isn’t predictor or indicator of success. Why? As a result of the consistency of anticipated outcomes from framework practices are hardly ever measured. Maturity fashions — people who emphasize the institutionalizing options talked about above — are an evolution towards this goal however proceed to have limitations until paired with an lively efficiency administration method.

It is doable that a corporation reminiscent of Change Healthcare might have applied 2FA on important servers previously however, with out common statement or measurement, failed to acknowledge that this management was both deliberately or unintentionally deprecated or indirectly functioning inadequately. So, whereas the group had the precise intentions — to implement 2FA as a normal follow — with out lively efficiency administration, it might have been misled into believing such a management was not solely applied however efficient as effectively.

Moreover, hole assessments utilizing cybersecurity frameworks can point out areas for program enchancment, however this alone won’t lead to an enchancment of total efficiency. Many organizations do these assessments to “show” their packages are working successfully when, in actuality, an applied and observable follow may very well be performing poorly, leading to a harmful overstatement of the group’s true functionality. That is doubtlessly why some organizations are “stunned” they’ve been the sufferer of a ransomware assault. With out efficiency measurement, effectiveness can’t be assured, and till efficiency administration turns into a front-and-center function of cybersecurity frameworks, customers run the chance of believing they’re correctly fortified in opposition to ransomware assaults with out sufficiently testing that assumption. 

And senior administration and boards of administrators deserve reporting on efficiency administration, not simply the outcomes of periodic framework assessments. With out metrics, these governors are left with the impression that the one deficiencies within the cybersecurity program are misalignments with frameworks, but in actuality, poorly performing practices and controls are extra perilous.

Extra Safety With Much less by Specializing in the Fundamentals

The problem of institutionalizing and sustaining basic cybersecurity practices is multifaceted. It requires a dedication to ongoing vigilance, lively administration, and a complete understanding of evolving threats. Nevertheless, by addressing these challenges head-on and making certain that cybersecurity practices are applied, measured, and maintained with rigor, organizations can higher shield themselves in opposition to the ever-present risk of ransomware assaults. Specializing in the fundamentals first — reminiscent of implementing foundational controls like 2FA, fostering upkeep expertise to combine IT and safety efforts, and adopting efficiency administration practices — can result in important enhancements in cybersecurity, offering strong safety with much less funding.



Apache Kafka Producer — Implementation | by Dev D


In my earlier story, we realized concerning the Fundamentals of Apache Kafka, why we should always use and its advantages.

On this half, I’ll educate you how one can use Apache Kafka even if you’re a newbie and don’t have any prior data of Apache Kafka.

Let’s take a use case the place we are able to use Apache Kafka and How we are able to use it.

Downside: Suppose we have now a Shopper Software that collects some Analytics out of your App and sends it to the Server with an everyday Interval.
As this information is essential we should always not lose any information after we are sending it to the analytics server and It server can devour all of the requests coming from completely different servers.

Reply: One factor we are able to perceive is we want a Dependable and Scalable system as we cannot afford to lose any information and our system can devour a whole bunch of requests.

Let’s Implement with out Apache Kafka :

Pattern code to ship information to the server through the use of HttpURLConnection in Java :

public void sendLog(String url, Request request){
URL serverUrl = new URL(url);
HttpURLConnection conn = (HttpURLConnection) serverUrl.openConnection();
conn.setRequestMethod("POST");
conn.setDoOutput(true);
conn.setRequestProperty("Content material-Sort", "software/json");

String jsonPayload = request.toString();

System.out.println("Response from server:" + jsonPayload);
DataOutputStream outputStream = new DataOutputStream(conn.getOutputStream());
outputStream.writeBytes(jsonPayload);
outputStream.flush();
outputStream.shut();
}

All the pieces seems to be good to this point however after we discuss Reliability we cannot belief HTTP Connection because it’s Stateless and when A whole lot of shoppers will ship 1000’s of requests our Server will be unable to deal with them till we do Scaling.

What if we have now a number of sources to ship several types of Logs, how we deal with these completely different logs server-side e.g

Let’s repair this downside with Apache Kafka :

Information Sources will publish their information to Apache Kafka, After that Kafka will distribute the information stream to the specified vacation spot, however how?

Right here subject will assist us ,
Kafka subjects manage associated occasions. For instance, we might have a subject referred to as logs, which accommodates logs from an software. Subjects are roughly analogous to SQL tables. Nevertheless, not like SQL tables, Kafka subjects aren’t queryable. As an alternative, we should create Kafka producers and shoppers to make the most of the information. The information within the subjects are saved within the key-value type in binary format.

In our case, I’ve created a Matter Analytics in our code however we are able to have a number of subjects like Buy for storing Buying data, Electronic mail and so on

As you may see in Diagram Shopper will create a Producer that can ship Information to Apache Kafka, Kafka will assign this information primarily based upon the Matter and ship it to the Server the place we can have a shopper that can devour information primarily based on the Matter.

Let’s setup Kafka Producer in Eclipse :

We solely want few dependencies so as to add in pom.xml

 


ch.qos.logback
logback-classic
1.2.6


org.apache.kafka
kafka-clients
3.1.0


org.slf4j
slf4j-log4j12




org.slf4j
slf4j-api
1.7.32


log4j
log4j
1.2.17


After Including dependencies in our code we might be good to go.

Kafka Configuration :

public interface KafkaConfiguration {

String TOPIC_NAME = "analytics";

String SERVER_URL = "localhost:9092";

String KEY = "org.apache.kafka.frequent.serialization.StringSerializer";

String VALUE = "org.apache.kafka.frequent.serialization.StringSerializer";

}

Create Kafka Properties:

Properties props = new Properties();
props.put("bootstrap.servers", SERVER_URL);
props.put("key.serializer", KEY);
props.put("worth.serializer", VALUE);

Create Producer and Ship Information :

non-public void sendMessage(Request request) {

KafkaProducer producer = new KafkaProducer(props.getProperties());

ProducerRecord pr = new ProducerRecord<>(KafkaConfiguration.TOPIC_NAME, "key", request.toString());

producer.ship(pr, (metadata, exception) -> {
if (exception != null) {
System.err.println("Error sending message: " + exception.getMessage());
} else {
System.out.println("Message despatched efficiently: subject=" + metadata.subject() + ", partition="
+ metadata.partition() + ", offset=" + metadata.offset());
}
});

producer.shut();
}

That is how we’ll create a Producer and ship information to Kafka Shopper, within the subsequent submit I’ll let you understand how to setup Kafka, nodejs, MongoDB, create a Matter, obtain information from the patron, and save this information to Database .

Please observe and like for extra superior tutorials.

I am So Outdated: Internet Version


I am So Outdated: Internet Version

Time could be a humorous factor. I nonetheless bear in mind discovering HTML, CSS, and JavaScript coding. I nonetheless bear in mind my first faculty programming course. I nonetheless bear in mind my first day at my first coding job, then my first day at my second coding job, after which my first day at Mozilla. I nonetheless bear in mind my first day coding for MetaMask. This 12 months marks my twentieth 12 months as an expert software program engineer and it is occurred within the blink of an eye fixed.

Each every now and then I’ll make an previous programming reference to a a lot youthful engineer after which understand they don’t know what I am speaking about.

I am so previous…

  • Webpage layouts have been being finished with s and this new "CSS float" property was turning into the brand new commonplace
  • Rounded corners have been achieved through pictures and VML hacks for Web Explorer
  • FTP was one of the simplest ways to add web sites modifications
  • SVN and copying its trunk was the perfect versioning software
  • alert and verify have been the usual for "modals"
  • Firebug was the perfect debugging software accessible
  • The "commonplace" for getting movies to play correctly was discovering the precise codec to put in
  • ActionScript data was as precious as JavaScript data
  • Dreamweaver was finest in school textual content editor and design software
  • XML was the way forward for information constructions
  • Cell-first? Cell did not exist
  • Reactive navigation? How about Java Applets...
  • ...and even totally different upon mouseover and mouseleave!
  • Wish to code a desktop app with internet tech? Strive Adobe Air!
  • NPM stood for "not performant, man"
  • Voting on a ballot meant the web page would refresh
  • "Social media" meant HotOrNot.com
  • The love sound of the online was a 56k modem connection purrrrr
  • Disabling right-click enforced picture safety
  • Bitmap (.bmp) was a viable picture format
  • JavaScript had a competitor referred to as JScript
  • SpyJax'ing allow you to detect the place your consumer had been
  • Cookies have been the top of consumer monitoring
  • Social media wall? It is referred to as a "guestbook"...
  • ...and a buddies listing? It is referred to as a "internet ring'
  • Search engine marketing was spamming the </code> with key phrases=</li> <figure class="wp-block-image"><img decoding="async" src="blob:https://davidwalsh.name/90f2e20a-08f0-4827-926a-af6a08af0169" alt=""/></figure> <p>Whew, these the place the times. How previous are you in internet?</p> <!-- secondary ad --> <div class="x x-long x-secondary"> <!-- <div class="x-secondary-large"> <a href="https://requestmetrics.com/" style=display:block;><object data="https://davidwalsh.name/demo/gofast-728x90.svg" type="image/svg+xml" style="max-width:100%;pointer-events:none;"></object></a> </div> <div class="x-secondary-small"> <a href="https://requestmetrics.com/" style=display:block;><object data="https://davidwalsh.name/demo/gofast-300x250.svg" type="image/svg+xml" style="max-width:100%;pointer-events:none;"></object></a> </div> --> <div class="x-secondary-large"> <a href="https://requestmetrics.com/?utm_source=davidwalsh" style="display:block;"> <img decoding="async" src="https://davidwalsh.name/demo/rm_perf_banner-728.min.svg" style="max-width:100%;height:auto;" alt="Request Metrics real user monitoring" loading="lazy" width="728" height="90"/> </a> </div> <div class="x-secondary-small"> <a href="https://requestmetrics.com/?utm_source=davidwalsh" style="display:block;"> <img decoding="async" src="https://davidwalsh.name/demo/rm_perf_block_300.min.svg" style="max-width:100%;height:auto;" alt="Request Metrics real user monitoring" loading="lazy" width="300" height="250"/> </a> </div> </div> <!-- guest blogger --> <div class="article-block" style="min-height:90px"><!-- terciary ad --><div class="x x-long x-terciary" style="max-height: none;"> <div class="x-secondary-large"> <a href="https://requestmetrics.com/?utm_source=davidwalsh" style="display:block;"> <img decoding="async" src="https://davidwalsh.name/demo/rm_perf_banner-728.min.svg" style="max-width:100%;height:auto;" alt="Request Metrics real user monitoring" loading="lazy" width="728" height="90"/> </a> </div> <div class="x-secondary-small"> <a href="https://requestmetrics.com/?utm_source=davidwalsh" style="display:block;"> <img decoding="async" src="https://davidwalsh.name/demo/rm_perf_block_300.min.svg" style="max-width:100%;height:auto;" alt="Request Metrics real user monitoring" loading="lazy" width="300" height="250"/> </a> </div> </div> </div> <div class="article-block post-more" style="“clear:both;”"><ul class="post-list small-list"><li data-url="https://davidwalsh.name/webgl-demos" itemscope="" itemtype="http://schema.org/Article"><span itemscope="" itemtype="https://schema.org/ImageObject"><img decoding="async" src="https://davidwalsh.name/demo/webgl-maze.jpg?preview" class="post-image" alt="9 Mind-Blowing WebGL Demos"/></span><div class="preview"><h3 itemprop="name"><a href="https://davidwalsh.name/webgl-demos" itemprop="url">9 Thoughts-Blowing WebGL Demos</a></h3><p>As a lot as builders now detest Flash, we're nonetheless taking part in a little bit of catch as much as natively duplicate the animation capabilities that Adobe's previous know-how supplied us.  After all we've <a href="https://davidwalsh.name/tutorials/canvas">canvas</a>, an superior know-how, one which I highlighted <a href="https://davidwalsh.name/canvas-demos">9 mind-blowing demos</a>.  One other know-how accessible...</p></div></li><li data-url="https://davidwalsh.name/html5-apis" itemscope="" itemtype="http://schema.org/Article"><span itemscope="" itemtype="https://schema.org/ImageObject"><img decoding="async" src="https://davidwalsh.name/demo/html5250.png?preview" class="post-image" alt="5 HTML5 APIs You Didn’t Know Existed"/></span><div class="preview"><h3 itemprop="name"><a href="https://davidwalsh.name/html5-apis" itemprop="url">5 HTML5 APIs You Didn’t Know Existed</a></h3><p>If you say or learn "HTML5", you half count on unique dancers and unicorns to stroll into the room to the tune of "I am Horny and I Know It."  Are you able to blame us although?  We watched the elemental APIs stagnate for therefore lengthy {that a} primary function...</p></div></li></ul></div><div class="article-block post-more"><ul class="post-list small-list"><li data-url="https://davidwalsh.name/jquery-top-link" itemscope="" itemtype="http://schema.org/Article"><span itemscope="" itemtype="https://schema.org/ImageObject"><img decoding="async" src="https://davidwalsh.name/demo/css3logo250.jpg?preview" class="post-image" alt="jQuery topLink Plugin"/></span><div class="preview"><h3 itemprop="name"><a href="https://davidwalsh.name/jquery-top-link" itemprop="url">jQuery topLink Plugin</a></h3><p>Final week I launched a snippet of code for MooTools that allowed you to fade out and in a "to the highest" hyperlink on any web page. This is how you can implement that performance utilizing jQuery. The XHTML A easy hyperlink. The CSS A bit CSS for place and magnificence. The jQuery...</p></div></li><li data-url="https://davidwalsh.name/dojo-digg" itemscope="" itemtype="http://schema.org/Article"><span itemscope="" itemtype="https://schema.org/ImageObject"><img decoding="async" src="https://davidwalsh.name/demo/storylist-share.png?preview" class="post-image" alt="Digg-Style Dynamic Share Widget Using the Dojo Toolkit"/></span><div class="preview"><h3 itemprop="name"><a href="https://davidwalsh.name/dojo-digg" itemprop="url">Digg-Type Dynamic Share Widget Utilizing the Dojo Toolkit</a></h3><p><a href="https://davidwalsh.name/demo/dojo-digg-share.php"/> I've at all times seen Digg as a really progressive web site. Digg makes use of experimental, ajaxified strategies for feedback and mission-critical capabilities. One good contact Digg has added to their web site is their hover share widget. This is how you can implement that performance in your website...</p></div></li></ul></div><!-- <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"> <rdf:Description rdf:about="https://davidwalsh.name/im-so-old-1" dc:identifier="https://davidwalsh.name/im-so-old-1" dc:title="I’m So Old: Web Edition" trackback:ping="https://davidwalsh.name/im-so-old-1/trackback" /> </rdf:RDF> --><!-- comments --><!--/CONTENT--><!-- site footer --><footer/><!-- scripts --> </table></code></li></ul></article></div> <br> </div> </div> </div> <div class="td_module_15 td_module_wrap clearfix post-2985 post type-post status-publish format-standard has-post-thumbnail category-artificial-intelligence" > <div class="item-details"> <h3 class="entry-title td-module-title"> <a href="https://codesanitize.com/unlock-the-future-ai-brokers-and-llms-at-chatbot-convention-2024-by-stefan-kojouharov-jul-2024/" rel="bookmark" title="Unlock the Future: AI Brokers and LLMs at Chatbot Convention 2024 | by Stefan Kojouharov | Jul, 2024"> Unlock the Future: AI Brokers and LLMs at Chatbot Convention 2024 | by Stefan Kojouharov | Jul, 2024 </a> </h3> <div class="td-module-meta-info"> <ul class="td-category"> <li class="entry-category"><a href="https://codesanitize.com/category/artificial-intelligence/">Artificial Intelligence</a></li> </ul> <div class="td-post-author-name"> <a href="https://codesanitize.com/author/codesanitize-com/">codesanitize</a> <div class="td-author-line"> - </div> </div> <span class="td-post-date"> <time class="entry-date updated td-module-date" datetime="2024-08-21T06:26:33+00:00" >21 August 2024</time> </span> <div class="td-post-comments"> <a href="https://codesanitize.com/unlock-the-future-ai-brokers-and-llms-at-chatbot-convention-2024-by-stefan-kojouharov-jul-2024/#respond"> <i class="td-icon-comments"></i> 0 </a> </div> </div> <div class="td-module-thumb"> <a href="https://codesanitize.com/unlock-the-future-ai-brokers-and-llms-at-chatbot-convention-2024-by-stefan-kojouharov-jul-2024/" rel="bookmark" class="td-image-wrap" title="Unlock the Future: AI Brokers and LLMs at Chatbot Convention 2024 | by Stefan Kojouharov | Jul, 2024"> <img post-id="2985" fifu-featured="1" class="entry-thumb" src="https://i1.wp.com/miro.medium.com/v2/resize:fit:1200/0*Szb34w7Y2s4yJcrz.png?w=768&resize=768,0&ssl=1" alt="Unlock the Future: AI Brokers and LLMs at Chatbot Convention 2024 | by Stefan Kojouharov | Jul, 2024" title="Unlock the Future: AI Brokers and LLMs at Chatbot Convention 2024 | by Stefan Kojouharov | Jul, 2024" title="Unlock the Future: AI Brokers and LLMs at Chatbot Convention 2024 | by Stefan Kojouharov | Jul, 2024" /> </a> </div> <div class="td-post-text-content td-post-content tagdiv-type"> <p> <br /> </p> <div> <div> <div> <div class="speechify-ignore ab cp"> <div class="speechify-ignore bh l"> <div class="hv hw hx hy hz ab"> <div> <div class="ab ia"><a href="https://medium.com/@StefanSpeaks?source=post_page-----fb6ac9d5cb73--------------------------------" rel="noopener follow"></p> <div> <div class="bm" aria-hidden="false"> <div class="l ib ic by id ie"> <div class="l fj"><img decoding="async" alt="Stefan Kojouharov" class="l fd by dd de cx" src="https://miro.medium.com/v2/resize:fill:88:88/1*kZby-ovoIfZ430AAXYIT2g.jpeg" width="44" height="44" loading="lazy" data-testid="authorPhoto"/></div> </div> </div> </div> <p></a><a href="https://becominghuman.ai/?source=post_page-----fb6ac9d5cb73--------------------------------" rel="noopener ugc nofollow"></p> <div class="ih ab fj"> <div> <div class="bm" aria-hidden="false"> <div class="l ii ij by id ik"> <div class="l fj"><img decoding="async" alt="Becoming Human: Artificial Intelligence Magazine" class="l fd by br il cx" src="https://miro.medium.com/v2/resize:fill:48:48/1*TmZdlak7DM_hrwAFWf2jvA.png" width="24" height="24" loading="lazy" data-testid="publicationPhoto"/></div> </div> </div> </div> </div> <p></a></div> </div> </div> </div> </div> </div> </div> <p id="f541" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">Unveiling the Audio system, Agenda and Theme of Chatbot Convention 2024</p> <p id="3c73" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">Expensive AI Fans,</p> <p id="9c7f" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">We’re thrilled to unveil the agenda for this yr’s Chatbot Convention, scheduled for September 24–26 within the tech-savvy metropolis of San Francisco.</p> <p id="57ad" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">This yr, we’re zeroing in on a groundbreaking theme: AI Brokers and LLMs — The Instruments That Do Extra Than Reply; They Act.</p> <figure class="nu nv nw nx ny nz oa ob paragraph-image"><a href="https://www.chatbotconference.com/"></p> <div class="ab cn cb oc"><picture><source srcset="https://miro.medium.com/v2/format:webp/0*Szb34w7Y2s4yJcrz.png 640w, https://miro.medium.com/v2/format:webp/0*Szb34w7Y2s4yJcrz.png 720w, https://miro.medium.com/v2/format:webp/0*Szb34w7Y2s4yJcrz.png 750w, https://miro.medium.com/v2/format:webp/0*Szb34w7Y2s4yJcrz.png 786w, https://miro.medium.com/v2/format:webp/0*Szb34w7Y2s4yJcrz.png 828w, https://miro.medium.com/v2/format:webp/0*Szb34w7Y2s4yJcrz.png 1100w, https://miro.medium.com/v2/format:webp/0*Szb34w7Y2s4yJcrz.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px" type="image/webp"/><source data-testid="og" srcset="https://miro.medium.com/v2/0*Szb34w7Y2s4yJcrz.png 640w, https://miro.medium.com/v2/0*Szb34w7Y2s4yJcrz.png 720w, https://miro.medium.com/v2/0*Szb34w7Y2s4yJcrz.png 750w, https://miro.medium.com/v2/0*Szb34w7Y2s4yJcrz.png 786w, https://miro.medium.com/v2/0*Szb34w7Y2s4yJcrz.png 828w, https://miro.medium.com/v2/0*Szb34w7Y2s4yJcrz.png 1100w, https://miro.medium.com/v2/0*Szb34w7Y2s4yJcrz.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px"/><img alt="" class="md bh od c" width="700" loading="eager" role="presentation"/></picture></div> <p></a></figure> <p id="8799" class="pw-post-body-paragraph mw mx gu my b mz pc nb nc nd pd nf ng nh pe nj nk nl pf nn no np pg nr ns nt gn bk">Our earlier forays included early discussions on revolutionary applied sciences like ChatGPT and NLG again in 2019, and we even pioneering digital convention within the Metaverse in 2022.</p> <p id="4271" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">This yr, we’re diving deeper into AI brokers — LLMs designed not simply to reply, however to carry out actions, driving automation and effectivity throughout sectors.</p> <figure class="nu nv nw nx ny nz oa ob paragraph-image"><a href="https://www.chatbotconference.com/"></p> <div class="ab cn cb oc"><picture><source srcset="https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px" type="image/webp"/><source data-testid="og" srcset="https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px"/><img alt="" class="md bh od c" width="700" loading="lazy" role="presentation"/></picture></div> <p></a></figure> <p id="554a" class="pw-post-body-paragraph mw mx gu my b mz pc nb nc nd pd nf ng nh pe nj nk nl pf nn no np pg nr ns nt gn bk">This yr’s lineup consists of a few of the foremost thinkers in AI and conversational design:</p> <ul class=""> <li id="a777" class="mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt ph pi pj bk">Braden Ream, CEO at Voiceflow: Discussing developments in bot constructing and their worth in real-world purposes.</li> <li id="1e6c" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Vaibhavi Gangwar, Co-founder at Maxim AI: Providing insights into deploying efficient LLM-powered chatbots.</li> <li id="9d0b" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Jack C. Crawford, Former VP of Gen AI at Wells Fargo: Sharing methods for implementing AI in regulated industries.</li> <li id="aceb" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Alea Abrams, CUX & Gen AI at ServiceNow: Exploring the usage of psychological fashions for enhanced AI interactions.</li> <li id="55cf" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Dustin Dye, Co-founder & CEO at BotCopy: Reimagining the way forward for web sites and digital interactions</li> </ul> <p id="24ff" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">And naturally, now we have many extra audio system!</p> <p id="49a9" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk"><a class="af pp" href="https://www.chatbotconference.com/" rel="noopener ugc nofollow" target="_blank">>>> See All Audio system</a></p> <p id="6ae4" class="pw-post-body-paragraph mw mx gu my b mz pc nb nc nd pd nf ng nh pe nj nk nl pf nn no np pg nr ns nt gn bk">Yearly, we put a whole lot of thought into our agenda. We like to prepare it in such a approach that content material flows from one subject to the following.</p> <p id="944e" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">Usually, we begin with the Huge Image to see the place we are actually and determine what’s working.</p> <p id="ebc0" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">This yr’s Morning Classes are about seeing the Huge Image and the afternoon classes give attention to execution.</p> <ul class=""> <li id="449c" class="mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt ph pi pj bk">Unleashing AI Brokers: Uncover how AI brokers are revolutionizing automation and enhancing digital workflows.</li> <li id="e03c" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">The Huge Image Panel: A deep dive into present developments and future instructions for AI and LLMs.</li> <li id="8bf1" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Way forward for AI & LLMs: Achieve Google’s newest insights into the evolution of those transformative applied sciences.</li> <li id="f914" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">The ten Impediments to LLM Adoption: Uncover what’s holding the implimentation of LLMs again.</li> <li id="d281" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Rags to Riches: Designing and Constructing Multi-Agent Architectures</li> <li id="0f98" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Moral AI: Addressing biases and constructing belief inside clever programs.</li> </ul> <figure class="nu nv nw nx ny nz oa ob paragraph-image"><a href="https://www.chatbotconference.com/"></p> <div class="ab cn cb oc"><picture><source srcset="https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px" type="image/webp"/><source data-testid="og" srcset="https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px"/><img alt="" class="md bh od c" width="700" loading="lazy" role="presentation"/></picture></div> <p></a></figure> <p id="96f1" class="pw-post-body-paragraph mw mx gu my b mz pc nb nc nd pd nf ng nh pe nj nk nl pf nn no np pg nr ns nt gn bk">Day 2 and Day 3 will characteristic full-day licensed workshops targeted on:</p> <ul class=""> <li id="0590" class="mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt ph pi pj bk">Conversational UX: Design efficient AI brokers with a give attention to consumer expertise.</li> <li id="e216" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">AI & LLM Growth: From idea to follow — construct and deploy your AI agent.</li> </ul> <ul class=""> <li id="c613" class="mw mx gu my b mz pc nb nc nd pd nf ng nh pe nj nk nl pf nn no np pg nr ns nt ph pi pj bk">Uncover what’s working from the highest business consultants and practitioners.</li> <li id="d9a4" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Community with pioneers and friends within the business.</li> <li id="8774" class="mw mx gu my b mz pk nb nc nd pl nf ng nh pm nj nk nl pn nn no np po nr ns nt ph pi pj bk">Construct and launch your personal AI agent with direct steerage from main builders.</li> </ul> <figure class="nu nv nw nx ny nz oa ob paragraph-image"><a href="https://www.chatbotconference.com/"></p> <div class="ab cn cb oc"><picture><source srcset="https://miro.medium.com/v2/format:webp/0*S02xyKl1hdyqPJql.jpeg 640w, https://miro.medium.com/v2/format:webp/0*S02xyKl1hdyqPJql.jpeg 720w, https://miro.medium.com/v2/format:webp/0*S02xyKl1hdyqPJql.jpeg 750w, https://miro.medium.com/v2/format:webp/0*S02xyKl1hdyqPJql.jpeg 786w, https://miro.medium.com/v2/format:webp/0*S02xyKl1hdyqPJql.jpeg 828w, https://miro.medium.com/v2/format:webp/0*S02xyKl1hdyqPJql.jpeg 1100w, https://miro.medium.com/v2/format:webp/0*S02xyKl1hdyqPJql.jpeg 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px" type="image/webp"/><source data-testid="og" srcset="https://miro.medium.com/v2/0*S02xyKl1hdyqPJql.jpeg 640w, https://miro.medium.com/v2/0*S02xyKl1hdyqPJql.jpeg 720w, https://miro.medium.com/v2/0*S02xyKl1hdyqPJql.jpeg 750w, https://miro.medium.com/v2/0*S02xyKl1hdyqPJql.jpeg 786w, https://miro.medium.com/v2/0*S02xyKl1hdyqPJql.jpeg 828w, https://miro.medium.com/v2/0*S02xyKl1hdyqPJql.jpeg 1100w, https://miro.medium.com/v2/0*S02xyKl1hdyqPJql.jpeg 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px"/><img alt="" class="md bh od c" width="700" loading="lazy" role="presentation"/></picture></div> <p></a></figure> <p id="9561" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">Our convention is extra than simply talks and workshops; it’s an incubator for concepts and partnerships. Attendees go away not simply with data, however with actionable insights and new connections that may propel their careers and ventures ahead.</p> <figure class="nu nv nw nx ny nz oa ob paragraph-image"><a href="https://www.chatbotconference.com/"></p> <div class="ab cn cb oc"><picture><source srcset="https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px" type="image/webp"/><source data-testid="og" srcset="https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px"/><img alt="" class="md bh od c" width="700" loading="lazy" role="presentation"/></picture></div> <p></a></figure> <p id="8cea" class="pw-post-body-paragraph mw mx gu my b mz pc nb nc nd pd nf ng nh pe nj nk nl pf nn no np pg nr ns nt gn bk">Don’t miss out on the chance to be on the forefront of AI know-how. Register now to safe your spot on the Chatbot Convention 2024, the place the way forward for AI involves life.</p> <p id="3d16" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">Register Now: <a class="af pp" href="https://www.chatbotconference.com/" rel="noopener ugc nofollow" target="_blank">Chatbot Convention 2024 Registration</a></p> <p id="59ff" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">Wanting ahead to welcoming you to an occasion full of innovation, studying, and networking!</p> <p id="271c" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">Heat regards,</p> <p id="ad88" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk">The Chatbot Convention Workforce</p> <figure class="nu nv nw nx ny nz oa ob paragraph-image"><a href="https://www.chatbotconference.com/"></p> <div class="ab cn cb oc"><picture><source srcset="https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/format:webp/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px" type="image/webp"/><source data-testid="og" srcset="https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 640w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 720w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 750w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 786w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 828w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1100w, https://miro.medium.com/v2/0*rrysCR9coleu_Jz1.png 1400w" sizes="(min-resolution: 4dppx) and (max-width: 700px) 50vw, (-webkit-min-device-pixel-ratio: 4) and (max-width: 700px) 50vw, (min-resolution: 3dppx) and (max-width: 700px) 67vw, (-webkit-min-device-pixel-ratio: 3) and (max-width: 700px) 65vw, (min-resolution: 2.5dppx) and (max-width: 700px) 80vw, (-webkit-min-device-pixel-ratio: 2.5) and (max-width: 700px) 80vw, (min-resolution: 2dppx) and (max-width: 700px) 100vw, (-webkit-min-device-pixel-ratio: 2) and (max-width: 700px) 100vw, 700px"/><img alt="" class="md bh od c" width="700" loading="lazy" role="presentation"/></picture></div> <p></a></figure> <p id="e13e" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk"><em class="pq">P.S. House is restricted, and our early chook tickets are going quick! Safe your spot in the present day to be a part of the AI revolution.</em></p> <p id="9c23" class="pw-post-body-paragraph mw mx gu my b mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt gn bk"><a class="af pp" href="https://chatbotslife.journey.io/p/7fe40a70cd9040c580973a7a85beb5a3" rel="noopener ugc nofollow" target="_blank"><strong class="my gv">>>> Sponsorships</strong></a></p> </div> <p></p> </div> </div> </div> <div class="td_module_15 td_module_wrap clearfix post-2982 post type-post status-publish format-standard has-post-thumbnail category-robotics" > <div class="item-details"> <h3 class="entry-title td-module-title"> <a href="https://codesanitize.com/limx-demos-newest-era-of-cl-1-humanoid/" rel="bookmark" title="LimX demos newest era of CL-1 humanoid"> LimX demos newest era of CL-1 humanoid </a> </h3> <div class="td-module-meta-info"> <ul class="td-category"> <li class="entry-category"><a href="https://codesanitize.com/category/robotics/">Robotics</a></li> </ul> <div class="td-post-author-name"> <a href="https://codesanitize.com/author/codesanitize-com/">codesanitize</a> <div class="td-author-line"> - </div> </div> <span class="td-post-date"> <time class="entry-date updated td-module-date" datetime="2024-08-21T06:23:22+00:00" >21 August 2024</time> </span> <div class="td-post-comments"> <a href="https://codesanitize.com/limx-demos-newest-era-of-cl-1-humanoid/#respond"> <i class="td-icon-comments"></i> 0 </a> </div> </div> <div class="td-module-thumb"> <a href="https://codesanitize.com/limx-demos-newest-era-of-cl-1-humanoid/" rel="bookmark" class="td-image-wrap" title="LimX demos newest era of CL-1 humanoid"> <img post-id="2982" fifu-featured="1" class="entry-thumb" src="https://i3.wp.com/www.therobotreport.com/wp-content/uploads/2024/08/LimX-Dynamics-Robot-CL-1-featured.jpg?w=768&resize=768,0&ssl=1" alt="LimX demos newest era of CL-1 humanoid" title="LimX demos newest era of CL-1 humanoid" title="LimX demos newest era of CL-1 humanoid" /> </a> </div> <div class="td-post-text-content td-post-content tagdiv-type"> <p> <br /> </p> <div> <table id="amazon-polly-audio-table"> <tr> <td id="amazon-polly-audio-tab"> <p>Take heed to this text</p> <div id="amazon-polly-by-tab"><a href="https://aws.amazon.com/polly/" target="_blank" rel="noopener noreferrer"><img decoding="async" src="https://d12ee1u74lotna.cloudfront.net/images/Voiced_by_Amazon_Polly_EN.png" width="100" alt="Voiced by Amazon Polly"/></a></div> </td> </tr> </table> <div align="center"> <p><iframe title="Humanoid Robot CL-1 Performs Continuous Heavy Objects Loading" width="696" height="392" src="https://www.youtube.com/embed/11Iz8x27jS4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p> </div> <p>LimX Dynamics upgraded the bodily and useful capabilities of its CL-1 humanoid robotic. Since <a href="https://www.therobotreport.com/limx-dynamics-shows-off-its-cl-1-humanoids-stair-climbing-abilities/" target="_blank" rel="noopener">debuting the robotic in late 2023</a>, the corporate has been busy educating the robotic to work in a warehouse setting.</p> <p>The video above demonstrates the CL-1 choosing up and shifting heavy objects all through a mock warehouse. The corporate stated the video exhibits the humanoid performing the duties in a single, unedited lower of the video.</p> <p>LimX stated the robotic makes use of real-time notion to know the world round it, together with full-body coordinated movement to elevate and place heavy objects. The robotic shouldn’t be geared up with a human-like hand, nevertheless it makes use of easy paddle finish effectors to grip and management a tote or field.</p> <p>The robotic additionally demonstrates the way it can react to a real-time interruption when buying an merchandise by reevaluating the scene, replanning, after which persevering with on its mission.</p> <h2>Placing humanoids to work</h2> <p><em>The Robotic Report</em> has tracked the milestones of all the main <a href="https://www.therobotreport.com/category/robots-platforms/humanoids/" target="_blank" rel="noopener">humanoid</a> builders through the years. The earliest movies had been fundamental strolling demos. However issues have drastically modified during the last 12 months or so.</p> <p>Agility Robotics Digit was named the <a href="https://www.therobotreport.com/rbr50-company-2024/agility-robotics-digit-humanoid-named-robot-of-the-year/" target="_blank" rel="noopener">2024 RBR50 Robotic of the 12 months</a>, because it matured into a sturdy resolution and the corporate <a href="https://www.therobotreport.com/agility-robotics-opening-robofab-to-manufacture-humanoid-robots/" target="_blank" rel="noopener">opened a brand new RoboFab manufacturing unit</a> to start large-scale manufacturing. In July 2024, Agility Robotics was the <a href="https://www.therobotreport.com/agility-robotics-digit-humanoid-lands-first-official-job/" target="_blank" rel="noopener">first firm to promote a humanoid robotic for manufacturing</a> to a paying buyer.</p> <p>A number of different firms, like <a href="https://www.therobotreport.com/tag/tesla/">Tesla</a>, <a href="https://www.therobotreport.com/tag/figure-ai/" target="_blank" rel="noopener">Determine AI</a>, and <a href="https://www.therobotreport.com/tag/sanctuary-ai/" target="_blank" rel="noopener">Sanctuary AI</a> have produced in depth movies illustrating the nimbleness of hand-eye coordination with five-fingered robotic palms greedy and controlling objects. Warehousing and manufacturing will seemingly <a href="https://www.therobotreport.com/humanoids-getting-their-feet-wet-in-logistics/">be the early markets for humanoids</a>.</p> <p>Amazon is an investor in Agility Robotics, <a href="https://www.therobotreport.com/hyundai-completes-acquisition-controlling-stake-boston-dynamics/">Hyundai owns Boston Dynamics</a> and lots of the worldwide automotive firms wish to accomplice with humanoid robotic builders as they proceed to mature.</p> <p> </p> <p><!--<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"> <rdf:Description rdf:about="https://www.therobotreport.com/limx-demos-latest-generation-of-cl-1-humanoid/" dc:identifier="https://www.therobotreport.com/limx-demos-latest-generation-of-cl-1-humanoid/" dc:title="LimX demos latest generation of CL-1 humanoid" trackback:ping="https://www.therobotreport.com/limx-demos-latest-generation-of-cl-1-humanoid/trackback/" /> </rdf:RDF>--> </div> <p></p> </div> </div> </div> <div class="page-nav td-pb-padding-side"><a href="https://codesanitize.com/page/3800/?query-15-page=25" aria-label="prev-page" ><i class="td-icon-menu-left"></i></a><a href="https://codesanitize.com/?query-15-page=25" class="first" title="1">1</a><span class="extend">...</span><a href="https://codesanitize.com/page/3800/?query-15-page=25" class="page" title="3,800">3,800</a><span class="current">3,801</span><a href="https://codesanitize.com/page/3802/?query-15-page=25" class="page" title="3,802">3,802</a><span class="extend">...</span><a href="https://codesanitize.com/page/3924/?query-15-page=25" class="last" title="3,924">3,924</a><a href="https://codesanitize.com/page/3802/?query-15-page=25" aria-label="next-page" ><i class="td-icon-menu-right"></i></a><span class="pages">Page 3,801 of 3,924</span><div class="clearfix"></div></div> </div> </div> <div class="td-pb-span4 td-main-sidebar"> <div class="td-ss-main-sidebar"> <div class="td_block_wrap td_block_popular_categories td_block_widget tdi_91 widget widget_categories td-pb-border-top td_block_template_1" data-td-block-uid="tdi_91" > <style> /* custom css */ .td_block_popular_categories{ padding-bottom: 0; } </style><div class="td-block-title-wrap"></div><ul class="td-pb-padding-side"><li><a href="https://codesanitize.com/category/cyber-security/"><span class="td-cat-name">Cyber Security</span><span class="td-cat-no">2004</span></a></li><li><a href="https://codesanitize.com/category/technology/"><span class="td-cat-name">Technology</span><span class="td-cat-no">2000</span></a></li><li><a href="https://codesanitize.com/category/artificial-intelligence/"><span class="td-cat-name">Artificial Intelligence</span><span class="td-cat-no">2000</span></a></li><li><a href="https://codesanitize.com/category/big-data/"><span class="td-cat-name">Big Data</span><span class="td-cat-no">2000</span></a></li><li><a href="https://codesanitize.com/category/apple/"><span class="td-cat-name">Apple</span><span class="td-cat-no">2000</span></a></li><li><a href="https://codesanitize.com/category/hacking/"><span class="td-cat-name">Hacking</span><span class="td-cat-no">1979</span></a></li></ul></div><aside id="block-14" class="td_block_template_1 widget block-14 widget_block widget_recent_comments"><ol class="has-avatars has-dates has-excerpts wp-block-latest-comments"><li class="wp-block-latest-comments__comment"><img alt='' src='https://secure.gravatar.com/avatar/2c452dd518e1bc621ce9218c2c8c870b?s=48&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/2c452dd518e1bc621ce9218c2c8c870b?s=96&d=mm&r=g 2x' class='avatar avatar-48 photo wp-block-latest-comments__comment-avatar' height='48' width='48' /><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://www.binance.info/activity/referral-entry/CPA?ref=CPA_003SEVV6ZA">binance</a> on <a class="wp-block-latest-comments__comment-link" href="https://codesanitize.com/the-way-to-entry-openai-o1/#comment-922">The way to Entry OpenAI o1?</a><time datetime="2025-02-23T12:33:34+00:00" class="wp-block-latest-comments__comment-date">23 February 2025</time></footer><div class="wp-block-latest-comments__comment-excerpt"><p>Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope…</p> </div></article></li><li class="wp-block-latest-comments__comment"><img alt='' src='https://secure.gravatar.com/avatar/4286bc8367256ddecec77b6a02c84699?s=48&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/4286bc8367256ddecec77b6a02c84699?s=96&d=mm&r=g 2x' class='avatar avatar-48 photo wp-block-latest-comments__comment-avatar' height='48' width='48' /><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://www.binance.info/activity/referral-entry/CPA?ref=CPA_003SEVV6ZA">Kode Terbaik</a> on <a class="wp-block-latest-comments__comment-link" href="https://codesanitize.com/reversing-ios-system-libraries-utilizing-radare2-a-deep-dive-into-dyld-cache-half-3/#comment-916">Reversing iOS System Libraries Utilizing Radare2: A Deep Dive into Dyld Cache (Half 3)</a><time datetime="2025-02-22T20:59:09+00:00" class="wp-block-latest-comments__comment-date">22 February 2025</time></footer><div class="wp-block-latest-comments__comment-excerpt"><p>Thank you for your sharing. I am worried that I lack creative ideas. It is your article that makes me…</p> </div></article></li><li class="wp-block-latest-comments__comment"><img alt='' src='https://secure.gravatar.com/avatar/bbedfcfcf0c2bdc74c72166ff33bd1fc?s=48&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/bbedfcfcf0c2bdc74c72166ff33bd1fc?s=96&d=mm&r=g 2x' class='avatar avatar-48 photo wp-block-latest-comments__comment-avatar' height='48' width='48' /><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://www.binance.info/activity/referral-entry/CPA?ref=CPA_003SEVV6ZA">binance Register</a> on <a class="wp-block-latest-comments__comment-link" href="https://codesanitize.com/palms-on-with-apples-silicone-instances-for-iphone-16/#comment-915">Palms on with Apple’s silicone instances for iPhone 16</a><time datetime="2025-02-22T19:29:43+00:00" class="wp-block-latest-comments__comment-date">22 February 2025</time></footer><div class="wp-block-latest-comments__comment-excerpt"><p>Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope…</p> </div></article></li><li class="wp-block-latest-comments__comment"><img alt='' src='https://secure.gravatar.com/avatar/5a04708506a43d9bf6fe5f079721ae73?s=48&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/5a04708506a43d9bf6fe5f079721ae73?s=96&d=mm&r=g 2x' class='avatar avatar-48 photo wp-block-latest-comments__comment-avatar' height='48' width='48' /><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://www.binance.info/activity/referral-entry/CPA?ref=CPA_003SEVV6ZA">best binance</a> on <a class="wp-block-latest-comments__comment-link" href="https://codesanitize.com/ios-scrollview-begin-below-the-statusbar/#comment-914">ios – ScrollView begin below the StatusBar</a><time datetime="2025-02-22T16:55:06+00:00" class="wp-block-latest-comments__comment-date">22 February 2025</time></footer><div class="wp-block-latest-comments__comment-excerpt"><p>Thank you for your sharing. I am worried that I lack creative ideas. It is your article that makes me…</p> </div></article></li><li class="wp-block-latest-comments__comment"><img alt='' src='https://secure.gravatar.com/avatar/567cc7e928ff79c0bef1b0d7be520818?s=48&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/567cc7e928ff79c0bef1b0d7be520818?s=96&d=mm&r=g 2x' class='avatar avatar-48 photo wp-block-latest-comments__comment-avatar' height='48' width='48' /><article><footer class="wp-block-latest-comments__comment-meta"><a class="wp-block-latest-comments__comment-author" href="https://www.binance.info/activity/referral-entry/CPA?ref=CPA_003SEVV6ZA">Binance注册</a> on <a class="wp-block-latest-comments__comment-link" href="https://codesanitize.com/dealing-with-bursty-visitors-in-actual-time-analytics-purposes/#comment-911">Dealing with Bursty Visitors in Actual-Time Analytics Purposes</a><time datetime="2025-02-22T13:18:38+00:00" class="wp-block-latest-comments__comment-date">22 February 2025</time></footer><div class="wp-block-latest-comments__comment-excerpt"><p>Thank you for your sharing. I am worried that I lack creative ideas. It is your article that makes me…</p> </div></article></li></ol></aside><aside id="block-15" class="td_block_template_1 widget block-15 widget_block widget_recent_entries"><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://codesanitize.com/u-s-doj-seizes-8-2-million-from-hackers-linked-to-pig-butchering-rip-off/">U.S. DOJ Seizes $8.2 Million from Hackers Linked to Pig Butchering Rip-off</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://codesanitize.com/ios-app-terminating-whereas-utilizing-in_app_purchase-into-18-3-1-into-flutter/">iOS App terminating whereas utilizing in_app_purchase into 18.3.1 into Flutter</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://codesanitize.com/aptera-takes-its-first-street-journey/">Aptera Takes Its First Street Journey</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://codesanitize.com/ios-how-can-i-exploit-animation-in-a-tabview-for-an-onboarding-movement/">ios – How can I exploit animation in a TabView for an onboarding movement?</a></li> <li><a class="wp-block-latest-posts__post-title" href="https://codesanitize.com/whats-regression-testing-2025-regression-check-information/">What’s Regression Testing? (2025 Regression Check Information)</a></li> </ul></aside> </div> </div> </div> <!-- /.td-pb-row --> </div> <!-- /.td-container --> </div> <!-- /.td-main-content-wrap --> <div class="td-footer-template-wrap" style="position: relative"> <div class="td-footer-wrap "> <div id="tdi_92" class="tdc-zone"><div class="tdc_zone tdi_93 wpb_row td-pb-row" > <style scoped> /* custom css */ .tdi_93{ min-height: 0; } /* inline tdc_css att */ .tdi_93{ margin-right:auto !important; margin-left:auto !important; width:1164px !important; } /* landscape */ @media (min-width: 1019px) and (max-width: 1140px) { .tdi_93{ width:100% !important; } } /* portrait */ @media (min-width: 768px) and (max-width: 1018px) { .tdi_93{ width:100% !important; } } /* phone */ @media (max-width: 767px) { .tdi_93{ width:100% !important; } } </style><div id="tdi_94" class="tdc-row"><div class="vc_row tdi_95 wpb_row td-pb-row tdc-element-style" > <style scoped> /* custom css */ .tdi_95, .tdi_95 .tdc-columns{ min-height: 0; }.tdi_95, .tdi_95 .tdc-columns{ display: block; }.tdi_95 .tdc-columns{ width: 100%; } /* inline tdc_css att */ .tdi_95{ padding-top:60px !important; padding-bottom:60px !important; position:relative; } .tdi_95 .td_block_wrap{ text-align:left } /* phone */ @media (max-width: 767px) { .tdi_95{ padding-top:40px !important; padding-bottom:40px !important; } } /* portrait */ @media (min-width: 768px) and (max-width: 1018px) { .tdi_95{ padding-top:40px !important; padding-bottom:40px !important; } } </style> <div class="tdi_94_rand_style td-element-style" ><div class="td-element-style-before"><style> .tdi_94_rand_style > .td-element-style-before { content:'' !important; width:100% !important; height:100% !important; position:absolute !important; top:0 !important; left:0 !important; display:block !important; z-index:0 !important; background-image:url("https://codesanitize.com/wp-content/uploads/2024/08/3.jpg") !important; background-position:center center !important; opacity:0.2 !important; background-size:cover !important; } </style></div><style> .tdi_94_rand_style{ background-color:#232d35 !important; } </style></div><div class="vc_column tdi_97 wpb_column vc_column_container tdc-column td-pb-span12"> <style scoped> /* custom css */ .tdi_97{ vertical-align: baseline; }.tdi_97 > .wpb_wrapper, .tdi_97 > .wpb_wrapper > .tdc-elements{ display: block; }.tdi_97 > .wpb_wrapper > .tdc-elements{ width: 100%; }.tdi_97 > .wpb_wrapper > .vc_row_inner{ width: auto; }.tdi_97 > .wpb_wrapper{ width: auto; height: auto; } </style><div class="wpb_wrapper"><div class="tdm_block td_block_wrap tdm_block_column_title tdi_98 tdm-content-horiz-center td-pb-border-top td_block_template_1" data-td-block-uid="tdi_98" > <style> /* custom css */ .tdm_block_column_title{ margin-bottom: 0; display: inline-block; width: 100%; } </style><div class="td-block-row"><div class="td-block-span12 tdm-col"> <style> body .tdi_99 .tdm-title{ color: #ffffff; } </style><div class="tds-title tds-title1 td-fix-index tdi_99"><h3 class="tdm-title tdm-title-sm">ABOUT US</h3></div></div></div></div><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_100 tdm-content-horiz-center td-pb-border-top td_block_template_1" data-td-block-uid="tdi_100" > <style> /* inline tdc_css att */ .tdi_100{ width:72% !important; } /* phone */ @media (max-width: 767px) { .tdi_100{ width:100% !important; } } /* portrait */ @media (min-width: 768px) and (max-width: 1018px) { .tdi_100{ width:80% !important; } } /* landscape */ @media (min-width: 1019px) and (max-width: 1140px) { .tdi_100{ width:78% !important; } } </style> <style> /* custom css */ .tdm_block.tdm_block_inline_text{ margin-bottom: 0; vertical-align: top; }.tdm_block.tdm_block_inline_text .tdm-descr{ margin-bottom: 0; -webkit-transform: translateZ(0); transform: translateZ(0); }.tdc-row-content-vert-center .tdm-inline-text-yes{ vertical-align: middle; }.tdc-row-content-vert-bottom .tdm-inline-text-yes{ vertical-align: bottom; }.tdi_100 .tdm-descr{ color: #eaeaea; font-family:Rubik !important;font-size:13px !important;line-height:1.6 !important;font-weight:400 !important; } /* portrait */ @media (min-width: 768px) and (max-width: 1018px){ .tdi_100 .tdm-descr{ font-family:Rubik !important;font-size:11px !important;line-height:1.6 !important;font-weight:400 !important; } } </style><p class="tdm-descr">Welcome to CodeSanitize, your number one source for all things coding and technology. We’re dedicated to providing you the very best of software development tutorials, tips, and resources, with a focus on clarity, practical examples, and up-to-date content.</p></div></div></div></div></div><div id="tdi_101" class="tdc-row"><div class="vc_row tdi_102 wpb_row td-pb-row tdc-element-style tdc-row-content-vert-center" > <style scoped> /* custom css */ .tdi_102, .tdi_102 .tdc-columns{ min-height: 0; }.tdi_102, .tdi_102 .tdc-columns{ display: block; }.tdi_102 .tdc-columns{ width: 100%; }@media (min-width: 767px) { .tdi_102.tdc-row-content-vert-center, .tdi_102.tdc-row-content-vert-center .tdc-columns { display: flex; align-items: center; flex: 1; } .tdi_102.tdc-row-content-vert-bottom, .tdi_102.tdc-row-content-vert-bottom .tdc-columns { display: flex; align-items: flex-end; flex: 1; } .tdi_102.tdc-row-content-vert-center .td_block_wrap { vertical-align: middle; } .tdi_102.tdc-row-content-vert-bottom .td_block_wrap { vertical-align: bottom; } } /* inline tdc_css att */ .tdi_102{ padding-top:8px !important; padding-bottom:8px !important; position:relative; } .tdi_102 .td_block_wrap{ text-align:left } /* phone */ @media (max-width: 767px) { .tdi_102{ padding-top:10px !important; padding-bottom:5px !important; } } /* portrait */ @media (min-width: 768px) and (max-width: 1018px) { .tdi_102{ padding-top:6px !important; padding-bottom:6px !important; } } </style> <div class="tdi_101_rand_style td-element-style" ><style> .tdi_101_rand_style{ background-color:#11171c !important; } </style></div><div class="vc_column tdi_104 wpb_column vc_column_container tdc-column td-pb-span6"> <style scoped> /* custom css */ .tdi_104{ vertical-align: baseline; }.tdi_104 > .wpb_wrapper, .tdi_104 > .wpb_wrapper > .tdc-elements{ display: block; }.tdi_104 > .wpb_wrapper > .tdc-elements{ width: 100%; }.tdi_104 > .wpb_wrapper > .vc_row_inner{ width: auto; }.tdi_104 > .wpb_wrapper{ width: auto; height: auto; } /* inline tdc_css att */ /* phone */ @media (max-width: 767px) { .tdi_104{ margin-bottom:8px !important; } } </style><div class="wpb_wrapper"><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_105 tdm-content-horiz-left td-pb-border-top td_block_template_1" data-td-block-uid="tdi_105" > <style> /* inline tdc_css att */ /* phone */ @media (max-width: 767px) { .tdi_105{ margin-top:0px !important; justify-content:center !important; text-align:center !important; } } </style> <style> /* custom css */ .tdi_105 .tdm-descr{ color: #cccccc; font-family:Rubik !important;font-size:13px !important;line-height:1.2 !important; } /* portrait */ @media (min-width: 768px) and (max-width: 1018px){ .tdi_105 .tdm-descr{ font-family:Rubik !important;font-size:11px !important;line-height:1.2 !important; } } </style><p class="tdm-descr">© Copyright 2024 - codesanitize.com. All rights reserved </p></div></div></div><div class="vc_column tdi_107 wpb_column vc_column_container tdc-column td-pb-span6"> <style scoped> /* custom css */ .tdi_107{ vertical-align: baseline; }.tdi_107 > .wpb_wrapper, .tdi_107 > .wpb_wrapper > .tdc-elements{ display: block; }.tdi_107 > .wpb_wrapper > .tdc-elements{ width: 100%; }.tdi_107 > .wpb_wrapper > .vc_row_inner{ width: auto; }.tdi_107 > .wpb_wrapper{ width: auto; height: auto; } /* inline tdc_css att */ .tdi_107{ justify-content:flex-end !important; text-align:right !important; } /* phone */ @media (max-width: 767px) { .tdi_107{ justify-content:center !important; text-align:center !important; } } </style><div class="wpb_wrapper"><div class="td_block_wrap td_block_list_menu tdi_108 td-pb-border-top td_block_template_1 widget" data-td-block-uid="tdi_108" > <style> /* inline tdc_css att */ .tdi_108{ margin-bottom:0px !important; } /* desktop */ @media(min-width: 1141px) { .tdi_108 { display:inline-table !important; } } /* phone */ @media (max-width: 767px) { .tdi_108{ display:inline-block !important; } } /* portrait */ @media (min-width: 768px) and (max-width: 1018px) { .tdi_108{ display:inline-table !important; } } /* landscape */ @media (min-width: 1019px) and (max-width: 1140px) { .tdi_108{ display:inline-table !important; } } </style> <style> /* custom css */ .td_block_list_menu ul{ flex-wrap: wrap; margin-left: 12px; }.td_block_list_menu ul li{ margin-left: 0; }.td_block_list_menu .sub-menu{ padding-left: 22px; }.td_block_list_menu .sub-menu li{ font-size: 13px; }.tdi_108 li{ display: inline-block; font-family:Rubik !important;font-size:13px !important;line-height:1.2 !important; }.tdi_108 .menu{ display: flex; }.tdi_108 .sub-menu{ display: none; }.tdi_108 ul{ margin: 0px; text-align: left; justify-content: flex-start; }.tdi_108 ul li{ margin-right: 16px; }.tdi_108 ul li:last-child{ margin-right: 0; }.tdi_108 a{ color: #cccccc; }.tdi_108 a:hover{ color: #ffffff; } /* portrait */ @media (min-width: 768px) and (max-width: 1018px){ .tdi_108 li{ font-family:Rubik !important;font-size:11px !important;line-height:1.2 !important; } } </style><div class="td-block-title-wrap"></div><div id=tdi_108 class="td_block_inner td-fix-index"><div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-1173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1173"><a href="https://codesanitize.com/codesanitize-3/">About US</a></li> <li id="menu-item-1174" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1174"><a href="https://codesanitize.com/codesanitize-2/">Contact</a></li> <li id="menu-item-1172" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-1172"><a rel="privacy-policy" href="https://codesanitize.com/privacy-policy/">Privacy Policy</a></li> <li id="menu-item-1176" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1176"><a href="https://codesanitize.com/terms-conditions/">Terms & Conditions</a></li> </ul></div></div></div></div></div></div></div></div></div> </div> </div> <style> .tdc-footer-template .td-main-content-wrap { padding-bottom: 0; } </style> </div><!--close td-outer-wrap--> <!-- Theme: Newspaper by tagDiv.com 2021 Version: 11 (rara) Deploy mode: deploy uid: 67ea3be2ac0ca --> <!-- Custom css from theme panel --> <style type="text/css" media="screen"> /* custom css theme panel */ .tdc-font-tdmp { font-family: td-multipurpose; } </style> <script type="text/javascript" src="https://codesanitize.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script> <script type="text/javascript" src="https://codesanitize.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://codesanitize.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.4" id="swv-js"></script> <script type="text/javascript" id="contact-form-7-js-translations"> /* <![CDATA[ */ ( function( domain, translations ) { var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; localeData[""].domain = domain; wp.i18n.setLocaleData( localeData, domain ); } )( "contact-form-7", {"translation-revision-date":"2024-05-21 11:58:24+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Error:":["Error:"]}},"comment":{"reference":"includes\/js\/index.js"}} ); /* ]]> */ </script> <script type="text/javascript" id="contact-form-7-js-before"> /* <![CDATA[ */ var wpcf7 = { "api": { "root": "https:\/\/codesanitize.com\/wp-json\/", "namespace": "contact-form-7\/v1" }, "cached": 1 }; /* ]]> */ </script> <script type="text/javascript" src="https://codesanitize.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.4" id="contact-form-7-js"></script> <script type="text/javascript" src="https://codesanitize.com/wp-includes/js/underscore.min.js?ver=1.13.7" id="underscore-js"></script> <script type="text/javascript" src="https://codesanitize.com/wp-content/plugins/td-cloud-library/assets/js/js_posts_autoload.min.js?ver=45456ad3a6d583e9cee0a9fe2cdd86cb" id="tdb_js_posts_autoload-js"></script> <script type="text/javascript" src="https://codesanitize.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js?ver=11" id="td-site-min-js"></script> <script type="text/javascript" src="https://codesanitize.com/wp-content/plugins/td-cloud-library/assets/js/js_files_for_front.min.js?ver=45456ad3a6d583e9cee0a9fe2cdd86cb" id="tdb_js_files_for_front-js"></script> <!-- JS generated by theme --> <script> jQuery().ready(function () { tdWeather.addItem({"block_uid":"tdb_header_weather_uid","location":"New York","api_location":"New York","api_language":"en","api_key":"c396e133ca2ab7dfa7cffcf66e07ca35","today_icon":"broken-clouds-n","today_icon_text":"overcast clouds","today_temp":[14.6,58.3],"today_humidity":90,"today_wind_speed":[2.7,1.7],"today_min":[14.6,58.3],"today_max":[14.6,58.3],"today_clouds":98,"current_unit":0,"forecast":[{"timestamp":1743400800,"day_name":"Mon","day_temp":[22,72],"owm_day_index":0},{"timestamp":1743465600,"day_name":"Tue","day_temp":[16,60],"owm_day_index":6},{"timestamp":1743552000,"day_name":"Wed","day_temp":[10,51],"owm_day_index":14},{"timestamp":1743638400,"day_name":"Thu","day_temp":[22,72],"owm_day_index":22},{"timestamp":1743724800,"day_name":"Fri","day_temp":[21,69],"owm_day_index":30}]}); }); /* global jQuery:{} */ jQuery(window).on( 'load', function () { var tdbMenuItem = new tdbMenu.item(); tdbMenuItem.blockUid = 'tdi_60'; tdbMenuItem.jqueryObj = jQuery('.tdi_60'); tdbMenuItem.isMegaMenuFull = true; tdbMenu.addItem(tdbMenuItem); }); jQuery().ready(function () { var tdbSearchItem = new tdbSearch.item(); //block unique ID tdbSearchItem.blockUid = 'tdi_65'; tdbSearchItem.blockAtts = '{"results_msg_align":"content-horiz-center","image_floated":"float_left","image_width":"30","image_size":"td_324x400","show_cat":"none","show_btn":"none","show_date":"","show_review":"none","show_com":"none","show_excerpt":"none","show_author":"none","meta_padding":"0 0 0 15px","art_title":"0 0 5px","all_modules_space":"15","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==","form_align":"content-horiz-right","icon_color":"#ffffff","icon_size":"eyJhbGwiOiIxOCIsInBvcnRyYWl0IjoiMTQifQ==","icon_padding":"eyJhbGwiOjIuNiwicG9ydHJhaXQiOiIyLjgifQ==","tdicon":"td-icon-magnifier-medium-short-light","show_form":"yes","form_border_color":"#dd3333","arrow_color":"#dd3333","form_shadow_shadow_size":"10","form_shadow_shadow_color":"rgba(0,0,0,0.12)","f_input_font_family":"712","f_input_font_weight":"400","f_btn_font_family":"712","f_btn_font_weight":"400","f_input_font_size":"13","f_placeholder_font_family":"712","f_placeholder_font_weight":"400","f_placeholder_font_size":"13","f_btn_font_size":"13","f_results_msg_font_family":"712","f_results_msg_font_size":"11","f_title_font_family":"712","f_title_font_size":"13","f_title_font_line_height":"1.2","f_meta_font_family":"712","f_meta_font_size":"11","f_meta_font_line_height":"1","title_txt_hover":"#008d7f","btn_bg_h":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjMDA4ZDdmIiwiY29sb3IyIjoiIzAwOGQ3ZiIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzAwOGQ3ZjsiLCJjc3NQYXJhbXMiOiIwZGVnLCMwMDhkN2YsIzAwOGQ3ZiJ9","modules_gap":"0","image_height":"80","meta_info_align":"center","results_msg_color_h":"#008d7f","block_type":"tdb_header_search","disable_live_search":"","separator":"","toggle_txt":"","toggle_txt_pos":"","toggle_txt_align":"0","toggle_txt_space":"","toggle_horiz_align":"content-horiz-left","inline":"","float_block":"","form_offset":"","form_offset_left":"","form_width":"","form_content_width":"","form_padding":"","form_border":"","form_align_screen":"","input_placeholder":"","placeholder_travel":"0","input_padding":"","input_border":"","input_radius":"","btn_text":"Search","btn_tdicon":"","btn_icon_pos":"","btn_icon_size":"","btn_icon_space":"","btn_icon_align":"0","btn_margin":"","btn_padding":"","btn_border":"","btn_radius":"","results_padding":"","results_border":"","results_msg_padding":"","results_msg_border":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","results_limit":"","modules_on_row":"100%","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","art_btn":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","btn_title":"","btn_border_width":"","form_general_bg":"","icon_color_h":"","toggle_txt_color":"","toggle_txt_color_h":"","f_toggle_txt_font_header":"","f_toggle_txt_font_title":"Text","f_toggle_txt_font_settings":"","f_toggle_txt_font_family":"","f_toggle_txt_font_size":"","f_toggle_txt_font_line_height":"","f_toggle_txt_font_style":"","f_toggle_txt_font_weight":"","f_toggle_txt_font_transform":"","f_toggle_txt_font_spacing":"","f_toggle_txt_":"","form_bg":"","form_shadow_shadow_header":"","form_shadow_shadow_title":"Shadow","form_shadow_shadow_offset_horizontal":"","form_shadow_shadow_offset_vertical":"","form_shadow_shadow_spread":"","input_color":"","placeholder_color":"","placeholder_opacity":"0","input_bg":"","input_border_color":"","input_shadow_shadow_header":"","input_shadow_shadow_title":"Input shadow","input_shadow_shadow_size":"","input_shadow_shadow_offset_horizontal":"","input_shadow_shadow_offset_vertical":"","input_shadow_shadow_spread":"","input_shadow_shadow_color":"","btn_color":"","btn_color_h":"","btn_icon_color":"","btn_icon_color_h":"","btn_bg":"","btn_border_color":"","btn_border_color_h":"","btn_shadow_shadow_header":"","btn_shadow_shadow_title":"Button shadow","btn_shadow_shadow_size":"","btn_shadow_shadow_offset_horizontal":"","btn_shadow_shadow_offset_vertical":"","btn_shadow_shadow_spread":"","btn_shadow_shadow_color":"","f_input_font_header":"","f_input_font_title":"Input text","f_input_font_settings":"","f_input_font_line_height":"","f_input_font_style":"","f_input_font_transform":"","f_input_font_spacing":"","f_input_":"","f_placeholder_font_title":"Placeholder text","f_placeholder_font_settings":"","f_placeholder_font_line_height":"","f_placeholder_font_style":"","f_placeholder_font_transform":"","f_placeholder_font_spacing":"","f_placeholder_":"","f_btn_font_title":"Button text","f_btn_font_settings":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","results_bg":"","results_border_color":"","results_msg_color":"","results_msg_bg":"","results_msg_border_color":"","f_results_msg_font_header":"","f_results_msg_font_title":"Text","f_results_msg_font_settings":"","f_results_msg_font_line_height":"","f_results_msg_font_style":"","f_results_msg_font_weight":"","f_results_msg_font_transform":"","f_results_msg_font_spacing":"","f_results_msg_":"","m_bg":"","color_overlay":"","shadow_module_shadow_header":"","shadow_module_shadow_title":"Module Shadow","shadow_module_shadow_size":"","shadow_module_shadow_offset_horizontal":"","shadow_module_shadow_offset_vertical":"","shadow_module_shadow_spread":"","shadow_module_shadow_color":"","title_txt":"","all_underline_height":"","all_underline_color":"#000","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_meta_shadow_header":"","shadow_meta_shadow_title":"Meta info shadow","shadow_meta_shadow_size":"","shadow_meta_shadow_offset_horizontal":"","shadow_meta_shadow_offset_vertical":"","shadow_meta_shadow_spread":"","shadow_meta_shadow_color":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border_hover":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_weight":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","border_top":"","css":"","class":"tdi_65","tdc_css_class":"tdi_65","tdc_css_class_style":"tdi_65_rand_style"}'; tdbSearchItem.jqueryObj = jQuery('.tdi_65'); tdbSearchItem._openSearchFormClass = 'tdb-drop-down-search-open'; tdbSearchItem._resultsLimit = '4'; tdbSearch.addItem( tdbSearchItem ); }); /* global jQuery:{} */ jQuery(window).on( 'load', function () { var tdbMenuItem = new tdbMenu.item(); tdbMenuItem.blockUid = 'tdi_79'; tdbMenuItem.jqueryObj = jQuery('.tdi_79'); tdbMenuItem.isMegaMenuFull = true; tdbMenu.addItem(tdbMenuItem); }); jQuery().ready(function () { var tdbSearchItem = new tdbSearch.item(); //block unique ID tdbSearchItem.blockUid = 'tdi_84'; tdbSearchItem.blockAtts = '{"results_msg_align":"content-horiz-center","image_floated":"float_left","image_width":"30","image_size":"td_324x400","show_cat":"none","show_btn":"none","show_date":"","show_review":"none","show_com":"none","show_excerpt":"none","show_author":"none","meta_padding":"0 0 0 15px","art_title":"0 0 5px","all_modules_space":"15","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==","form_align":"content-horiz-right","icon_color":"#ffffff","icon_size":"eyJhbGwiOiIxOCIsInBvcnRyYWl0IjoiMTQifQ==","icon_padding":"eyJhbGwiOjIuNiwicG9ydHJhaXQiOiIyLjgifQ==","tdicon":"td-icon-magnifier-medium-short-light","show_form":"yes","form_border_color":"#dd3333","arrow_color":"#dd3333","form_shadow_shadow_size":"10","form_shadow_shadow_color":"rgba(0,0,0,0.12)","f_input_font_family":"712","f_input_font_weight":"400","f_btn_font_family":"712","f_btn_font_weight":"400","f_input_font_size":"13","f_placeholder_font_family":"712","f_placeholder_font_weight":"400","f_placeholder_font_size":"13","f_btn_font_size":"13","f_results_msg_font_family":"712","f_results_msg_font_size":"11","f_title_font_family":"712","f_title_font_size":"13","f_title_font_line_height":"1.2","f_meta_font_family":"712","f_meta_font_size":"11","f_meta_font_line_height":"1","title_txt_hover":"#008d7f","btn_bg_h":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjMDA4ZDdmIiwiY29sb3IyIjoiIzAwOGQ3ZiIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzAwOGQ3ZjsiLCJjc3NQYXJhbXMiOiIwZGVnLCMwMDhkN2YsIzAwOGQ3ZiJ9","modules_gap":"0","image_height":"80","meta_info_align":"center","results_msg_color_h":"#008d7f","block_type":"tdb_header_search","disable_live_search":"","separator":"","toggle_txt":"","toggle_txt_pos":"","toggle_txt_align":"0","toggle_txt_space":"","toggle_horiz_align":"content-horiz-left","inline":"","float_block":"","form_offset":"","form_offset_left":"","form_width":"","form_content_width":"","form_padding":"","form_border":"","form_align_screen":"","input_placeholder":"","placeholder_travel":"0","input_padding":"","input_border":"","input_radius":"","btn_text":"Search","btn_tdicon":"","btn_icon_pos":"","btn_icon_size":"","btn_icon_space":"","btn_icon_align":"0","btn_margin":"","btn_padding":"","btn_border":"","btn_radius":"","results_padding":"","results_border":"","results_msg_padding":"","results_msg_border":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","results_limit":"","modules_on_row":"100%","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","art_btn":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","btn_title":"","btn_border_width":"","form_general_bg":"","icon_color_h":"","toggle_txt_color":"","toggle_txt_color_h":"","f_toggle_txt_font_header":"","f_toggle_txt_font_title":"Text","f_toggle_txt_font_settings":"","f_toggle_txt_font_family":"","f_toggle_txt_font_size":"","f_toggle_txt_font_line_height":"","f_toggle_txt_font_style":"","f_toggle_txt_font_weight":"","f_toggle_txt_font_transform":"","f_toggle_txt_font_spacing":"","f_toggle_txt_":"","form_bg":"","form_shadow_shadow_header":"","form_shadow_shadow_title":"Shadow","form_shadow_shadow_offset_horizontal":"","form_shadow_shadow_offset_vertical":"","form_shadow_shadow_spread":"","input_color":"","placeholder_color":"","placeholder_opacity":"0","input_bg":"","input_border_color":"","input_shadow_shadow_header":"","input_shadow_shadow_title":"Input shadow","input_shadow_shadow_size":"","input_shadow_shadow_offset_horizontal":"","input_shadow_shadow_offset_vertical":"","input_shadow_shadow_spread":"","input_shadow_shadow_color":"","btn_color":"","btn_color_h":"","btn_icon_color":"","btn_icon_color_h":"","btn_bg":"","btn_border_color":"","btn_border_color_h":"","btn_shadow_shadow_header":"","btn_shadow_shadow_title":"Button shadow","btn_shadow_shadow_size":"","btn_shadow_shadow_offset_horizontal":"","btn_shadow_shadow_offset_vertical":"","btn_shadow_shadow_spread":"","btn_shadow_shadow_color":"","f_input_font_header":"","f_input_font_title":"Input text","f_input_font_settings":"","f_input_font_line_height":"","f_input_font_style":"","f_input_font_transform":"","f_input_font_spacing":"","f_input_":"","f_placeholder_font_title":"Placeholder text","f_placeholder_font_settings":"","f_placeholder_font_line_height":"","f_placeholder_font_style":"","f_placeholder_font_transform":"","f_placeholder_font_spacing":"","f_placeholder_":"","f_btn_font_title":"Button text","f_btn_font_settings":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","results_bg":"","results_border_color":"","results_msg_color":"","results_msg_bg":"","results_msg_border_color":"","f_results_msg_font_header":"","f_results_msg_font_title":"Text","f_results_msg_font_settings":"","f_results_msg_font_line_height":"","f_results_msg_font_style":"","f_results_msg_font_weight":"","f_results_msg_font_transform":"","f_results_msg_font_spacing":"","f_results_msg_":"","m_bg":"","color_overlay":"","shadow_module_shadow_header":"","shadow_module_shadow_title":"Module Shadow","shadow_module_shadow_size":"","shadow_module_shadow_offset_horizontal":"","shadow_module_shadow_offset_vertical":"","shadow_module_shadow_spread":"","shadow_module_shadow_color":"","title_txt":"","all_underline_height":"","all_underline_color":"#000","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_meta_shadow_header":"","shadow_meta_shadow_title":"Meta info shadow","shadow_meta_shadow_size":"","shadow_meta_shadow_offset_horizontal":"","shadow_meta_shadow_offset_vertical":"","shadow_meta_shadow_spread":"","shadow_meta_shadow_color":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border_hover":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_weight":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","border_top":"","css":"","class":"tdi_84","tdc_css_class":"tdi_84","tdc_css_class_style":"tdi_84_rand_style"}'; tdbSearchItem.jqueryObj = jQuery('.tdi_84'); tdbSearchItem._openSearchFormClass = 'tdb-drop-down-search-open'; tdbSearchItem._resultsLimit = '4'; tdbSearch.addItem( tdbSearchItem ); }); </script> </body> </html>