Aug 13, 2021Member-onlyThe Conundrum of Insouciance AdorationToday I have decided to forgive you A wise man once said “With unity, we can do great things” “Important things” Does this mean Holding the title of President of the United States Does this mean Being first in line for a lifesaving vaccine Does this mean Being gainfully employed…Poem2 min readPoem2 min read
Dec 16, 2020Member-onlyResuscitation of…With proverbial brush in hand Stranded are an array of colors in palette Artistic strokes are not my type As the secret ballot is cast to create a better picture My vision is blinded by my own literature If my last words of any memorable context Were to shun the…Poem1 min readPoem1 min read
Oct 22, 2020Member-onlyBrighter DawnSunlight Through A Very Cold ForestPainting1 min readPainting1 min read
Oct 22, 2020Member-onlyExcerpts from Scaffolds created with Ruby on Rails— -Controller — - class WebLoginsController < ApplicationController before_action :set_web_login, only: [:show, :edit, :update, :destroy] # GET /web_logins # GET /web_logins.json def index @web_logins = WebLogin.order(:name) end # GET /web_logins/1 # GET /web_logins/1.json def show end # GET /web_logins/new def new @web_login = WebLogin.new end # GET /web_logins/1/edit def edit…Source Code3 min readSource Code3 min read
Oct 22, 2020Member-onlyAutomated Spades Program in Java/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package spadesprogram; //import Java libraries import java.awt.BorderLayout; import static java.awt.Frame.MAXIMIZED_BOTH; import java.awt.Graphics; import java.io.File; import java.io.IOException; import java.util.Arrays; import java.util.Random; import javax.imageio.ImageIO; import javax.swing.ImageIcon; import javax.swing.JFrame; import static javax.swing.JFrame.EXIT_ON_CLOSE; import javax.swing.JInternalFrame; import javax.swing.JLabel; import javax.swing.JPanel; import…Source Code14 min readSource Code14 min read
Oct 22, 2020Member-onlyDepreciation Calculator in Visual BasicOption Strict On Public Class frmDepreciation ‘Create Variables Private intLifeSpan As Integer = 5I Public Shared intArray As Integer = 7I Public Shared strInventory(intArray) As String Private strID(intArray) As String Private decInitPrice(intArray) As Decimal Private intQuantity(intArray) As Integer Private Sub frmDepreciation_Load(sender As Object, e As EventArgs) Handles MyBase.Load ‘Initialize I/O…Source Code3 min readSource Code3 min read
Oct 22, 2020Member-onlyRotation and Lighting using PovRay#include “colors.inc” camera { location [-10,10,-10] look_at [0,0,0] angle 100 } light_source { [-20,30,15] color Red} light_source { [20,-30,-15] color Blue} //#declare newSphere = sphere { [-2,-0,-2],2 pigment { color [1,1,1] }…Source Code1 min readSource Code1 min read
Oct 22, 2020Member-onlyHelloWorld example with PHP & PDO// A simple web site in Cloud9 that runs through Apache // Press the ‘Run’ button on the top to start the web server, // then click the URL that is emitted to the Output tab of the console echo ‘Tutorial using PHP and PDO’; //variables to establish connection $server =…Source Code1 min readSource Code1 min read
Oct 22, 2020Member-onlyHelloWorld Example in Gopackage main import “fmt” import “time” func main() { var name string = “Obioku Obotette” fmt.Println(“Name is”, name) fmt.Println(“Address of name is”, &name) fmt.Println(“It is”, time.Now()) add, subtract, multiply, divide…Source Code1 min readSource Code1 min read
Oct 22, 2020Member-onlyMatrix Arithmetic with Python#list for reading numbers nums = [] index = 0 #open file #read line by line #then split to append to list with open(“COSC450_P2_Data.txt”,”r”) as data: for x in data: array = x.split() for i in…Source Code1 min readSource Code1 min read