<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>XNV the Exponential Ventures</title>
	<atom:link href="https://staging.xnv.io/feed/" rel="self" type="application/rss+xml" />
	<link>https://staging.xnv.io</link>
	<description>The Exponential Startup Studio</description>
	<lastBuildDate>Thu, 09 Dec 2021 23:26:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.2</generator>

<image>
	<url>https://staging.xnv.io/wp-content/uploads/2021/12/cropped-XNV-Icon-32x32.png</url>
	<title>XNV the Exponential Ventures</title>
	<link>https://staging.xnv.io</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Predicting Reading Level of Texts &#8211; A Kaggle NLP Competition</title>
		<link>https://staging.xnv.io/commonlit-competition/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/commonlit-competition/#respond</comments>
		
		<dc:creator><![CDATA[João Paulo]]></dc:creator>
		<pubDate>Fri, 15 Oct 2021 12:46:32 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[Amalgam]]></category>
		<category><![CDATA[Competitions]]></category>
		<category><![CDATA[Data Science]]></category>
		<category><![CDATA[Deep Learning]]></category>
		<category><![CDATA[Kaggle]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/commonlit-competition/</guid>

					<description><![CDATA[Introduction: One of the main fields of AI is Natural Language Processing and its applications in the real world. Here on Amalgam.ai we are building different models to solve some [&#8230;]]]></description>
										<content:encoded><![CDATA[<h2 id="introduction-">Introduction:</h2>
<p>One of the main fields of AI is Natural Language Processing and its applications in the real world. Here on <a href="https://amalgam.ai/?utm_source=rss&utm_medium=rss">Amalgam.ai</a> we are building different models to solve some of the problems around the NLP world, and by consequence, trying to make the world a better place.</p>
<h2 id="the-competition-">The Competition:</h2>
<p>Can machine learning identify the appropriate reading level of a passage of text, and help inspire learning? Reading is an essential skill for academic success. When students have access to engaging passages offering the right level of challenge, they naturally develop reading skills. If a passage is too easy, the student can get bored, if is too hard the student can quit, so, we need the optimal level of challenge to keep them interested in the reading.</p>
<p>In this competition we were asked to build machine learning algorithms to rate the complexity of reading passages for grade 3-12 classroom use, thus, helping administrators, teachers, and students in their day to day in the classroom.</p>
<p>The results of this competition will be scored on the root mean squared error. RMSE is defined as:</p>
<figure class="kg-card kg-image-card"><img src="https://staging.xnv.io/wp-content/uploads/2021/10/image-1.png?utm_source=rss&utm_medium=rss" class="kg-image"></figure>
<h3 id="the-dataset-">The Dataset:</h3>
<p>For this competition the organization provided excerpts from several time periods and a wide range of reading ease scores.</p>
<p>The data has these columns:</p>
<ul>
<li><strong>id</strong>: unique ID for excerpt;</li>
<li><strong>url_legal:</strong> URL of source;</li>
<li><strong>license: </strong>license of source material;</li>
<li><strong>excerpt: </strong>text to predict reading ease of;</li>
<li><strong>target: </strong>reading ease;</li>
<li><strong>standard_error: </strong>measure of spread of scores among multiple raters for each excerpt.</li>
</ul>
<p>A curious case in this dataset is that the rating of complexity was made by different people. So, in some cases the standard deviation of rating was very big, showing that even for humans it is hard to reach a consensus about the complexity of a passage.</p>
<h2 id="our-approach-">Our Approach:</h2>
<p>As shown  in the description of the competition we are dealing with a regression problem. To tackle this, our approach is basically divided in two steps:</p>
<p>	1. Further pre-train a Transformer model on competition dataset;</p>
<p>	2. Fine tune a Transformer to the regression task of the competition.</p>
<p>Our solution can be better visualized on the diagram below:</p>
<figure class="kg-card kg-image-card"><img src="https://staging.xnv.io/wp-content/uploads/2021/10/image.png?utm_source=rss&utm_medium=rss" class="kg-image"></figure>
<h2 id="part-1-further-pre-train-transformer">Part 1 &#8211; Further Pre-Train Transformer</h2>
<p>In this competition, we decided to use a RoBERTa Large and a RoBERTa Base, due to a better performance on the task in hand..</p>
<p>To do the pre-train we use the <a href="https://github.com/huggingface/transformers?utm_source=rss&utm_medium=rss">HuggingFace</a> transformers library in association with our open-source libraries Aurum and Stripping. Together we were able to track every experiment that we made. We pre-train our model for 5, 8 and 10 epochs. The best results for RoBERTa Large were achieved with 8 epochs and for RoBERTa Base the best results were achieved with 5 epochs.</p>
<h2 id="part-2-fine-tuning-for-the-task-">Part 2 &#8211; Fine tuning for the task:</h2>
<p>Once our transformer models were ready, the second part consisted in the fine tuning for the specific task of rate the complexity of a text passage. To do this we trained a neural network with an attention head and a linear layer predicting the values of target.</p>
<p>To this part, we also used Aurum and Stripping to experiment control and PyTorch Lightning to create the models and for distributed training.</p>
<h2 id="part-2-1-the-good-ol-classic-ml-">Part 2.1 &#8211; The Good Ol&#8217; Classic ML:</h2>
<p>One of the approaches, not for fine tuning but for prediction, we trained SVM&#8217;s regressors using as input the output of the transformers models. We did that using ScikitLearn library and 5 fold cross validation.</p>
<h2 id="ensemble-and-predictions-">Ensemble and Predictions:</h2>
<p>To generate the final submission for the competition we made a weighted ensemble using 4 different models with different settings of pre-trained RoBERTa models and fine tuned regression models. We also used SVM&#8217;s as regressors either.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/commonlit-competition/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Porto Seguro Challenge</title>
		<link>https://staging.xnv.io/porto-seguro-challenge/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/porto-seguro-challenge/#respond</comments>
		
		<dc:creator><![CDATA[João Paulo]]></dc:creator>
		<pubDate>Fri, 15 Oct 2021 12:43:29 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[Amalgam]]></category>
		<category><![CDATA[Competitions]]></category>
		<category><![CDATA[Data Science]]></category>
		<category><![CDATA[Kaggle]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/porto-seguro-challenge/</guid>

					<description><![CDATA[Introduction: In the modern world the competition for marketing space is fierce, nowadays every company that wants the slight advantage needs AI to select the best customers and increase the [&#8230;]]]></description>
										<content:encoded><![CDATA[<h2 id="introduction-">Introduction:</h2>
<p>In the modern world the competition for marketing space is fierce, nowadays every company that wants the slight advantage needs AI to select the best customers and increase the ROI of marketing campaigns. And of course, our team at Amalgam.ai is developing solutions to this field.</p>
<h2 id="the-challenge-">The Challenge:</h2>
<p>In this competition we were challenged to build a model that predicts the probability of a customer purchasing a product.</p>
<p>The score chosen to measure the quality of the prediction was the F1 Score. This metric measures the harmonic mean of the precision and the recall scores from the prediction.</p>
<h2 id="the-dataset-">The Dataset:</h2>
<p>The dataset for this challenge was composed of 70 columns with the following order:</p>
<p>	1. 1 target column;</p>
<p>	2. 1 id column;</p>
<p>	3. 68 columns of different types of variables</p>
<p>All the columns of this dataset were anonymized for this challenge, which created a different level of complexity for the problem.</p>
<h2 id="our-approach-">Our Approach:</h2>
<h2 id="feature-engineering-">Feature Engineering:</h2>
<p>To tackle this problem we focused heavily on the feature engineering of the dataset. As the first step we tried to locate and analyze the variables which contributed the most to the labels.</p>
<p>Once we tracked these variables we started to generate new features based on them. These features were generated by extracting statistics, creating relations with other features and grouping with different sets of parameters.</p>
<h2 id="modeling-">Modeling:</h2>
<p>When we get the feature engineering just right we started the modeling part. This was done using  classical machine learning models, such as: XGBoost, LightGBM and CatBoost.</p>
<p>One approach that was very effective was to initialize the same model with different seeds and average their predictions, this method created very robust predictions in simple manner.</p>
<p>Other approach that worked very well was to use AutoGluon, an automl library that create stacking and ensembles in an automatic way.</p>
<p>Once the models were trained we did an ensemble with all of them. In my solution we used an ensemble of LightGBM + XGBoost + CatBoost + AutoGluon stacking. To do the ensemble we used majority voting between all the models.</p>
<h2 id="conclusion">Conclusion</h2>
<p>This was a very fun and interesting challenge, we learned a lot, mostly how to handle anonymized datasets. With the approach presented here we finished the competition in 15th out of 174 teams.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/porto-seguro-challenge/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sales Development Representative</title>
		<link>https://staging.xnv.io/sales-development-representative/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/sales-development-representative/#respond</comments>
		
		<dc:creator><![CDATA[Rodolfo Egarter]]></dc:creator>
		<pubDate>Thu, 16 Sep 2021 17:10:21 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[open job]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/sales-development-representative/</guid>

					<description><![CDATA[At Exponential Ventures, we&#8217;re working to solve big problems with exponential technologies such as Artificial Intelligence, Quantum Computing, Digital Fabrication, Human-Machine Interaction, and Robotics. If you&#8217;re interested in these fields, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>At Exponential Ventures, we&#8217;re working to solve big problems with exponential technologies such as Artificial Intelligence, Quantum Computing, Digital Fabrication, Human-Machine Interaction, and Robotics. If you&#8217;re interested in these fields, have an entrepreneurial spirit and are looking to create a positive change in the world then keep reading.</p>
<p>We&#8217;re behind the development of several Startups. The Exponential Venture&#8217;s Founder is the former CTO and co-founder of <a href="http://www.startupfoundry.com/?utm_source=rss&utm_medium=rss">Startup Foundry</a> where he helped create startups such as <a href="http://www.quicklylegal.com/?utm_source=rss&utm_medium=rss">Quickly Legal</a>, Respect, Curio, and <a href="http://www.crowdspring.com/?utm_source=rss&utm_medium=rss">Crowdspring</a>. We&#8217;re also behind a few Open Source projects, the most notable being the Network Scanning frontend called <a href="https://nmap.org/zenmap/?utm_source=rss&utm_medium=rss">Zenmap</a> (formerly known as Umit) that is distributed by all mainstream Linux distributions and is used daily by hundreds of thousands of cybersecurity engineers throughout the world. It has even featured in the movie <a href="https://nmap.org/movies/?utm_source=rss&utm_medium=rss">Bourne Ultimatum</a>!</p>
<p>We know that quality employee are a company&#8217;s greatest asset, and that is why we don&#8217;t settle for anything less than the best. If we choose to work together, know that not only you will be allowed to speak your mind and contribute ideas, but you will be expected to so at all times. We also expect our teammates to strive to grow and take the lead on the projects that we create.</p>
<p>Currently, we&#8217;re looking for a SDR with solid sale skills, interest in working on an agile environment, and interested in stretching his or her skillsets. This is a full-time position to work remotely.</p>
<p>Here is the kind of professional we&#8217;re looking for:</p>
<ul>
<li>Proficient in both Portuguese and English</li>
<li>Experience selling B2B</li>
<li>Great communication skills</li>
<li>Experience qualifying Inbound and Outbound opportunities</li>
<li>Experience organizing sales pipelines</li>
<li>Knowledge of pre-sales processes</li>
<li>Goal oriented</li>
</ul>
<p>And here is what you&#8217;ll be doing:</p>
<ul>
<li>Relationship Development</li>
<li>Pipeline progression</li>
<li>Result analysis</li>
<li>Lead qualification from Inbound and Outbound sources</li>
</ul>
<p>We&#8217;re strong believers in cultivating a strong culture and a healthy work environment. Here are the benefits we offer:</p>
<ul>
<li>Stock Equity</li>
<li>Competitive Salary</li>
<li>Flexible Paid Vacation</li>
<li>Free books (regular, audio, ebooks)</li>
<li>Time to dedicate on your own ideas and hacking events</li>
<li>Annual allowance for professional development</li>
</ul>
<p>Exponential Ventures values diversity and is an Equal Opportunity Employer. We encourage applications from all qualified individuals regardless of race, religion, gender, sexual orientation, disability, or national origin. We are committed to creating a work environment that is welcoming and empowering to all of our employees, and we believe that this is what makes us stronger.</p>
<p><strong><strong>To apply, send an email to<a href="mailto:jobs@xnv.io"><strong> jobs@xnv.io</strong></a></strong></strong></p>
<p>All recruiters are automatically forwarded to /dev/null.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/sales-development-representative/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Exponential Hiring Process</title>
		<link>https://staging.xnv.io/hiring-process/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/hiring-process/#respond</comments>
		
		<dc:creator><![CDATA[Rodolfo Egarter]]></dc:creator>
		<pubDate>Wed, 15 Sep 2021 14:54:11 +0000</pubDate>
				<category><![CDATA[Exponential]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Hiring]]></category>
		<category><![CDATA[Human Resources]]></category>
		<category><![CDATA[New career]]></category>
		<category><![CDATA[Organization]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/hiring-process/</guid>

					<description><![CDATA[The hiring process is a fundamental part of any company, it is the first contact of the professional with the culture and a great display of how things work internally. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The hiring process is a fundamental part of any company, it is the first contact of the professional with the culture and a great display of how things work internally. At Exponential Ventures it is not different, we have worked to build a hiring process that is effective and focused on providing the best experience possible for the candidate, helping them to have all the information needed to make such as important decision as joining us.</p>
<p>Our hiring process is constituted of 8 steps:<br />&#8211; Quick Call (15 min)<br />&#8211; Technical Interview (45 min &#8211; 1 hour)<br />&#8211; Interview with Director (30 min)<br />&#8211; Meet the Team (45 min)<br />&#8211; Interview with Adriano &#8211; CEO of XNV (30 min)<br />&#8211; Call for references<br />&#8211; Offer (15 &#8211; 30 min)<br />&#8211; Onboarding</p>
<p><strong>Quick Call</strong></p>
<p>That is your first contact with Exponential Ventures!</p>
<p>This step was created to present you with the company and clarify any questions that you may have about the business or the position. Usually, it does not take longer than 15 minutes accordingly to the number of questions of the candidate.</p>
<p><strong>Technical Interview</strong></p>
<p>Here we will evaluate your technical skills during an interview, focusing on the requirements of each position that we have available, that step takes a little more time than the previous one, usually from 30 min to 1 hour. Here is what to expect:</p>
<p>&#8211; <strong>Developers</strong> &#8211; Q&amp;A Session about the technologies needed for the position you applied for.<br />&#8211; <strong>Product Designers and Designers</strong> &#8211; Three different possibilities for you to choose from. A take-home exercise, a case presentation, or a whiteboard interview.<br />&#8211; <strong>Sales</strong> &#8211; This step is mixed with the interview with Director, and you must expect questions about your sales process, tools, and previous experiences.<br />&#8211; <strong>Marketing positions</strong> &#8211;  This step is mixed with the interview with Director, and you must expect questions about your sales process, tools, and previous experiences.</p>
<p><strong>Interview with Director</strong></p>
<p>At this step, you will meet one of the directors of Exponential Ventures. That is a great chance to understand more in-depth about the work that you will be doing here, how our operations work, and clarify any questions that you may have. That is not a technical interview, it is just a conversation that takes no longer than 30 min.</p>
<p><strong>Meet the Team</strong></p>
<p>Meet the Team is one of the most interesting steps in our process. You will have the opportunity to meet our team without the presence of any leadership in the meeting, our goal here is to make you comfortable to understand our culture, the people that you will be working with, confirm information that you think is relevant to your decision and present yourself to your future colleagues.</p>
<p>At Exponential Ventures, we believe that should be no surprises when joining us, so this step helps us to make our company even more transparent for you.<br />This step takes around 30 min to 1 hour.</p>
<p><strong>Interview with Adriano</strong></p>
<p>Adriano loves to get to know the people that are joining Exponential Ventures, so at this step, you both will have the opportunity to know each other and ask any further questions that were not clarified before.</p>
<p>This step usually takes no longer than 30 min according to the candidate.</p>
<p><strong>Call for references</strong></p>
<p>At this step, we will need a list of 3 professional references, from people that worked with you in the past with their email, phone numbers, best times to call them (with their time zone), and whether they speak English. It is not a problem if they don&#8217;t, just useful to know if they do.</p>
<p>It is also important for you to reach out to them first and advise them about this call. It should not take more than 5 minutes and we have only 3 questions.</p>
<p>We must speak to your professional references by voice.</p>
<p>At this step, we also need your salary history for the past 3 years or past 3 employers. That is important for us to make an offer that makes sense for you at your career moment.</p>
<p>As this step relies on the availability of people outside of our process (our team and you) we can make it alongside the Meet the Team, so it does not increase the time to finish the process. </p>
<p><strong>Offer</strong></p>
<p>At this time you will have a call with Adriano to receive your offer. And don’t worry, you are not expected to provide your answer at this time. This call usually takes around 15 minutes.</p>
<p><strong>Onboarding</strong></p>
<p>Welcome! Now we are going to receive you in the best way possible, making sure that you understand everything about our company, projects, culture, and have access to everything that you need to get started.</p>
<p>You will have a lot to learn and many new faces to meet, and you can be sure that we will be thrilled to receive you!</p>
<p>If you have any questions, don’t hesitate on reaching out to ask!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/hiring-process/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Exponential Ventures announces the acquisition of PyJobs, FrontJobs, and RecrutaDev</title>
		<link>https://staging.xnv.io/xnv-announces-pyjobs-acquisition-now-pluo/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/xnv-announces-pyjobs-acquisition-now-pluo/#respond</comments>
		
		<dc:creator><![CDATA[Adriano Marques]]></dc:creator>
		<pubDate>Wed, 04 Aug 2021 21:19:26 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[#Recruiting Website]]></category>
		<category><![CDATA[Acquisitions]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Hiring]]></category>
		<category><![CDATA[Human Resources]]></category>
		<category><![CDATA[New career]]></category>
		<category><![CDATA[Pluo]]></category>
		<category><![CDATA[Startups]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/xnv-announces-pyjobs-acquisition-now-pluo/</guid>

					<description><![CDATA[Founded in 2017, PyJobs has become one of Brazil&#8217;s most popular job boards for the Python community. Despite its aggressive growth in the past year, PyJobs retained its community-oriented approach [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Founded in 2017, <a href="https://www.pyjobs.com.br?utm_source=rss&utm_medium=rss">PyJobs</a> has become one of Brazil&#8217;s most popular job boards for the Python community. Despite its aggressive growth in the past year, PyJobs retained its community-oriented approach that granted its impressive popularity among Brazilian developers. And it remains, to this day, the developer job board with the highest return of investment for employers looking to hire top-notch Software Engineers.</p>
<p>But that is not the whole story. PyJobs was initially founded by Vinicius Mesel, which later joined forces with Rodolfo Egarter to create FrontJobs and RecrutaDev. Focused on serving the Frontend Development community, FrontJobs quickly gained popularity as a critical resource for companies and professionals. RecrutaDev became the consultancy arm that offered high-touch tech recruiting solutions for companies of all sizes, including <a href="https://www.jusbrasil.com.br?utm_source=rss&utm_medium=rss">JusBrasil</a>, <a href="https://www.vitreo.com.br?utm_source=rss&utm_medium=rss">Vitreo</a>, <a href="https://gscap.com.br?utm_source=rss&utm_medium=rss">Giant Steps Capital</a>, <a href="http://geru.com.br/?utm_source=rss&utm_medium=rss">Geru</a>, <a href="https://skyone.solutions/?utm_source=rss&utm_medium=rss">SkyOne</a>, <a href="https://argyle.com/?utm_source=rss&utm_medium=rss">Argyle</a>, and several others.</p>
<p>As a long-time customer of these platforms and delighted with the impressive results achieved through them, <a href="https://www.xnv.io?utm_source=rss&utm_medium=rss">Exponential Ventures</a> engaged in negotiations with Mesel and Egarter for an acquisition deal that would bring the business to the next level. The outcome of these negotiations became <strong>Pluo</strong>, a job board and recruiting platform for technology professionals that aims to reduce the time to hire by simplifying and improving the candidate qualification process.</p>
<p>Pluo will also focus on helping North American and European companies find local workers and gain easy access to remote workers in Latin America.</p>
<p>Today, we&#8217;re very proud to announce the launch of <a href="https://pluo.jobs?utm_source=rss&utm_medium=rss">Pluo.jobs</a>, and the beginning of this long walk to revolutionize the way companies and professionals find each other to make dreams come true!</p>
<figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://staging.xnv.io/wp-content/uploads/2021/08/pluo-aquisition-2.png?utm_source=rss&utm_medium=rss" class="kg-image"><figcaption>Our new founding team (from left to right: Vinicius Mesel, Adriano Marques, and Rodolfo Egarter)</figcaption></figure>
<p>Stay tuned for new feature releases that will follow this launch in the next weeks by subscribing to our newsletter and following us on <a href="https://www.instagram.com/pluojobs/?utm_source=rss&utm_medium=rss">Instagram</a>, <a href="https://twitter.com/pluojobs?utm_source=rss&utm_medium=rss">Twitter</a> and <a href="https://www.linkedin.com/company/pluo/?utm_source=rss&utm_medium=rss">LinkedIn</a>.</p>
<p>PyJobs, FrontJobs, and RecrutaDev are now <a href="https://pluo.jobs?utm_source=rss&utm_medium=rss">Pluo</a>. And we would like to invite you to join us, being part of the Pluo revolution!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/xnv-announces-pyjobs-acquisition-now-pluo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sales Executive</title>
		<link>https://staging.xnv.io/sales/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/sales/#respond</comments>
		
		<dc:creator><![CDATA[Rodolfo Egarter]]></dc:creator>
		<pubDate>Mon, 02 Aug 2021 16:30:03 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[open job]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/sales/</guid>

					<description><![CDATA[At Exponential Ventures, we&#8217;re working to solve big problems with exponential technologies such as Artificial Intelligence, Quantum Computing, Digital Fabrication, Human-Machine Interaction, and Robotics. If you&#8217;re interested in these fields, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>At Exponential Ventures, we&#8217;re working to solve big problems with exponential technologies such as Artificial Intelligence, Quantum Computing, Digital Fabrication, Human-Machine Interaction, and Robotics. If you&#8217;re interested in these fields, have an entrepreneurial spirit and are looking to create a positive change in the world then keep reading.</p>
<p>We&#8217;re behind the development of several Startups. The Exponential Venture&#8217;s Founder is the former CTO and co-founder of <a href="http://www.startupfoundry.com/?utm_source=rss&utm_medium=rss">Startup Foundry</a> where he helped create startups such as <a href="http://www.quicklylegal.com/?utm_source=rss&utm_medium=rss">Quickly Legal</a>, Respect, Curio, and <a href="http://www.crowdspring.com/?utm_source=rss&utm_medium=rss">Crowdspring</a>. We&#8217;re also behind a few Open Source projects, the most notable being the Network Scanning frontend called <a href="https://nmap.org/zenmap/?utm_source=rss&utm_medium=rss">Zenmap</a> (formerly known as Umit) that is distributed by all mainstream Linux distributions and is used daily by hundreds of thousands of cybersecurity engineers throughout the world. It has even featured in the movie <a href="https://nmap.org/movies/?utm_source=rss&utm_medium=rss">Bourne Ultimatum</a>!</p>
<p>We know that quality employee are a company&#8217;s greatest asset, and that is why we don&#8217;t settle for anything less than the best. If we choose to work together, know that not only you will be allowed to speak your mind and contribute ideas, but you will be expected to so at all times. We also expect our teammates to strive to grow and take the lead on the projects that we create.</p>
<p>Currently, we&#8217;re looking for a Sales professional with solid sale skills, experience working on an agile environment, and interested in stretching his or her skillsets. This is a full-time position to work remotely or from our office in the Austin, Texas.</p>
<p>Here is the kind of professional we&#8217;re looking for:</p>
<ul>
<li>Proficient in both Portuguese and English</li>
<li>Experience selling B2B</li>
<li>Great communication skills</li>
<li>Experience qualifying Inbound and Outbound opportunities</li>
<li>Experience organizing sales pipelines</li>
<li>Knowledge of pre-sales processes</li>
<li>Goal oriented</li>
</ul>
<p>And here is what you&#8217;ll be doing:</p>
<ul>
<li>Relationship Development</li>
<li>Pipeline progression</li>
<li>Result analysis</li>
<li>Sales closure from Inbound and Outbound sources</li>
</ul>
<p>We&#8217;re strong believers in cultivating a strong culture and a healthy work environment. Here are the benefits we offer:</p>
<ul>
<li>Stock Equity</li>
<li>Competitive Salary</li>
<li>Flexible Paid Vacation</li>
<li>Free books (regular, audio, ebooks)</li>
<li>Time to dedicate on your own ideas and hacking events</li>
<li>Annual allowance for professional development</li>
</ul>
<p>Exponential Ventures values diversity and is an Equal Opportunity Employer. We encourage applications from all qualified individuals regardless of race, religion, gender, sexual orientation, disability, or national origin. We are committed to creating a work environment that is welcoming and empowering to all of our employees, and we believe that this is what makes us stronger.</p>
<p><strong><strong>To apply, send an email to<a href="mailto:jobs@xnv.io"><strong> jobs@xnv.io</strong></a></strong></strong></p>
<p>All recruiters are automatically forwarded to /dev/null.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/sales/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is a Startup Studio?</title>
		<link>https://staging.xnv.io/what-is-a-startup-studio/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/what-is-a-startup-studio/#respond</comments>
		
		<dc:creator><![CDATA[Adriano Marques]]></dc:creator>
		<pubDate>Wed, 28 Jul 2021 21:37:00 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[The Pragmatic Entrepreneur]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/what-is-a-startup-studio/</guid>

					<description><![CDATA[Spoiler: it is NOT an Incubator or Accelerator I have probably interviewed a few hundred professionals in my career as an Entrepreneur. After breaking the ice, one of the first [&#8230;]]]></description>
										<content:encoded><![CDATA[<blockquote><p><strong>Spoiler</strong>: it is <strong>NOT</strong> an Incubator or Accelerator</p></blockquote>
<p>I have probably interviewed a few hundred professionals in my career as an Entrepreneur. After breaking the ice, one of the first things I do is ask the candidate if they know what Exponential Ventures does and what it means to be a Startup Studio. It turns out that only a tiny portion of the candidates understand what a Startup Studio does and how it differs from an Incubator or Accelerator. It is frustrating because our business model is significantly different (and more exciting) than an Incubator or even an Accelerator. Don&#8217;t worry; by the end of this post, you&#8217;ll know the difference too.</p>
<h2 id="the-incubator-a-company-that-nurtures-startups">The Incubator: A Company that Nurtures Startups</h2>
<p>Entrepreneurs starting on a tiny budget face an uphill battle on pretty much everything related to starting a business. Without investment, the entrepreneur is left to operate the business from home, often in their spare time, without the resources and network needed to kickstart the business. At this stage, the entrepreneurs would most likely be working on figuring out whether the business plan premises are aligned with the market, talking to potential customers, and securing some kind of investment to keep the business moving forward. Doing all of this on your own can be a daunting task, and it is the trail on which most entrepreneurial endeavors meet their fate.</p>
<p>The Startup Incubator is a place where entrepreneurs gain access to a shared co-working space, receive small bootstrap investments, mentorship, and access to resources to help them grow their ideas into validated business ideas. Some incubators are non-profit organizations kept and run by private and public entities looking to help local entrepreneurs get past their initial steps.</p>
<p>If you&#8217;re an entrepreneur struggling with figuring out how to start your business properly, Startup Incubators are good places to look for support. Make sure to look around and evaluate all opportunities available in your region before committing to one of them, especially if you&#8217;re required to give up equity in exchange for support. Giving up equity makes a lot more sense if an investment is associated with participation in the program, but that may not be true if the level of support offered is not backed up by an infusion of hard currency.</p>
<h2 id="the-accelerator-a-company-that-helps-startups-grow">The Accelerator: A Company that Helps Startups Grow</h2>
<p>For entrepreneurs that are further ahead on the game but ready to commit to the startup full time and looking for a boost, the Startup Accelerators are a viable alternative. Y Combinator and Techstars are amongst the most well-known accelerators. They&#8217;ll only take in startups that have already shown some early promises and a founding team ready to commit full-time to pursuing the business. The relationship is also meant to last a short period. On average, entrepreneurs stay engaged with an accelerator for three months, and at the end of this period, they&#8217;ll be actively seeking investment to keep growing from there. I do not know of any accelerator that does not require a significant amount of equity in exchange for their support. However, most of them will also make a small seed investment in exchange for that equity. They will also help you find more investors to keep the business growing after the end of the relationship. Accelerators also offer mentorship, shared co-working spaces, networking opportunities, and other valuable resources like most other incubators. Once out of their nest at the end of the program, entrepreneurs retain access to their network of mentors and investors for additional support in the future. However, you&#8217;ll be mostly on your own.</p>
<h2 id="the-studio-a-company-that-builds-startups-from-scratch">The Studio: A Company that Builds Startups from Scratch</h2>
<p>Different from the Incubator and the Accelerator that exists exclusively to support the ideas of other entrepreneurs, a Startup Studio is a business focused on creating new companies from the ground up, leveraging its team and resources and sustaining that company for as long as it proves to remain a viable business or is ready to stand on its legs.</p>
<p>Instead of offering meager resources and dedicating little effort into the development of a business like an Incubator do, or having an intense and quick affair with lasting financial consequences (potentially good or bad) like an Accelerator, the Startup Studio model covers it all, being supported by a team that launches companies for a living instead of advising a living. A Startup Studio also incurs more risks than an Incubator or Accelerator since it commits a lot more time and resources to each startup. In exchange, the Studio model also retains the most equity of them all.</p>
<p>One of the key advantages of this model is that ideas can go from paper to market, skipping ahead several steps at once. No need to convince investors, hire engineers, figure out office, payroll, processes, etc. Everything is already in place, and the team can pick up an idea and quickly launch it to see if it achieves product/market fit. If it doesn&#8217;t, the project can be terminated, and the resources redirected to another idea. If it does, the project can either continue running from inside the Studio, pursue more investment for growth, spin it off as a separate company, or sell it. Either way, the Studio is better off by either having learned from the failure or profited from the success.</p>
<p>There you have it. A Startup Studio is a Company specialized in creating other companies. <a href="https://xnv.io?utm_source=rss&utm_medium=rss">Exponential Ventures</a> is one of the many true Startup Studios out there, but with an exclusive emphasis and know-how on Exponential Technologies. Aside from maintaining a team of designers, engineers, marketing, recruiting, and operators, we also carry a team of data scientists, and we have an on-premise cluster dedicated to Artificial Intelligence research and development. No startup can start with this much competitive advantage by going through the incubator or accelerator routes, and an entrepreneur would need to secure an uncommonly substantial initial investment to put together comparable resources as quickly as we can.</p>
<p>By the way, we&#8217;re always looking for talented professionals with an entrepreneurial spirit interested in joining our team to build amazing companies from scratch. If this feels like you, check our openings <a href="https://xnv.io/jobs/?utm_source=rss&utm_medium=rss">here</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/what-is-a-startup-studio/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Social Media</title>
		<link>https://staging.xnv.io/social-media/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/social-media/#respond</comments>
		
		<dc:creator><![CDATA[Rodolfo Egarter]]></dc:creator>
		<pubDate>Fri, 23 Jul 2021 12:43:44 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[open job]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/social-media/</guid>

					<description><![CDATA[At Exponential Ventures, we&#8217;re working to solve big problems with exponential technologies such as Artificial Intelligence, Quantum Computing, Digital Fabrication, Human-Machine Interaction, and Robotics. If you&#8217;re interested in these fields, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>At Exponential Ventures, we&#8217;re working to solve big problems with exponential technologies such as Artificial Intelligence, Quantum Computing, Digital Fabrication, Human-Machine Interaction, and Robotics. If you&#8217;re interested in these fields, have an entrepreneurial spirit and are looking to create a positive change in the world then keep reading.</p>
<p>We&#8217;re behind the development of several Startups. The Exponential Venture&#8217;s Founder is the former CTO and co-founder of <a href="http://www.startupfoundry.com/?utm_source=rss&utm_medium=rss">Startup Foundry</a> where he helped create startups such as <a href="http://www.quicklylegal.com/?utm_source=rss&utm_medium=rss">Quickly Legal</a>, Respect, Curio, and <a href="http://www.crowdspring.com/?utm_source=rss&utm_medium=rss">Crowdspring</a>. We&#8217;re also behind a few Open Source projects, the most notable being the Network Scanning frontend called <a href="https://nmap.org/zenmap/?utm_source=rss&utm_medium=rss">Zenmap</a> (formerly known as Umit) that is distributed by all mainstream Linux distributions and is used daily by hundreds of thousands of cybersecurity engineers throughout the world. It has even featured in the movie <a href="https://nmap.org/movies/?utm_source=rss&utm_medium=rss">Bourne Ultimatum</a>!</p>
<p>We know that quality employee are a company&#8217;s greatest asset, and that is why we don&#8217;t settle for anything less than the best. If we choose to work together, know that not only you will be allowed to speak your mind and contribute ideas, but you will be expected to so at all times. We also expect our teammates to strive to grow and take the lead on the projects that we create.</p>
<p>Currently, we&#8217;re looking for a Social Media professional with solid community building skills, experience working on an agile environment, and interested in stretching his or her skillsets. This is a full-time position to work remotely or from our office in the Austin, Texas.</p>
<p>Here is the kind of professional we&#8217;re looking for:</p>
<ul>
<li>Proficient in both Portuguese and English</li>
<li>Experience building communities</li>
<li>Great communication skills</li>
<li>Experience researching and producing content</li>
<li>Knowledge of social SEO</li>
<li>Always up-to-date with the most recent social media thrends and innovations</li>
<li>Good design skills</li>
<li>Focus in social media post productions</li>
</ul>
<p>And here is what you&#8217;ll be doing:</p>
<ul>
<li>Strategic Planning</li>
<li>Content research and production</li>
<li>Result analysis</li>
<li>Market research</li>
<li>Community building</li>
</ul>
<p>We&#8217;re strong believers in cultivating a strong culture and a healthy work environment. Here are the benefits we offer:</p>
<ul>
<li>Stock Equity</li>
<li>Competitive Salary</li>
<li>Flexible Paid Vacation</li>
<li>Free books (regular, audio, ebooks)</li>
<li>Time to dedicate on your own ideas and hacking events</li>
<li>Annual allowance for professional development</li>
</ul>
<p>Exponential Ventures values diversity and is an Equal Opportunity Employer. We encourage applications from all qualified individuals regardless of race, religion, gender, sexual orientation, disability, or national origin. We are committed to creating a work environment that is welcoming and empowering to all of our employees, and we believe that this is what makes us stronger.</p>
<p><strong><strong>To apply, send an email to<a href="mailto:jobs@xnv.io"><strong> jobs@xnv.io</strong></a></strong></strong></p>
<p>All recruiters are automatically forwarded to /dev/null.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/social-media/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Why your company should remain remote even after the pandemic</title>
		<link>https://staging.xnv.io/why-your-company-should-remain-remote-after-the-pandemic-stops/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/why-your-company-should-remain-remote-after-the-pandemic-stops/#respond</comments>
		
		<dc:creator><![CDATA[Vinicius Mesel]]></dc:creator>
		<pubDate>Mon, 19 Jul 2021 16:38:43 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[Company Culture]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Hiring]]></category>
		<category><![CDATA[Human Resources]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Pluo]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/why-your-company-should-remain-remote-after-the-pandemic-stops/</guid>

					<description><![CDATA[When the pandemic started back in March 2020, we had no clue on its duration or how life would occur during the following months. But as things kept going and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>When the pandemic started back in March 2020, we had no clue on its duration or how life would occur during the following months. But as things kept going and companies understood that they needed to be totally remote to remain doing business, everything went greater than expected.</p>
<p>Now we are seeing a backward movement, companies are starting to ask employees to come back to their office twice or three times a week, and some of them moved across the United States to other states or countries. The outcome of all of this coming-back-to-office-strategy is rising unhappiness and higher costs for both companies and employees.</p>
<p>So these points below will show you why you should remain remote forever in your company</p>
<h2 id="-1-easier-onboarding-of-candidates"> #1 &#8211; Easier onboarding of candidates</h2>
<p>As candidates don&#8217;t need to switch routines, addresses and their timezone, onboarding is quite easier.</p>
<p>If your company allows the BYOD policy (bring your own device), you will have a candidate setup for the company since he gets the agreement signed and requirements passed by his supervisor.</p>
<p>If you company uses specific hardware and software that are strictly confidential, you can send your employee a box with all of the company&#8217;s swag and tech stuff, making them feel comfortable since Day 0.</p>
<h2 id="-2-broader-access-to-candidates-worldwide">#2 &#8211; Broader access to candidates worldwide</h2>
<p>Not having any geographical boundaries will allow your company to retain and hire more employees around the world.</p>
<p>For example, if you want to hire Python developers, you could check out PyJobs.com.br: This Is a website that enables worldwide developers to find Python development jobs worldwide, all while sitting in their home office.</p>
<p>During the pandemic, people are becoming more selective about which jobs they will take. They are thinking about contributing less traffic, expanding their international experiences, and receiving payments in other currencies than their local ones.</p>
<h2 id="-3-happier-employees">#3 &#8211; Happier employees</h2>
<figure class="kg-card kg-image-card"><img src="https://staging.xnv.io/wp-content/uploads/2021/07/leon-0K7GgiA8lVE-unsplash-min-1.jpg?utm_source=rss&utm_medium=rss" class="kg-image"></figure>
</p>
<p>According to a survey run by Owl Labs and Inc.com where over 1,200 were interviewed, 22% more people between ages 22 and 65 were happier working remotely than people who never worked remotely in their life.</p>
<p>The reasons candidates prefer and/or chose why they chose to work remotely were:</p>
<ul>
<li>work-life balance (91%),</li>
<li>increased productivity/better focus (79%),</li>
<li>less stress (78%), and</li>
<li>avoid a commute (78%).</li>
</ul>
<p>How is your company adapting to this new remote culture? Let us know here in the comments!</p>
<p>PS: Thanks Natasha Andreil for reviewing our article</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/why-your-company-should-remain-remote-after-the-pandemic-stops/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Hunting for Unicorns</title>
		<link>https://staging.xnv.io/hunting-for-unicorns/#utm_source=rss&#038;utm_medium=rss</link>
					<comments>https://staging.xnv.io/hunting-for-unicorns/#respond</comments>
		
		<dc:creator><![CDATA[Rodolfo Egarter]]></dc:creator>
		<pubDate>Wed, 14 Jul 2021 11:55:11 +0000</pubDate>
				<category><![CDATA[Sem categoria]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Hiring]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[New career]]></category>
		<category><![CDATA[Pluo]]></category>
		<category><![CDATA[Technology]]></category>
		<guid isPermaLink="false">https://staging.xnv.io/hunting-for-unicorns/</guid>

					<description><![CDATA[Everybody loves unicorns, right? But perhaps no one loves them more than tech companies. When hiring for a professional, we have an ideal vision of who we are looking for. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Everybody loves unicorns, right? But perhaps no one loves them more than tech companies.</p>
<p>When hiring for a professional, we have an ideal vision of who we are looking for. A professional with X years of experience in Y stack and that speaks Z languages totally as a native. Klingon is a differential, of course.</p>
<p>But is it possible to find these candidates? Well, being completely honest. Yes, it is.</p>
<p>But that brings up another question. Do you have time and budget for this hunt?</p>
<p>Professionals that fulfill all the requirements of the market, not surprisingly, are already hired and working in a company that very often pays very well to keep them there. So if you are looking to hire these people you have few alternatives.</p>
<p>&#8211; Being an incredible and revolutionary company with an amazing culture</p>
<p>&#8211; Have a TON of money to dump on hiring</p>
<p>&#8211; Have time to find someone that is not getting the amount of money that deserves or is unsatisfied with their workplaces.</p>
<p>And believe me, for a tech company, time is the most valuable resource and you don&#8217;t want to waste it.</p>
<p>And if you are hiring someone just by paying more, are you sure that this person will not leave if someone covers your offer? No matter how much you pay, there is always someone with more resources willing to pay more. You need to have something different to stop losing your team.</p>
<p>If you are okay with it, you can pursue this mythical professional and even succeed. As an expert in hiring, my company has made it several times, and I warn you, it takes time even if you know all the shortcuts.</p>
<p>But here is the moment for the little secret of the article.</p>
<p>There are <strong>TONS</strong> of unicorns in the market. And sometimes even they are not aware of what they are.</p>
<p>Here is the trick. Instead of hiring based exclusively on the skillset and experience, try to have a different approach and look also for the potential of the professional.</p>
<p>You can nurture your own unicorn, shaping a professional that is perfect for your business just by providing training and growth opportunities. In a few months, you will have someone that understands your business and has practical knowledge of the tech needed to make it work. And that is just the beginning.</p>
<p>When hiring for potential, you give someone an opportunity and a vow of confidence that creates a deep bond between this professional and the company, and it decreases drastically the turn-over in your business.</p>
<p>Of course, that money is important and you should pay well the people that are making your business grow, but those tokens of appreciation and trust play a big role when someone is trying to steal this professional from you.</p>
<p>Don&#8217;t think about investing in your team as a waste of resources because they can leave. You should be far more afraid of not investing and having them stay anyway.</p>
<p>When hiring, think of it as you think about your business. Focusing in the long run. Nurturing a team is a far better investment than hiring a full team that is just ready to go, and ready to leave.</p>
<p>So, are you looking for an unicorn?</p>
]]></content:encoded>
					
					<wfw:commentRss>https://staging.xnv.io/hunting-for-unicorns/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
