Skip to content

Instantly share code, notes, and snippets.

View influx6's full-sized avatar
🎯
Focusing

Ewetumo Alexander influx6

🎯
Focusing
View GitHub Profile
@influx6
influx6 / exposition.md
Last active June 26, 2016 15:55
Biblical exposition on questions about Jesus

This is written as an exposition on questions I recieved from a acquaintance, who need not be mentioned for personal reasons. For me this less about just correcting the wrong notion he has adopted about the real message of the scripture but in essence, my discussions with him as birth up the need to, atleast to the extent of the ability God's grant to answer his misaligned doctrines. This article is quite long and in truth not for the faint of heart, but I believe that anyone with a desire to know more about God, or in need of reaffirmation of what they truly believe and what the bible says, or anyone interested in a clear facts of the Bible, by the Bible will find this worthwhile.

Paul warned us to watch and help each other, stumping out wrong doctrines that would lead others astray. He spoke not just as an apostle but through inspiration of the spirit. I do hope my acquaintance, comes to the proper understanding of the message of God's gospel and that others can gain from this as well.

Declaimer: I do not

@influx6
influx6 / keybase.md
Last active July 9, 2016 11:34
keybase auth

Keybase proof

I hereby claim:

  • I am influx6 on github.
  • I am ewetumo (https://keybase.io/ewetumo) on keybase.
  • I have a public key whose fingerprint is D52A 4435 CF2D 9B81 0F49 FC76 A4FF 85C5 38BE 642B

To claim this, I am signing this object:

@influx6
influx6 / gu_new.md
Last active February 5, 2017 20:44
Readme of a possible new component creation structure for gu

Situation

We need to create a more simpler form for the way gu works and with 3 distinct goals

  • Easy to create single component without overall current design style(Resources and components)
  • Allow dynamic creation of component system without dependent resource encapsulation(design time constraints)
  • More struct wise and idiomatic go format in code.
  • Implement a more robust routing mechanism.

Current Idea

My current idea is to revise the way we work, encapsulate major necessities into a central App object and allow Views which have their own internal Routers, Resources(shell Resources), Components. Views will be fully initialized and ready to render easily without trouble.

@influx6
influx6 / guard.go
Created February 7, 2017 13:33
Add guard to call javascript function from JS
package main
import (
"fmt"
"github.com/gopherjs/gopherjs/js"
)
var script = `
window.Guard = function(caller){
@influx6
influx6 / GitHub-Forking.md
Created February 19, 2017 08:52 — forked from Chaser324/GitHub-Forking.md
GitHub Standard Fork & Pull Request Workflow

Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.

In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j

@influx6
influx6 / constraints.go
Created August 9, 2017 17:43
Simple Constraint
type _range struct {
min float64
max float64
}
func (r _range) intersectMin(v float64) _range {
r.min = math.Max(r.min, v)
return r
}
/*
Package constraint implements a constraint-based layout system.
func (v *View) Build(ctx *view.Context) view.Model {
// Create a new constraint system.
l := &constraint.Layouter{}
// Solves for the position of v, given the constraints on s. The result is a 400x100 frame.
l.Solve(func(s *constraint.Solver) {
s.Width(400)
@influx6
influx6 / absolute.layout.go
Created August 9, 2017 18:15
Layouts from gomatcha
/*
Package absolute implements a fixed layout system similar to HTML absolute positioning. It does not support animations or flexible sizing. For more complex layouts, see the constraint package.
l := &absolute.Layouter{
Guide: layout.Guide{Frame: layout.Rt(0, 0, 100, 100)}
}
childView := NewChildView(...)
l.Add(childView, layout.Guide{Frame: layout.Rt(10, 10, 90, 90)})
@influx6
influx6 / css-router.css
Created August 10, 2017 09:57
CSS Router by Faraz
/******************************************************************
CSS Router written by Faraz Fazli - Released under the MIT License
https://github.com/farazfazli/css-router
*******************************************************************/
/* Use Open Sans */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
* {
font-family: 'Open Sans', sans-serif;
}
@influx6
influx6 / streams.go
Last active August 11, 2017 20:22
The baseline interface for a FBP style service provider
// Service defines a baselevel interface that exposes itself as the
// frontal system for a flow based communication network.
type Service ínterface {
// Receive will return a channel which will allow you to continue reading from it till it is closed.
Receive(string) (chan Type, error)
// Send will take the giving channel reading the provided data of that channel till the channel is closed
// to signal the end of the transmission.
Send(string, chan Type) error