the immovable object learns the business of software dev

Profile
New Zealand

I started this blog having written about 10 small programs in Python and getting most of them to work - 90 pages into my first python book.

I started to code in BASIC on a BBC Micro emulator (mostly making sprites. And I started building a boxing game, then turned it into the beginnings of a pong game with the faces for balls. A little bit of sound and mathematical psychedelic animated patterns.) on my family Acorn Archimedes. Which helped me get the high score in high school algebra - 98%. Many years later and after moving away from maths into creative fields, I failed at C# then I did a few days with C++ and Javascript and liked them but then I found python and fell in love, but Javascript seems faster - I have achieved proficiency in Javascript (tested on pluralsight) - but I'm still a beginner at it. So I've been doing python for about 8 months (not every day or even every week, but my plan was to do an hour of coding every day. My plan now is to do 1hrs/day for 6-7days/wk in LibertyBASIC for prototyping and either GoDot engine or Javascript.) and got as far as 84pgs into my first python book including assignments (I went back to the beginning after a break to refresh.)

My goal is to use game engines and BASIC to build prototypes, game demos and finished games and software; to build my own indie video games based on my art, writing and design. and hire my javascript programming, 2d animation and artist friends to help with my video game art projects.

I started out in Python - it is a language I still love, however: now I'm studying Javascript.

I'll talk about things I did wrong and what I learned. Both in game dev/software dev and business concepts. Hopefully I can chart my progression on this blog.

For more of my stuff check out my website: http://polydina.com

2 comments
11 entries
Advertisement
WinterDragon
December 15, 2022
so I'm starting again, again...

I've been away from coding for a year and a half.

As is my way I've forgotten the specifics of just about everything.

But my mind has retained the understanding and the general gist of what I learned.

Which is not enough to really build anything, though I have been working on websites in that time, mo…

14,761 views
WinterDragon
February 08, 2020
a question for you javascript/html5 guys/dolls?

I found this code for "raw html" in wordpress to create a drop-down card with image and text when you hover over the button.

Trying to figure out how to change this code so that the card drops down when you click the button instead of hover?

here's my suggested code:

<!DOCTYPE html>

<html>

&…

1,530 views
WinterDragon
January 05, 2020
I learned a new word today...

Incongruity


The relevant use of this term in business is something that just doesn’t make sense.

1. Economics

I feel we’re pretty lucky in New Zealand, that though the world economy is fraught with problems, many of our economical institutions and constructs seem to work. Which poses a dilhemma for me…

2,070 views
WinterDragon
January 05, 2020
early notes on intro to entrepreneurship

Capitalising on:

1. Unexpected Success

2. Unexpected Failure

3. Unexpected Outside Events

So my big idea is to find a solution to my design problem. I have a design idea but it has no form. The design is a 36-page document describing a narrative for an interactive house.

1. I have recently tested my kno…

2,190 views
WinterDragon
July 20, 2018
pseudocode assignment

The assignment was to adapt the guessing game to reverse the process,

by allowing the player to choose the number and let the computer try to guess it,

then to write this game as pseudocode.

Let me know how well you think I did?

 

declare variables

import random

def s…

2,556 views
WinterDragon
June 14, 2018
first time coding in python on ios: Guess My Number (rated M: language)

So I used python 3 for ios on my ipad to do part one of this assignment.

Part One: create a guess my number game:

numSpecial = 0 time = 0 guesses = 0 g = 0 i = 0 import random numSpecial= random.randint(1,9) print ("guess my nmber, biatch! between 1 and 10") …
2,935 views
WinterDragon
June 01, 2018
still tinkering with python

Q: assignment that flips a coin 100 times and gives you the total amount of heads and tails.

A: I started by making it flip a coin 5 times so I could easily watch it working and fix bugs.

I don't think it actually flips the coin exactly 100 times, can you spot the error?

It took me a…

2,481 views
WinterDragon
February 21, 2018
my first program in python
I wrote my first program (not including the false start last time I attempted programming) in Python... and it works! after a few bug fixes it's actually quite small and some would think insignificant. But I'm getting used to the syntax and form of the language.   print ("hello") …
2,804 views
WinterDragon
February 21, 2018
my 2nd program in python

tip15 = 0
tip20 = 0
price = input ("how much did your meal cost?")
tip15 = int (price) * .15
tip20 = int (price) * .2
print ("A 20% tip would be ",tip20," and a 15% tip would be",tip15)
input ()

I wrote a tipper program for an exercise.
It's a simple program and it took 20mins to writ…

3,210 views
WinterDragon
February 21, 2018
an early coding exercise 1

carPrice = input ("what is the base price of the car?")

tax = int (carPrice) * .125
insurance = 250
totalcarPrice = int (carPrice) + int (insurance) + int (tax)

print ("total cost of your car including: insurance $",insurance,",")
print ("and tax: $",tax," comes to $",totalcarPri…

3,418 views
WinterDragon
February 21, 2018
a fortune cookie program

So it took one day to write and bug fix.

Then another day to go through guesswork and figuring it out - to get the program to work.

I haven't got up to while loops in the book, so it took a while - a few errors before I got it working.

And I certainly haven't got as far as def method…

3,015 views
Advertisement

Popular Blogs

shawnhar
Generalist
101 Entries
9 Followers
15 Entries
10 Followers
johnhattan
Programmer
1,277 Entries
47 Followers
ApochPiQ
Generalist
628 Entries
44 Followers
dgreen02
Generalist
338 Entries
56 Followers
Advertisement