List of banned tells for GPT

1) Just watched Andy Stapleton youtube-video about echo technique for working with chatGPT. After that I have made my list of banned tells for GPT. Here it is.

Vibrant, Bustling, Vital, Out of the box, Underscores, Dive into, Reverberate, Delve, Hustle and bustle, Foster, Labyrinthine, Moist, Remnant, Nestled, Game changer, Symphony, Gossamer, Enigma, A testament to, Indelible, Meticulous, Meticulously, Navigating, Complexities, Realm, Understanding, Shall, Tailored, Underpins, Everchanging, Ever-evolving, Not only, Embark, Designed to enhance, It is advisable, Daunting, When it comes to, In the realm of, Amongst, Unlock the secrets, Unveil the secrets, Diving, Unleash, Harness, Tapestry, In summary, Take a dive into, Analogies to being a conductor or to music, Metropolis, Unless, Arguably, Ultimately, To put it simply, Promptly, In today's digital era, Subsequently, Leverage.

2) Previously I also used this prompt for working with LaTeX codes, but now I simply use texGPT in overleaf for quick drafting.

Start every sentence on a new line. Add line breaks after every 60 characters to make the text easier to read, but do not add these breaks within commented text. Preserve all original comments exactly as written, and do not delete anything unless explicitly instructed. Use British English and simple language, avoiding words that non-native speakers may not understand. Avoid typical ChatGPT phrases like "leveraging" or any overuse of sophisticated words, adjectives, or jargon. Do not use gerunds or adjectives excessively. Maintain the accuracy of content and avoid changes to technical terms.

3) When working within a project, I define instructions like this:

Prohibited words and phrases: I must avoid the following words and phrases, along with their derivatives: However, Additionally, Vibrant, Bustling, Vital, Out of the box, Underscores, Dive into, Reverberate, Delve, Hustle and bustle, Foster, Labyrinthine, Moist, Remnant, Nestled, Game changer, Symphony, Gossamer, Enigma, A testament to, Indelible, Meticulous, Meticulously, Navigating, Complexities, Realm, Understanding, Shall, Tailored, Underpins, Everchanging, Ever-evolving, Not only, Embark, Designed to enhance, It is advisable, Daunting, When it comes to, In the realm of, Amongst, Unlock the secrets, Unveil the secrets, Diving, Unleash, Harness, Tapestry, In summary, Take a dive into, Analogies to being a conductor or to music, Metropolis, Unless, Arguably, Ultimately, To put it simply, Promptly, In today's digital era, Subsequently, Tailored, and Leverage. 
I must avoid using "potential" in the sense of showing the capacity to develop into something in the future, because "electric potential" is a variable in Vlad's research. I must avoid "framework" in the sense of a basic structure underlying a computations, because "organic framework" is a material in Vlad's project. I must avoid using "capacity" and "capacitance" in sense of ability to do something, because similar terms are used in electrochemistry.

My first presentation generated with AI

I am working on a presentation and use AI for the first time to draft some texts.

There are already existing solutions. Like plug-ins for google slides and copilot that works with powerpoint. I am using chatGPT and work in google slides.

Here is how I add some slides through app scripts:

function addSlide() {
    const presentationName = "ScientificActivities";
    const presentations = DriveApp.getFilesByName(presentationName);
    if (!presentations.hasNext()) return;

    const presentation = SlidesApp.openById(presentations.next().getId());
    const layouts = presentation.getMasters()[0].getLayouts();
    const targetLayout = layouts.find(layout => layout.getLayoutName() === "OBJECT");
    if (!targetLayout) return;

    const titleText = "Bridging Modelling and Scalable Chemical Processes"; // Edit title here
    const bodyText = "Assoc. Prof. Vladislav Ivaništšev"; // Edit body content here

    const newSlide = presentation.appendSlide(targetLayout);
    newSlide.getPlaceholder(SlidesApp.PlaceholderType.TITLE).asShape().getText().setText(titleText);
    newSlide.getPlaceholder(SlidesApp.PlaceholderType.BODY).asShape().getText().setText(bodyText);
}

Title and body can be generated by … within a long conversation with my personal research assistants. I enjoy the process because these skills will save me a lot of time in the future, although right now it took me some hours to get this simple code working. I have also used AI to find and download a dozen on logos of universities that I have visited (shown below). And it saved me time to get facts from my CV right into the slides.