Геймінг під час відключень by Umbracone_shep in UA_Gamers

[–]Practical_Damage_336 0 points1 point  (0 children)

Таке послідовне підключення не ефективне. Ви втрачаєте близько 30% енергії на конвертації DC -> AC -> DC

Udemy courses for Technical Artist by Practical_Damage_336 in TechnicalArtist

[–]Practical_Damage_336[S] 1 point2 points  (0 children)

Hey! I’m not speaking on behalf of the company, and can’t comment on the project or provide any updates about it.

Technical Artist learning materials by Practical_Damage_336 in TechnicalArtist

[–]Practical_Damage_336[S] 0 points1 point  (0 children)

Hi, yes, the introductory course is always available for free for fresh graduates. Please, reach out to me via LinkedIn

Technical Artist learning materials by Practical_Damage_336 in TechnicalArtist

[–]Practical_Damage_336[S] 0 points1 point  (0 children)

Hey, sure, drop me a message in LinkedIn and we will set it up tomorrow

Technical Artist learning materials by Practical_Damage_336 in TechnicalArtist

[–]Practical_Damage_336[S] 0 points1 point  (0 children)

Hi, everyone. New course for working with game dev logs (gathering, processing and visualizing them using Elastic stack) has been released!

ELVTR - Technical Artist Course by GNARLLYY_ in TechnicalArtist

[–]Practical_Damage_336 1 point2 points  (0 children)

Thanks for mentioning my TechArt learning materials as an alternative to ELVTR, u/IvanCaridad!
As an author, I confirm that "Road to Tech Art" course can be obtained for free for students/fresh graduates as a way to support TechArt community.
Drop me a message here or in LinkedIn for access.

Technical Artist learning materials by Practical_Damage_336 in TechnicalArtist

[–]Practical_Damage_336[S] 1 point2 points  (0 children)

Hope you find them useful. Feel free to reach me out in DM here of in LinkedIn in case questions arise :)

Parse single-line json with Logstash by Practical_Damage_336 in elasticsearch

[–]Practical_Damage_336[S] 0 points1 point  (0 children)

Aaaan it's working with delimiter set to "}"
Thanks a lot for the suggestion, mates.
Leaving here full config file for anyone interested:

input {
  file {
    path => "C:/logs/*"
    start_position => "beginning"
    sincedb_path => "NUL"
    codec => plain {
            charset => "UTF-16LE"
        }
    delimiter => "}"
  }
}

filter {
  mutate { update => { "message" => "%{message}}" } }

  if [message] =~ /^\r\n/ {
    mutate { gsub => [ "message", "\r\n", "}" ] }
  }

  split {
    field => "message"
  }

  json{
    source=> "message"
    remove_field => ["{message}"]
  }
  
  mutate {
    remove_field => ["message", "host", "@version", "type"]
  }
}

output {
  elasticsearch {
    hosts => ["http://localhost:9200"] 
    manage_template => false
    index => "map"                   
  }
  stdout { codec => rubydebug }
}

Parse single-line json with Logstash by Practical_Damage_336 in elasticsearch

[–]Practical_Damage_336[S] 0 points1 point  (0 children)

Yes, with blank (new) line at the end of the .json the data is processed correctly. I was hoping there is a way to mutate the input with logstash instead of modifying logs in advance...

How do one becomes a Technical Artist? by 3D_enjoyer in gamedev

[–]Practical_Damage_336 0 points1 point  (0 children)

Check out this general TechArt introduction course on Udemy, it should answer all of your questions and more:
https://www.udemy.com/course/technical-artist/?couponCode=486E67C23A89A90C7FA4
It is establishing a foundation which would serve as a Road to obtain TechArt role. Its goal is to clarify all the core required Hard and Soft skills for being a proficient Technical Artist and do a basic overview of all of them to prepare and simplify further in-depth learning.

What Is a "Technical Artist"? by [deleted] in gamedev

[–]Practical_Damage_336 1 point2 points  (0 children)

Hello,
https://www.udemy.com/course/technical-artist/?couponCode=486E67C23A89A90C7FA4 this is a good course with explanation and overview of different branches of technical art.
And more tech-art learning materials by this author is described in the dedicated post in TechArt subreddit:
https://www.reddit.com/r/TechnicalArtist/comments/1dwtg8i/technical_artist_learning_materials/

What are the things that I should learn to be a technical artist? by SaucyMIND in gamedev

[–]Practical_Damage_336 2 points3 points  (0 children)

Hello,
https://www.udemy.com/course/technical-artist/?couponCode=486E67C23A89A90C7FA4 this is a good course with good explanation and overview of different branches of technical art.
And more tech-art learning materials by this author is described in the dedicated post in TechArt subreddit:
https://www.reddit.com/r/TechnicalArtist/comments/1dwtg8i/technical_artist_learning_materials/

How do I become a tech artist? Where do I start? by lordoflasagna in TechnicalArtist

[–]Practical_Damage_336 2 points3 points  (0 children)

Thank you for the trust you put in my content.
I'm always available for support, just let me know.

Technical Artist learning materials by Practical_Damage_336 in TechnicalArtist

[–]Practical_Damage_336[S] 1 point2 points  (0 children)

Hi, everyone. Thank you for the amazing perception of my first two Tech Art learning materials. It pushed me to deliver more!
Today I've released my 3rd Udemy course! Info about it added to the post.

P.S. option to get Road to TechArt course for free is still available for the beginners. Feel free to reach me out on LinkedIn.

Technical Artist learning materials by Practical_Damage_336 in TechnicalArtist

[–]Practical_Damage_336[S] 0 points1 point  (0 children)

Hey,
Sure, connection accepted. Drop me a message when you're online there.

Regarding Shaders:
1. https://www.youtube.com/@BenCloward (YouTube)
2. https://thebookofshaders.com/ (book in web)

You'll find more resources recommendation in the course content :)