ClockworkCoder
Chaotic Neutral
I use a ThinkPad, mostly because it's a model than can be Libreboot'ed. Although I haven't been brave enough to flash it (yet).
The anticipation for the Pyra boosted my desire to create games.
I learned a little bit SDL2 and made with "Slay The Dragons" a first small 2D game, that will hopefully run on the Pyra.
At some point I also want to learn some 3D art/programming. But my progress on that matter is very slow.
Maybe an example would help. I am using a Pyra keymat photo that ED posted up as my avatar. But damnit, the boards avatar load engine auto-clipped the sides and left a result with eyebrows, eyes, nose... it anthropomorphized so neatly.
I'm sure it's been discussed, but is there a recommended game engine for that purpose for the Pyra?
I'm sure it's been discussed, but is there a recommended game engine for that purpose for the Pyra?
Godot is a 2D engine. It is also a 3D engine but you don't have to use it.
Apparently he does - which is what I would like to understand. If those companies were to post advertising here and splash their logos all over the site there would be an uproar. I am not upset that he is doing it - I just find it to be very odd behavior and would like to understand the why he is doing it. What motivates someone to name their online self after a commercial product or brand?
Maybe an example would help. I am using a Pyra keymat photo that ED posted up as my avatar. But damnit, the boards avatar load engine auto-clipped the sides and left a result with eyebrows, eyes, nose... it anthropomorphized so neatly. And I was heavily involved in the chaos that was the keyboard threads. And the boards changed software - resulting in my old icon image of my dog looking at the camera with his tongue hanging out going away - then someone bugged me to get a forum image to make the voice of posts easier to track - and the keymat kind of made sense in a twisted way. The 'why' of my forum avatar.
So - with @ThinkPad and his use of commercial branding, I'm curious as to, 'why'? He's not the only one. We also have a @SONY and probably others that aren't coming to mind. SONY I thought I 'kind of got' because of a mental connection between SONY - Playstation - Gaming - Pyra. I'm lost on the ThinkPad connection to the Pandora/Pyra community though.
Calm down, I just love good hardware.
>HUR DUR
>I am not upset that he is doing it
>why he is doing it
>commercial branding
>I'm curious as to, 'why'?
Calm down, I just love good hardware.
You seem defensive.
Yeah, it's very feature heavy, easy to get lost in the sauce. Like I said, I just really like they way it structures a "scene", very intuitive to my particular brain but I can see why it may not be for others.Looking more closely it seems very much overkill for my needs
#!/bin/bash
shopt -s lastpipe
contacts_file=~/contacts.txt
rofi -dmenu -location 1 -l 10 -width 100 -font "Inconsolata 14" -p contacts_list < "$contacts_file" | read -a "name"
[[ ! $name ]] && exit
[[ ${name[1]} ]] && echo -e "${name[1]}\n${name[2]}\n${name[3]}\n${name[4]}\n${name[5]}" | rofi -dmenu -location 1 -l 10 -width 100 -font "Inconsolata 14" -p ${name[0]} | read "number"
[[ ! ${name[1]} ]] && export number=${name[0]}
[[ ! $number ]] && exit
echo -e "call\nsms" | rofi -dmenu -location 1 -l 10 -width 100 -font "Inconsolata 14" -p $number | read "order"
case $order in
call) call $number ;;
sms) sms $number ;;
esac
<name> <number1> <number2>