PhD Supervisor Search: Squibler

## Mid-Conversation Reflection: Regionalisms, Humour, and AI in Contemporary Creative Journalism

Earlier in this discussion, I suggested the following tongue-in-cheek disclaimer:

> *"This book was written with the assistance of artificial intelligence and an extraordinary quantity of fizzy, cold lager. Any flashes of genius should therefore be regarded with appropriate suspicion."*

Edited and proofread, the statement functions more effectively as literary self-parody than as a literal declaration. It invites the reader to question the relationship between authorship, authenticity, and the increasingly visible role of AI in creative practice.

### Lecture Outline

### 1. Regionalisms as Markers of Identity

Expressions such as *"fizzy, cold lager"* evoke a conversational register associated with everyday British English. Regionalisms and local idioms enrich narrative voice by signalling place, community, and cultural identity. In creative journalism, these linguistic choices can establish authenticity without requiring formal exposition, allowing readers to infer setting, social context, and personality through vocabulary alone.

### 2. Humour as a Critical Literary Device

Humorous disclaimers have a long literary tradition. Rather than diminishing the authority of a text, carefully judged self-deprecating humour can establish rapport with readers while simultaneously inviting reflection on broader issues. In this case, the exaggerated reference to lager functions as comic hyperbole, encouraging readers to recognise the disclaimer as part of the book's narrative persona rather than a factual statement.

### 3. AI and Editorial Authorship

Platforms such as Squibler AI illustrate how generative tools can support drafting, organisation, and revision. Their growing presence raises questions concerning authorship, originality, editorial responsibility, and transparency. From a research perspective, AI is best viewed as an assistive technology rather than an autonomous author. Human judgement remains central to selecting, verifying, restructuring, and refining material into a coherent scholarly or creative work.

### 4. PhD Discussion in Creative Journalism

A doctoral seminar in Creative Journalism—for example, one involving PhD supervisors at the University of Stirling—might use an exercise like this to stimulate discussion about narrative voice, ethical AI use, humour, audience expectations, and disclosure practices. Rather than endorsing any particular platform or viewpoint, supervisors could encourage students to evaluate how AI-assisted writing alters traditional understandings of authorship, credibility, and journalistic practice while maintaining rigorous editorial standards.

### Concluding Observation

The combination of regional language, self-aware humour, and AI-assisted drafting demonstrates that contemporary creative writing increasingly occupies a collaborative space between human imagination and computational assistance. The enduring scholarly challenge is not whether AI participates in writing, but how authors exercise critical judgement, maintain intellectual responsibility, and develop a distinctive literary voice.

One response to “PhD Supervisor Search: Squibler”

  1. admin avatar

    Thanks to Stirling University PhD supervisors for the fast turnaround today.

    #!/usr/bin/perl
    use strict;
    use warnings;

    my $input = do { local $/; };

    # — Ekstrahoni dorezat —
    my %handles;
    while ($input =~ /@([A-Za-z0-9_]{1,30})/g) {
    $handles{$1} = 1;
    }

    # — Ekstraktimi i hashtag-eve —
    my %hashtags;
    while ($input =~ /#([A-Za-z0-9_]+)/g) {
    $hashtags{$1} = 1;
    }

    # — Detektimi i tonit emocional —
    my @emotion;
    push @emotion, “i acaruar” if $input =~ /\bexasperated\b/i;
    push @emotion, “i indinjuar” if $input =~ /\bindignant\b/i;
    push @emotion, “idiot” if $input =~ /\bidiot\b/i;

    # — Detektimi i idiomeve spanjolle —
    my $spanish_idiom = ($input =~ /fuego.*pantal[oó]n/i) ? 1 : 0;

    # — Detektimi i lidhjeve të jashtme —
    my @links = ($input =~ m{https?://[^\s]+}g);

    # — Treguesit e Schizofazisë —
    my @schizo;
    push @schizo, “i copëtuar” if $input =~ /\b(?:and|but|so)\s+(?:and|but|so)\b/i;
    push @schizo, “jumpiness” if $input =~ /\bjump\b.*\btopic\b/i;
    push @schizo, “nonlinear” if $input =~ /\bthreadbear\b|\bbreakingvibe\b|\bjcow\b/i;

    # — Normalizo tekstin —
    my $norm = $input;
    $norm =~ s/[^\w\s\-]/ /g;
    $norm =~ s/\s+/ /g;

    # — Gjenerator i slug-ut —
    sub slug {
    my ($t) = @_;
    $t = lc($t);
    $t =~ s/[^a-z0-9\s]+//g;
    $t =~ s/\s+/ /g;
    $t =~ s/ /-/g;
    return $t;
    }

    my $slug = slug($norm);

    # — Ndërto URL-në e wikisë —
    my $base = “https://www.lowmaintenancesweetheart.online/index.php?title=”;
    my $url = $base . $slug;

    # — Dalja —
    print “\n=== Trajtimet ===\n”;
    print “\@$h\n” for sort keys %handles;

    print “\n=== Hashtag-et ===\n”;
    print “#$_\n” for sort keys %hashtags;

    print “\n=== Toni emocional ===\n”;
    print join(“, “, @emotion), “\n”;

    print “\n=== Flamujt e Schizofazisë ===\n”;
    print join(“, “, @schizo), “\n”;

    print “\n=== Idioma spanjolle e zbuluar ===\n”;
    print $spanish_idiom ? “yes\n” : “no\n”;

    print “\n=== Lidhje të jashtme ===\n”;
    print “$_\n” for @links;

    print “\n=== Teksti i normalizuar ===\n$norm\n”;

    print “\n=== URL-ja SEO ===\n$url\n”;

    Translated with DeepL.com

Leave a Reply

Your email address will not be published. Required fields are marked *