15 lines
		
	
	
		
			815 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			815 B
		
	
	
	
		
			HTML
		
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
    ChasGPT as code helper
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/posts.css') }}">
 | 
						|
    <section class="content">
 | 
						|
        <h1>Using ChatGPT in game development</h1>
 | 
						|
        <img src="{{ url_for('static', filename='images/chatgpt-meme.png') }}" alt="ChatGPT meme" width="800" height="500">
 | 
						|
        <p class="text"></br>Artificial intelligence is a good tool for programming (but is not always). In fact, very often it is necessary to write everything in such detail that in the middle of the text the urge to solve problems independently returns, or the chat is unable to produce error-free code that the urge to throw the computer away and go to rest returns.</p>
 | 
						|
    </section>
 | 
						|
{% endblock %}
 |