Joe Gorse A Space to Think and Do

Who Am I

Joe Gorse, the Fourth, since we get to do that here in the US.

I am a Gorse. Which is likely a shortened Slovenian name. We are a simple people. Hopefully a small balance for a world that tends toward the complicated.

I have done a few things, most of them remarkably unnoteworthy and forgettable. The rest I may need your help to see.

My life currently revolves around family and challenges that plop onto my opportunistic lap.

Family

Old

I have lost my son to a divorce. The post-decree proceedings continue without progress.

In the beginning I was blessed with the opportunity to spend a few days at a county jail as an innocent man and wear my favorite color, orange, while having nothing else to do but hang around other guys and talk about our feelings. The food was free. The showers were hot. Did I mention it was free? I mean, I paid for it in taxes, but when I left I didn’t get a bill. I know. Crazy, right? I wonder how they even make money… or if they are some kind of socialist communist anti-capitalism escape hatch? Who knows. But I hear that if you stay long enough you can read books and write things with pencils! Without the distraction of having to have a job, pay taxes, or deal with annual performance reviews! No wonder some never want to leave.

New

I am remarried. New baby girl. Sadly, the resort above won’t help with the new costs or meals, so I need to work harder to get the annual performance review to get the money to put the food on the table to pay the taxes and all that.

Challenges

du jour

Inspired by Euler Project #6 https://projecteuler.net/problem=6

I wanted to learn how to use Generating functions to algebraically derive the pure function for a recursive function. For example,

\[f(n) = \sum_{i=1}^n a(i)\]

where f(n) is the sum of some n coefficients defined by a(i).

Specifically as it relates to Euler #6 where \(a(i) = i^2\) which gives the resulting sequence of \(f(n=1,2,3,4,5,...)={1,5,14,30,55,...}\) The recursive definition is \(f(n)=f(n-1) + n^2\)

I have not quite figured out the solving for the coefficients of the series.

data flow

Why data flow? Imperative programming has a lot of filler material before we get to the point. The point is data-in, do something, data-out. In functional programming, the data flow of the function is obvious but difficult to input or output to peripherals.

The data format and type is the minimum information necessary to use an object. Hence the project like Kaitai Struct is interesting, since it rallies around the actual data format: https://kaitai.io/

Static code analysis of a code base. Imagine digesting (decomposing) a 100k line C project into its core dataflows. Then modifying the legacy code until the desired dataflow modification has occurred while maintaining the remaining dataflow (baseline functionality).

Dynamic measurement of a running process. Analyze the movement of data of a running process (compiled code or interpreted) to visualize the map of dataflows. Add a real-time view to the debugger. I expect classes of unexpected but utterly defined behavior to show readily in these views.

Work

I solve problems. I try to use math and intentionality. They say it is better to be lucky than good, luck has not yet graced me with enough of her presence to stop playing the game.

The problems I care about are those I can do something about and that impact others. Sometimes I take problems that others say can’t be solved just for the challenge.

I find a great commonality in all work. There is always some scope of what to do, a scheduled deadline, and some limit of human and monetary resources to deploy at any issue. The art of it comes at engaging the right person when you are stuck.

The End

Find out who you are. The Examen is a good way to start: recount your past 24 hours, how did you feel when each moment happened, seek that which inspires your passion. When I do this, I see that helping do what others find difficult is when I feel the best. Useful. A tool. For good.

Good luck. Have fun. Don’t die. GL HF DD.

Cheers, Joe

Test 1, 2, 3...

Hello.

Is there anybody out there?

Just nod if you can hear me.

If this works, then I just write content.

Markdown failure. I wonder if I can typeset with TeX. Oh, look! Squirrel!

\[f(n) = \sum_{i=1}^n a(i)\]

Joe Gorse jhgorse@gmail.com

Introducing Lanyon

Lanyon is an unassuming Jekyll theme that places content first by tucking away navigation in a hidden drawer. It’s based on Poole, the Jekyll butler.

Built on Poole

Poole is the Jekyll Butler, serving as an upstanding and effective foundation for Jekyll themes by @mdo. Poole, and every theme built on it (like Lanyon here) includes the following:

  • Complete Jekyll setup included (layouts, config, 404, RSS feed, posts, and example page)
  • Mobile friendly design and development
  • Easily scalable text and component sizing with rem units in the CSS
  • Support for a wide gamut of HTML elements
  • Related posts (time-based, because Jekyll) below each post
  • Syntax highlighting, courtesy Pygments (the Python-based code snippet highlighter)

Lanyon features

In addition to the features of Poole, Lanyon adds the following:

  • Toggleable sliding sidebar (built with only CSS) via link in top corner
  • Sidebar includes support for textual modules and a dynamically generated navigation with active link support
  • Two orientations for content and sidebar, default (left sidebar) and reverse (right sidebar), available via <body> classes
  • Eight optional color schemes, available via <body> classes

Head to the readme to learn more.

Browser support

Lanyon is by preference a forward-thinking project. In addition to the latest versions of Chrome, Safari (mobile and desktop), and Firefox, it is only compatible with Internet Explorer 9 and above.

Download

Lanyon is developed on and hosted with GitHub. Head to the GitHub repository for downloads, bug reports, and features requests.

Thanks!

Example content

Howdy! This is an example blog post that shows several types of HTML content supported in this theme.

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis. Cras mattis consectetur purus sit amet fermentum.

Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.

Etiam porta sem malesuada magna mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.

Inline HTML elements

HTML defines a long list of available inline tags, a complete list of which can be found on the Mozilla Developer Network.

  • To bold text, use <strong>.
  • To italicize text, use <em>.
  • Abbreviations, like HTML should use <abbr>, with an optional title attribute for the full phrase.
  • Citations, like — Mark otto, should use <cite>.
  • Deleted text should use <del> and inserted text should use <ins>.
  • Superscript text uses <sup> and subscript text uses <sub>.

Most of these elements are styled by browsers with few modifications on our part.

Heading

Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.

Code

Cum sociis natoque penatibus et magnis dis code element montes, nascetur ridiculus mus.

// Example can be run directly in your JavaScript console


// Create a function that takes two arguments and returns the sum of those arguments

var adder = new Function("a", "b", "return a + b");

// Call the function

adder(2, 6);
// > 8

Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.

Lists

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

  • Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
  • Donec id elit non mi porta gravida at eget metus.
  • Nulla vitae elit libero, a pharetra augue.

Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.

  1. Vestibulum id ligula porta felis euismod semper.
  2. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
  3. Maecenas sed diam eget risus varius blandit sit amet non magna.

Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis.

HyperText Markup Language (HTML)
The language used to describe and define the content of a Web page
Cascading Style Sheets (CSS)
Used to describe the appearance of Web content
JavaScript (JS)
The programming language used to build advanced Web sites and applications

Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.

Tables

Aenean lacinia bibendum nulla sed consectetur. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Name Upvotes Downvotes
Totals 21 23
Alice 10 11
Bob 4 3
Charlie 7 9

Nullam id dolor id nibh ultricies vehicula ut id elit. Sed posuere consectetur est at lobortis. Nullam quis risus eget urna mollis ornare vel eu leo.


Want to see something else added? Open an issue.

What's Jekyll?

Jekyll is a static site generator, an open-source tool for creating simple yet powerful websites of all shapes and sizes. From the project’s readme:

Jekyll is a simple, blog aware, static site generator. It takes a template directory […] and spits out a complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog right here from GitHub.

It’s an immensely useful tool and one we encourage you to use here with Lanyon.

Find out more by visiting the project on GitHub.