<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Ulysse Maes on Medium]]></title>
        <description><![CDATA[Stories by Ulysse Maes on Medium]]></description>
        <link>https://medium.com/@maesulysse?source=rss-9a4fbbcb9538------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*4FaNOAGBigmLXTXF9jAeCg.png</url>
            <title>Stories by Ulysse Maes on Medium</title>
            <link>https://medium.com/@maesulysse?source=rss-9a4fbbcb9538------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Sun, 24 May 2026 03:30:53 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@maesulysse/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Your Custom GPTs May Be Leaking Confidential Messages]]></title>
            <link>https://medium.com/@maesulysse/your-custom-gpts-may-be-leaking-confidential-messages-9152d1a11a68?source=rss-9a4fbbcb9538------2</link>
            <guid isPermaLink="false">https://medium.com/p/9152d1a11a68</guid>
            <category><![CDATA[chatgpt]]></category>
            <category><![CDATA[privacy]]></category>
            <category><![CDATA[vulnerability]]></category>
            <category><![CDATA[gpt]]></category>
            <category><![CDATA[smit]]></category>
            <dc:creator><![CDATA[Ulysse Maes]]></dc:creator>
            <pubDate>Mon, 27 Nov 2023 08:53:50 GMT</pubDate>
            <atom:updated>2023-11-27T08:53:50.390Z</atom:updated>
            <content:encoded><![CDATA[<p><strong>Since the turmoil at OpenAI sparked renewed attention for AI ethics, now seems like a good moment to talk about a blatant security vulnerability in ChatGPT. While the chatbot claims to be a “sandbox” that doesn’t share your conversation with (potentially malicious) third-parties without consent, in practice it is very easy to convince the model to send possibly sensitive data to a remote web server, without the user being aware of it.</strong></p><p>The issue lies in the chatbot’s capability to render Markdown, which is a simple way to style your documents, allowing ChatGPT to render titles, bullet lists, bold text and images. These images can be located on a remote server.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/962/1*R8ZwBP5XyRdOSgscgL0U0w.png" /><figcaption>A screenshot of malicious custom instructions for a GPT</figcaption></figure><h3>Markdown Injection</h3><p>I’ve created a malicious endpoint serving a single pixel, that accepts the conversation history as parameters, together with a unique conversation identifier to sort the conversations later on. We then prompt ChatGPT to render the image URL, with the last message by the user as the data parameter. It complies with the request, and seems totally unaware of the security issue, ensuring the user it is “perfectly safe” and “only a little quirk” if asked about its behavior. To obfuscate what is going on, I ask ChatGPT to encode the user message as base64, which surprisingly works fluently! It seems that not only is GPT4 able to accurately translate languages into each other, it also picked up the mechanism of base64 encoding and decoding. On my web server, I’m able to decode the message and store it as plain text in a database, coupled to the conversation ID, allowing the attacker to read entire conversations.</p><p>It’s easy to incorporate these data leaking instructions into any custom GPT, as shown in the screen recording. However, while markdown injection has been publicly known from March [1], it can still be exploited by malicious plugins, GPT instructions, or copy injection attacks on websites. Another way of rendering markdown in the chat can be through image prompt injection, which is also widely known but remains unaddressed by openAI to this day. Image prompt injection entails hiding invisible or barely visible instructions inside an image, that are picked up by the image analysis module, and executed by the language model, thereby ignoring any other instruction given to it by the user.</p><iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F6Y_oALE3LqY%3Ffeature%3Doembed&amp;display_name=YouTube&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D6Y_oALE3LqY&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F6Y_oALE3LqY%2Fhqdefault.jpg&amp;key=a19fcc184b9711e1b4764040d3dc5c07&amp;type=text%2Fhtml&amp;schema=youtube" width="854" height="480" frameborder="0" scrolling="no"><a href="https://medium.com/media/44272ea9aa1625131fe21623f5e117e5/href">https://medium.com/media/44272ea9aa1625131fe21623f5e117e5/href</a></iframe><h3>Paying users are more vulnerable</h3><p>Ironically, the attack prompts work best with GPT-4 and the sneakiest way to inject them into a conversation is through custom GPT instructions or plugins, so paying users are more vulnerable to leaking their data than free users. It’s especially surprising that nothing has been done to prevent these types of attacks since it’s such an obvious vulnerability that can be easily fixed in multiple ways. One way could be to prevent the sandbox to render Markdown images altogether. Or ChatGPT could be “educated” not to leak user history by appending it to URLs, even if the user would ask so. Although, in the last case, we can be almost certain that some creative prompt will emerge which convinces the chatbot to append the information anyway.</p><h3>Limitations</h3><p>There are a few limitations to the attacks:</p><p>• Custom GPTs are currently only available to paying users, thereby affecting less than the 100M user audience of the tool. However, as mentioned before, prompt injection can be achieved using a variety of methods. One example is copy spoofing to trick the free version into receiving custom instructions and rendering the markdown code of the attack.</p><p>• Since the responses are being streamed, a careful user is able to notice something fishy is going on, as there’s always some code appended after every message. Although probably an involuntary side-effect, it prevents the attacker from rendering the invisible pixels directly, which would create a better obfuscation of the action going on.</p><p>• Lastly, image recognition is only available for paying users.</p><h3>Disclaimer</h3><p>I’m an enthousiastic user of ChatGPT. Ironically, it helped me to refine the text of this post, for example. However, as it is one of the most used tools on the internet, I believe it’s an imperative to ensure proper data security and since the methods mentioned in this post are all publicly known for over a month, I see it as my duty as a PhD researcher on LLMs to share my findings and spark awareness around the risks of using this tool. Finally, LLM-integrating applications vulnerability appears to be a broader issue [2], potentially affecting various other LLM-based chatbots as well. A similar issue was quickly resolved in Google Bard [3], while Bing (although also based on GPT-4) doesn’t seem to engage in this attack.</p><h3>Sources</h3><p>[1] <a href="https://systemweakness.com/new-prompt-injection-attack-on-chatgpt-web-version-ef717492c5c2">https://systemweakness.com/new-prompt-injection-attack-on-chatgpt-web-version-ef717492c5c2</a></p><p>[2] Kai Greshake, Sahar Abdelnabi, Shailesh Mishra, Christoph Endres, Thorsten Holz, and Mario Fritz. “More than you’ve asked for: A Comprehensive Analysis of Novel Prompt Injection Threats to Application-Integrated Large Language Models”. URL: <a href="https://arxiv.org/abs/2302.12173">https://arxiv.org/abs/2302.12173</a></p><p>[3] <a href="https://embracethered.com/blog/posts/2023/google-bard-data-exfiltration/">https://embracethered.com/blog/posts/2023/google-bard-data-exfiltration/</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=9152d1a11a68" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Snel en Accuraat Transcriberen met Scribewave]]></title>
            <link>https://medium.com/@maesulysse/snel-en-accuraat-transcriberen-met-scribewave-433708f0eaf8?source=rss-9a4fbbcb9538------2</link>
            <guid isPermaLink="false">https://medium.com/p/433708f0eaf8</guid>
            <category><![CDATA[nederlands]]></category>
            <category><![CDATA[dutch-translation]]></category>
            <category><![CDATA[dutch]]></category>
            <category><![CDATA[online-tools]]></category>
            <category><![CDATA[transcription]]></category>
            <dc:creator><![CDATA[Ulysse Maes]]></dc:creator>
            <pubDate>Mon, 23 Oct 2023 09:54:20 GMT</pubDate>
            <atom:updated>2023-10-23T09:56:24.503Z</atom:updated>
            <content:encoded><![CDATA[<p><strong>In deze korte tutorial toon ik hoe je in enkele minuten een audio- of videobestand kan omzetten naar tekst. In plaats van het tijdrovende handmatige uitschrijven, biedt </strong><a href="https://scribewave.com"><strong>Scribewave</strong></a><strong> een AI-gedreven tool die audio volledig automatisch en accuraat kan transcriberen. Of je nu Nederlands, Frans, Duits of Arabisch spreekt, de website ondersteunt meer dan 90 talen en elk bestandsformaat. Onze geavanceerde service spreekt een groot publiek aan: zo vind je onder onze klanten kranten zoals De Morgen, productiehuizen (Woestijnvis) en onderzoeksinstellingen (bv. UGent).</strong></p><h3>Stap 1: Inloggen op scribewave.com</h3><p>Het inloggen is simpel: je kunt <a href="https://scribewave.com">inloggen </a>met je e-mailadres of Google-account. Bedrijfsaccounts kunnen zelfs gekoppeld worden aan een domeinnaam. Let op: de bevestigingsmail kan in je spamfolder belanden. Als je liever met een wachtwoord inlogt, kun je dit eenvoudig instellen via Account &gt; Password Reset.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*x5s6Vp3Y4nrqGBONRxo5kw.png" /><figcaption>Stap 1: Creëer je gratis account.</figcaption></figure><h3>Stap 2: Creëer je eerste transcript</h3><p>Bij het aanmaken van een nieuw account krijg je 1 uur aan credits om Scribewave gratis te proberen. Klik op de roze “Transcript” module en selecteer de taal die gesproken wordt in je bestand. Worden er meerdere talen gesproken? Laat het vakje dan leeg.</p><p>Upload vervolgens het audio- of videobestand dat je wilt laten transcriberen. We accepteren alle gangbare bestandsformaten, zoals mp3, wav, aac, ogg, mp4, mkv, mov, … Geef je project een naam en Scribewave doet de rest. Wanneer het bestand is geüpload, kan je het venster sluiten. Je ontvangt binnen enkele minuten een bevestigingsmail zodra het transcript klaar is.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*waT46K6ae2pCDG_bvp5r_g.png" /><figcaption>Stap 2: Selecteer een taal en upload je bestand.</figcaption></figure><h3>Stap 3: Bekijk en bewerk je transcript</h3><p>Scribewave is een marktleider als het gaat over de kwaliteit van de taalmodellen. Niet alleen voor het Nederlands maar ook voor vele andere talen. Met functies zoals automatische sprekerherkenning kun je elk transcript naar een hoger niveau tillen. Foutjes? Geen probleem! Onze unieke editor laat je elk detail van het transcript eenvoudig aanpassen. Ook hebben we een vertaalfunctie, die toelaat om het transcript om te zetten naar één van de 90+ ondersteunde talen, waaronder Engels, Frans, Duits, Spaans, Italiaans, Russisch, Hebreeuws en Arabisch.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*I0VE1iUKDEWr6KpC6_DVCQ.png" /><figcaption>Stap 3: Benoem sprekers en bewerk de tekst indien nodig.</figcaption></figure><h3>Stap 4: Exporteren</h3><p>Zodra je tevreden bent met het transcript, kun je dit gemakkelijk exporteren als document of als ondertitelbestand. De exportopties zijn flexibel, en je kunt zelfs je tekst naar Google Docs exporteren via de knop “Copy text” en vervolgens in een leeg Google Docs-bestand te plakken.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ZFvbKBJgQkYWW-6poCAxIA.png" /><figcaption>Stap 4: Exporteer het bestand als Word-document, tekstbestand, ondertitels of kopieer tekst naar Google Docs.</figcaption></figure><h3>Conclusie</h3><p>Met Scribewave bespaar je gemiddeld 2 uur per uur audio om te transcriberen. Dit geeft journalisten, content creators en onderzoekers de vrijheid om te focussen op wat echt belangrijk is. Vergeet ook niet onze andere modules te ontdekken, zoals onze automatische ondertitelaar en caption generator voor social media.</p><h3>Uitsmijter</h3><p><a href="https://scribewave.com">Scribewave</a> is het geesteskind van Ulysse Maes, doctoraatsstudent en programmeur. Oorspronkelijk begonnen als een project om het maken van lyric video’s te automatiseren, is Scribewave uitgegroeid tot een belangrijke speler op de internationale markt, met grote klanten zoals DPG Media en Woestijnvis. Ik nodig je dan ook vriendelijk uit om de mogelijkheden te ontdekken. Ik ben er alvast van overtuigd dat ook jij of jouw organisatie een tevreden gebruiker van Scribewave kan worden!</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=433708f0eaf8" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Transcending Language Barriers: Discover Scribewave’s Superior Speech-to-Text Solution]]></title>
            <link>https://medium.com/@maesulysse/transcending-language-barriers-discover-scribewaves-superior-speech-to-text-solution-e6581ce34365?source=rss-9a4fbbcb9538------2</link>
            <guid isPermaLink="false">https://medium.com/p/e6581ce34365</guid>
            <category><![CDATA[productivity-tools]]></category>
            <category><![CDATA[speech-to-text-conversion]]></category>
            <category><![CDATA[transcription]]></category>
            <category><![CDATA[podcasting-tips]]></category>
            <category><![CDATA[focus-group-transcription]]></category>
            <dc:creator><![CDATA[Ulysse Maes]]></dc:creator>
            <pubDate>Mon, 09 Oct 2023 17:53:00 GMT</pubDate>
            <atom:updated>2023-10-09T17:53:00.961Z</atom:updated>
            <content:encoded><![CDATA[<h3>Any Language, One Solution: Automatic Speech-to-Text Online</h3><p>Amidst the AI boom, the transformation of speech into text emerges as a crucial tool serving a variety of fields — from journalism and academic research, to the flourishing podcast realm. Amidst the sea of platforms offering transcription services, stands a distinguished Belgian SaaS — <a href="https://scribewave.com">Scribewave</a>, providing an unparalleled speech-to-text conversion experience.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*kyS2KFiXWR03pZdudbJaXg.jpeg" /><figcaption>Journalists can transcribe their interviews up to 4x faster with Scribewave</figcaption></figure><h3>Breaking Language Boundaries</h3><p>Unlike most alternative platforms, Scribewave elegantly transcends language barriers by supporting a multitude of local languages including Dutch, Arabic, French, and German. This robust language support is not just a tick on a checklist, but a testament to Scribewave’s commitment to delivering high accuracy transcription, thereby making it the first platform with a global audience in mind.</p><h3>Unmatched Accuracy</h3><p>Scribewave prides itself on providing the market’s highest accuracy rates for no less than 20 languages. Its advanced algorithms ensure that every word is captured accurately, regardless of the dialect or accent, making it an indispensable tool for journalists, researchers and podcasters across the globe. Moreover, we convert your audio to text in only a couple of minutes. No more waiting times!</p><h3>Seamless File Integration</h3><p>With Scribewave, you’re not confined to specific file formats. The platform graciously accepts all audio and video file formats, ensuring a smooth, hassle-free upload process. The speech-to-text software supports mp3, wav, m4a, aac, ogg, mp4 and flv, to name a few.</p><h3>Flexible Pricing for All</h3><p>Scribewave extends its welcoming hand to all by offering a generous free trial of one hour audio processing. If you’re satisfied with the service, there are flexible pricing plans. Whether you’re looking at a pay-as-you-go basis or competitive subscriptions, there’s a plan tailored to fit every budget.</p><h3>Precision Editing with Time-Synced Editor</h3><p>Post transcription, Scribewave offers a unique and specialized time-synced browser-based editor for refining the automatically generated transcript. This feature allows for precise edits, ensuring the final transcript is polished to perfection before downloading.</p><h3>Multiple Downloadable Formats</h3><p>Once your content is transcribed and refined to your satisfaction, Scribewave allows for easy downloading in various formats like docx, srt, and text, in the exact format you like. This flexibility facilitates effortless integration into your workflow, making Scribewave a well-rounded solution for all your transcription needs.</p><h3>Conclusion</h3><p>Scribewave isn’t just a speech-to-text service, it’s a comprehensive solution that acknowledges and addresses the nuanced needs of a global user base. With its superior language support, unmatched accuracy, and user-centric features, Scribewave is revolutionizing the transcription landscape, one language at a time. <a href="https://scribewave.com">Explore Scribewave today</a> and experience the most advanced and fluent transcription in your language.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e6581ce34365" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[How to transcribe an interview automatically using AI?]]></title>
            <link>https://medium.com/@maesulysse/how-to-transcribe-an-interview-automatically-using-ai-ce2d30459b6e?source=rss-9a4fbbcb9538------2</link>
            <guid isPermaLink="false">https://medium.com/p/ce2d30459b6e</guid>
            <category><![CDATA[ai-tools-2023]]></category>
            <category><![CDATA[interview]]></category>
            <category><![CDATA[ai-tools-for-content]]></category>
            <category><![CDATA[transcription]]></category>
            <category><![CDATA[transcribe]]></category>
            <dc:creator><![CDATA[Ulysse Maes]]></dc:creator>
            <pubDate>Thu, 04 May 2023 15:04:31 GMT</pubDate>
            <atom:updated>2023-05-04T15:04:31.304Z</atom:updated>
            <content:encoded><![CDATA[<p>In this short tutorial, I’m going to show you how to automatically create a transcript from an audio file of an interview in three simple steps. This method works for any audio file up to 2 hours, in almost any language: apart from English, other languages like Dutch, German and French are supported as well. Follow along to get your free transcript within a couple of minutes!</p><h3>Step 1: Create a free account on Scribewave</h3><p>We will be using an online tool called Scribewave. Start by <a href="https://scribewave.com">creating a free account here</a>, by clicking “Start for free” in the upper right corner. Upon signup you will receive 300 free credits to use for your first transcript.</p><h3>Step 2: Upload your file</h3><p>Once you are logged in, you will be redirected to the dashboard. Under the section “Create” you will see different modules. Click the first one, which is purple and has a title “Transcribe”.</p><figure><img alt="Screenshot of the Transcribe tile" src="https://cdn-images-1.medium.com/max/336/1*tisJzLBLSg5qp66IVR0U3Q.png" /><figcaption>Click the big purple card that says “Transcribe”</figcaption></figure><p>It will lead you to a page that allows you to upload your file. Browse to the audio file of your interview on your computer and upload it. Currently Scribewave supports all common audio formats: mp3, wav, flac, m4a and ogg. Note that the file currently needs to be less than 2 hours and 200MB. Once you have selected your file, it will be uploaded automatically. When the file has been uploaded, as message appears which says that you can close the window. Within a couple of minutes, you will receive an email with a link to the transcript!</p><h3>Step 3: Check the result</h3><p>Go to your transcript by clicking on the link in your email, or by refreshing the dashboard and clicking on your project. You will end up in the editor, which allows you to quickly check the automatically generated transcript. Some words might be misinterpreted: you can correct them easily.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*yBZSkKkbiFyToaofsfmrKA.png" /><figcaption>The editor allows you to correct mistakes if needed, and to translate the result to another language</figcaption></figure><p>Once you’re entirely happy with the result, you can download it as Word, as plain text or as SRT using the download button at the top right, and you’re done! That was easy, wasn’t it?</p><h3>What is Scribewave?</h3><p>Scribewave is an online automatic transcription and translation tool, that I have developed to help me with my transcribing and subtitling jobs. Journalists and students like me use it on a daily basis to save time, improve accuracy and increase efficiency. Scribewave enables you to convert any audio file to text, and to download it as plain text, as a Word document or as an SRT file afterwards. Moreover, it automatically adds word-level captions to your short-form videos. Lastly, you can use it as well to create subtitles for both short- as well as long-form videos.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Yz7dGbOU0oh9u6hz-ELb8g.png" /><figcaption>The Scribewave logo</figcaption></figure><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=ce2d30459b6e" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Land an internship in New York City]]></title>
            <link>https://medium.com/aft-pulse/land-an-internship-in-new-york-city-78a7deaba649?source=rss-9a4fbbcb9538------2</link>
            <guid isPermaLink="false">https://medium.com/p/78a7deaba649</guid>
            <category><![CDATA[new-york-city]]></category>
            <category><![CDATA[internships]]></category>
            <category><![CDATA[trip]]></category>
            <category><![CDATA[startup-lessons]]></category>
            <category><![CDATA[belgium]]></category>
            <dc:creator><![CDATA[Ulysse Maes]]></dc:creator>
            <pubDate>Mon, 21 Nov 2022 14:17:31 GMT</pubDate>
            <atom:updated>2022-11-21T14:17:31.798Z</atom:updated>
            <content:encoded><![CDATA[<p><strong>Now more than ever, employers emphasize the importance of practical experience in their hiring process. As a student, you can get ahead of the curve by applying for international internships. Not only will your experience make your CV stand out and boost your chances of landing a job in the future, it can also be an unforgettable experience. For many people, the ultimate desire is to establish a job in New York City, which is sometimes referred to as the “world’s capital” and is known for being the leader in fields like banking, fashion, and marketing. The downside is that, due to its popularity, there is a lot of competition. Use the five tips in this article to successfully apply for an internship in New York City.</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*7EtoaxZW5e2K1eqsmjalPw.jpeg" /><figcaption>Credits: <a href="https://www.pexels.com/photo/people-standing-on-brown-bridge-2260784/">Pexels</a></figcaption></figure><h3><strong>Are interns in NYC paid?</strong></h3><p>New York is an expensive city, so it might be quite essential to know how much an internship will pay. Getting an internship in New York City doesn’t always imply getting paid enough to support a posh NYC lifestyle. Although most short-term internships in NYC turn out to be unpaid work, it’s not impossible to get paid. Numerous businesses and organizations provide internships, which pay interns in the form of an hourly wage, a stipend, reimbursement for travel and subsistence costs, etc. However, like with many internships around the world, the firm or organization where you are interning often decides if they provide money.</p><p>But you shouldn’t let money stop you from interning in one of the world’s most amazing cities! There are several scholarships offered through your university, private foundations, or state money for people taking creative sector internships in New York City.</p><p>Additionally, make sure to investigate whether your internship qualifies for academic credit from your university. Long-term cost savings may be possible with this. Also, remember that having an internship in New York City will most likely be very beneficial to your career.</p><h3><strong>5 suggestions for landing an internship in New York City</strong></h3><p><strong>1. Know what makes you unique and have a strong narrative</strong></p><p>Unsure about how to obtain an internship in New York City? In a diversified metropolis full of individuals who share one similar goal: to succeed, being the most distinctive individual does not have the same value as it does in a small town. College students need to stand out from the crowd and perfect their art and talents if they want to get internships in NYC.</p><p>You must concentrate on developing your story and establishing your identity. You need an edge in this metropolis if you want to be noticed. What distinguishes you? Why should they hire you, specifically? The desire to succeed must go hand in hand with an edge; you have to show why you want it so bad. Expect long days, and demanding tasks.</p><p><strong>2. Make your resume stand out</strong></p><p>Having a strong resume is indispensable. Your CV ought to depict you in your best light. It needs to highlight your accomplishments, experiences, and career goals. Consider using your CV to advertise your unique brand to potential employers. Use your imagination! Make use of the resume’s layout to highlight your personality and skill set.</p><p><strong>3. Create a CV specifically for New York hiring supervisors.</strong></p><p>One page is the maximum length for a resume, which should be brief and pleasant. You must be able to captivate the employer by sharing your story and demonstrating your experience and abilities.</p><p>We advise using this format:</p><p><em>standard formatted header</em></p><p><em>professional statement of one sentence</em></p><p><em>Work experience (no more than 2–3 jobs or internships that are relevant to the position you’re applying for)</em></p><p><em>Your education</em></p><p><em>Your top skills</em></p><p>Use specific language and proactive verbs to make your professional experience stand out and convey initiative and skill. It’s crucial to make your resume simple to read and customized for the job you’re looking for!</p><p><strong>4. Include a cover letter even if one is not necessary.</strong></p><p>In a cover letter, you have the chance to elaborate on everything you’ve said in your resume and CV in the cover letter. Use it to demonstrate why you are the ideal candidate for the job. Show them that you did your homework! It can help you stand out from other applicants with comparable experience and credentials. The hiring manager should be the only recipient of your one-page cover letter, which should have the same formatted heading as your resume.</p><p><strong>5. Create relationships through networking</strong></p><p>In New York City, people network without even realizing it, since every interaction is an opportunity. New York is known for being an industry leader, in many different fields. As a result, creating valuable relationships in your chosen, in-demand field is easy.</p><p>The goal is to establish these relationships as soon as possible, while you are still gaining information and experience related to your degree. By merely meeting the proper individuals, these encounters may facilitate mentorships and internships. You can develop a personal branding that links uniqueness with skills by observing successful professionals.</p><h3><strong>New York makes sense as a student</strong></h3><p>It’s not an easy job to secure an internship in New York City, but these crucial hints might set you on the right course. For undergraduate and international students, New York City offers a wealth of year-round personal and professional options. The city doesn’t operate on a fall/spring semester schedule. Every week, there are several easily accessible industry-specific events, whether it be an art show or a technological expo.</p><p>Finding one’s specialization is encouraged by the city’s numerous sectors. College and international students living in New York City have the opportunity of identifying their job path before entering the workforce thanks to first-hand exposure to a variety of different vocations. If necessary, they can change their course of study without incurring any extra fees or penalties. Why wait until you graduate from college to start working in international markets? Launch your career right away!</p><h3><strong>AFT Student Startup Trip</strong></h3><p>If you are a student studying in Belgium, AFT has some good news for you. We have reserved some spots on our upcoming Student Startup Trip to New York. In this 9-day trip, you will get the opportunity to discover the Big Apple’s startup ecosystem, connect with friendly and successful professionals, and get to know the American mentality and lifestyle. Of course, a lot of fun with our diverse group of driven participants is guaranteed as well. You can apply by signing up <a href="https://www.aftleuven.be/student-startup-trip/">here</a>.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=78a7deaba649" width="1" height="1" alt=""><hr><p><a href="https://medium.com/aft-pulse/land-an-internship-in-new-york-city-78a7deaba649">Land an internship in New York City</a> was originally published in <a href="https://medium.com/aft-pulse">AFT Pulse</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
    </channel>
</rss>