Author Topic: Podcast topics? What would you guys want to hear about?  (Read 3501 times)

0 Members and 1 Guest are viewing this topic.

Offline Cobalt

  • QB64 Developer
  • Forum Resident
  • Posts: 878
  • At 60 I become highly radioactive!
    • View Profile
Podcast topics? What would you guys want to hear about?
« on: July 26, 2020, 11:39:06 am »
Looking for suggestions on what our community would like to hear covered in the next few podcast?

Granted after becoming radioactive I only have a half-life!

Offline SMcNeill

  • QB64 Developer
  • Forum Resident
  • Posts: 3972
    • View Profile
    • Steve’s QB64 Archive Forum
Re: Podcast topics? What would you guys want to hear about?
« Reply #1 on: July 26, 2020, 02:56:03 pm »
I'd still love to hear about how to utilize _HARDWARE and _HARDWARE1.  http://www.qb64.org/wiki/DISPLAYORDER

How the heck do we make use of that second hardware layer??
https://github.com/SteveMcNeill/Steve64 — A github collection of all things Steve!

Offline johnno56

  • Forum Resident
  • Posts: 1270
  • Live long and prosper.
    • View Profile
Re: Podcast topics? What would you guys want to hear about?
« Reply #2 on: July 26, 2020, 08:44:50 pm »
As I cannot speak for, or on behalf of 'The Community', the suggestion I wish to place before you is totally selfish.

I lack two of the main abilities to create games (I enjoy games more than 'general' programs... lol). Imagination and creativity. Not totally but enough to cause a great deal of frustration.

For those of us (Ok. Me.) who have this 'creative block', perhaps a series on game design and or creation. Focusing on concept; storyboarding; tools; structure and efficiency.

Perhaps game creation is  too large a topic for one lesson? I think we (Ok. Me.) could benefit from a lesson on good program structure and efficiency.

Just a thought...
Logic is the beginning of wisdom.

Offline Dimster

  • Forum Resident
  • Posts: 500
    • View Profile
Re: Podcast topics? What would you guys want to hear about?
« Reply #3 on: July 27, 2020, 10:05:10 am »
I would love to learn more on "Libraries" - What's out there? What steps to take to adapt them to my program? Do you need to be well versed in QB64 to understand them? Tricks and considerations on building my own libraries.


FellippeHeitor

  • Guest
Re: Podcast topics? What would you guys want to hear about?
« Reply #4 on: July 27, 2020, 10:20:11 am »
I'd still love to hear about how to utilize _HARDWARE and _HARDWARE1.  http://www.qb64.org/wiki/DISPLAYORDER

How the heck do we make use of that second hardware layer??

We'll have to wait for @Galleon to guest star on the show for this one 😉.

FellippeHeitor

  • Guest
Re: Podcast topics? What would you guys want to hear about?
« Reply #5 on: July 27, 2020, 10:20:47 am »
@johnno56 @Dimster thank you for your suggestions, too.

Offline johnno56

  • Forum Resident
  • Posts: 1270
  • Live long and prosper.
    • View Profile
Re: Podcast topics? What would you guys want to hear about?
« Reply #6 on: July 27, 2020, 11:33:36 pm »
Umm... I like Libraries too...
Logic is the beginning of wisdom.

Offline Pete

  • Forum Resident
  • Posts: 2361
  • Cuz I sez so, varmint!
    • View Profile
Re: Podcast topics? What would you guys want to hear about?
« Reply #7 on: July 28, 2020, 12:16:42 am »
SCREEN ZERO, because podcasting anything else is just a waste of my time. :D

Pete
Want to learn how to write code on cave walls? https://www.tapatalk.com/groups/qbasic/qbasic-f1/

Offline Gets

  • Newbie
  • Posts: 28
    • View Profile
Re: Podcast topics? What would you guys want to hear about?
« Reply #8 on: July 28, 2020, 03:25:07 am »
I'd still love to hear about how to utilize _HARDWARE and _HARDWARE1.  http://www.qb64.org/wiki/DISPLAYORDER

How the heck do we make use of that second hardware layer??

Most graphic/text commands have to be done on the software layer, so I think it's just there for when you need to sandwich those between hardware images

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Podcast topics? What would you guys want to hear about?
« Reply #9 on: July 28, 2020, 12:32:30 pm »
All these API things Spriggsy has been springing on us, maybe an interview with him?

Luke says they are of a kind, variations on a pattern, so what is that pattern?

Offline SpriggsySpriggs

  • Forum Resident
  • Posts: 1145
  • Larger than life
    • View Profile
    • GitHub
Re: Podcast topics? What would you guys want to hear about?
« Reply #10 on: July 28, 2020, 12:48:20 pm »
Luke says they are of a kind, variations on a pattern, so what is that pattern?
@bplus
The pattern is basically either URLmon or CURL and parsing the response. Usually either JSON or plain text. I might end up making a function that actually goes through and parses a JSON file properly by grabbing values based on key name rather than just using MID$ right in the function itself. I'll think about it.
Shuwatch!

Offline bplus

  • Global Moderator
  • Forum Resident
  • Posts: 8053
  • b = b + ...
    • View Profile
Re: Podcast topics? What would you guys want to hear about?
« Reply #11 on: July 28, 2020, 02:02:02 pm »
@bplus
The pattern is basically either URLmon or CURL and parsing the response. Usually either JSON or plain text. I might end up making a function that actually goes through and parses a JSON file properly by grabbing values based on key name rather than just using MID$ right in the function itself. I'll think about it.

Yeah see, you are writing about elements I am unfamiliar. It would be good to lay a foundation. Luke did nice job of that.