adjective of a distinct or particular kind or character:a special kind of key. being a particular one; particular, individual, or certain:You’d better call the special number. pertaining or peculiar to a particular person, thing, instance, etc.; distinctive; unique:the special features of a plan. having a specific or particular function, purpose, etc.:a special messenger.
noun a special person or thing.a train used for a particular purpose, occasion, or the like.
Optimize “Transformation” “Special”
Not meant as air quotes but looks like air quotes, that’s a hard one
Optimize Transformation Special words inspired by the Ted X Above and Many Others
Maybe looks a little better still credit but without the air quotes
Changing context and contrast in different directions
Can leave the audience a bit confused
Watching a western, suddenly see spaceships everywhere?
Drama, turns into slapstick comedy for 30 minutes in the middle?
Getting something we weren’t expecting
Buy Diablo 4, get all pastels and no dark gothic architecture
Not a pretty thought
Vlog like a Theatre
Have multiple shows, not sure sequential is always the best route for all people
yet I have to type in a sequential way for the most part
Limit audience to same bounding box?
Kind of sounds like Jail
Also value in sequential processing to a point
I apologize to anyone that feels like my words are sporadic or sparse
Parse Sparse, Sparse words, more special?
I think of Epiphanies as rare, therefore I find them more special
Government rides around on its broken credit card high horse with your babies underneath? Maybe better not to bring babies into the world in 2021
Population already pretty high, getting laid not required for Oxygen
Alcohol and pretty voices, maybe enough for 2021
Kind of the feeling of the guy from Tyrant FX series Mercenary
Burning embassy with shockwave of Lebanon?
Not for my baby
Hot piece of Gold on top of that building
Seeing it? “It’s complicated”
I could go for some Nicotine Gum and Rewatching that series, some awful parts, some really amazing parts
Hope that’s not what the military outside of Taiwan is thinking
Have a lot more training and appreciation for contrast now, might be able to pick up more this time around
It can be a gym, not sure everyone will view it as such
Better to learn on screen “Diego” “Alfied”
Sandy Tropical Looking Streets with Bright Sunny Days and hot buildings with Gold on the top
What’s the issue?
“You must clutch them both nice and tight” “Yes that’s why I left”
“After everything I have given the people, they are still not satisfied”
“I am El President” of this vlog
“And I know you will use great restraint, in exercising your great power” “make sure he understand there will be consequences if he can’t control his own people” “inspiring the hearts of your people” “for when my time has come” “arthus”
Skeletons ” are planning on attacking the wedding” “Arthus”
“My child I watched as pride as you grew into a weapon of righteousness, remember our line has always ruled”
“Victory has defeated you” – Bane
“Effective pauses”
Yes she has
What happened to her super powers?
Fire codes?
Blow torches on open trains non advisable
Is Speed the one where they push the guys head up to top?
Fire exit sign takes out the guy? Can appreciate that
Marvel got my attention, what would you like to show me?
I do appreciate her use of the finer red crystals Rubies and Dion
Those are some hot infinitely complex matrix like worms
Problem with Avengers? Not enough investment in Gambit
Hedge their bet a little better with more safety valves like investing in Duncanville, Texas tech, might have saved a few devastating construction bills
Sure they like to save the day while wrecking up the place, but what about the Architects? What about the Architects
“The prosecution does not have a monopoly on victims” – Ted X Kathleen Heath
“But what about the Architects? What about the Architects” – Ted X Kathleen Heath with a few creative edits by El Presidente of this Vlog
Do right by one kitten, or do right by many kittens?She “lightly encouraged” me to share
Because she needed better PR after
“They made me into a monster” “Leave me alone”
H Kitten is AD? she is just licking her wounds
Not on my vlog
H Kitten is BC
3.0.01 Version of The Open Source Game Engine I am working on
Would be Free if I could upload the file
This game engine is being developed in 2021
Open sourced in hope that others will provide more peace, love, and grace to the world
Updates 12-11-2021 7:15 PM Central Standard Time, while listening to Timothy 1 Bible Alexander Scourby YouTube video on MSI 65 Thin 10UE
---------------
Moved directories into glfwModule, hopefully this might make it easier
for others that might want to connect it to the binary versions of the libraries.
Not an expert on CMake, can see how it could cause some problems
Not very flexible, not always a bad thing having a more proper representation
We'll call this version 3.0.01
Features -
1. compiles on Clion, used the Wave Example, removed other examples
2. updated to be able to use C++ and C++ classes like iostream
3. Honestly speaking should be easier to do this in 2021
4. Specially given I was able to compile in 2004
5. When people take the No.2 pencil such as OpenGL and the ability to paint from Student
Kind of a terrible thing to do to people working with C++
6. Please do not deoptimize others going forward
7. These systems are meant to be a blessing, kind of understandable with the system executing people
why people might want to throw the system under the bus, and that can be used as an excuse for greed
and to prevent others from building their systems
To those that say taking a number 2 is justified by that
To those that say taking my ability to use systems effectively
I say this from the bottom of my heart, people that fuck over math teachers
Fuck off, and don't fuck over the code bases
Thank you in advance
Jason Lee Davis
---------------
I post this here, hopefully will be available to others soon
A rare case update log on one 12.11.2021 will it be appreciated in the future?
A decent book for Fire for the Rocket of Nasa like elements, Timothy 1 on Loop
Drink a little wine, don’t judge others, don’t be a brawler, love your neighbor, don’t worry so much about money
“Grace be with thee, amen”
Please apply that algorithm to DC
console.cpp
//
// Created by jason on 12/11/2021.
//
#include "console.h"
#include "GameEngine.h"
#include <iostream>
using namespace std;
//========================================================================
// main
//========================================================================
int main(int argc, char* argv[])
{
cout << "test" << endl;
GameEngine gameEngine;
gameEngine.paintMain();
}
console.h
//
// Created by jason on 12/11/2021.
//
#ifndef GLFW_CONSOLE_H
#define GLFW_CONSOLE_H
#include <iostream>
class console{
};
#endif //GLFW_CONSOLE_H
GameEngine.h
//
// Created by jason on 12/11/2021.
//
#ifndef GLFW_GAMEENGINE_H
#define GLFW_GAMEENGINE_H
#if defined(_MSC_VER)
// Make MS math.h define M_PI
#define _USE_MATH_DEFINES
#endif
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "../glfwModule/deps/glad/gl.h"
#define GLFW_INCLUDE_NONE
#include "../glfwModule/GLFW/glfw3.h"
#include "../glfwModule/deps/linmath.h"
// Maximum delta T to allow for differential calculations
#define MAX_DELTA_T 0.01
// Animation speed (10.0 looks good)
#define ANIMATION_SPEED 10.0
#define GRIDW 50
#define GRIDH 50
#define VERTEXNUM (GRIDW*GRIDH)
#define QUADW (GRIDW - 1)
#define QUADH (GRIDH - 1)
#define QUADNUM (QUADW*QUADH)
struct Vertex
{
GLfloat x, y, z;
GLfloat r, g, b;
};
class GameEngine {
public:
//========================================================================
// Initialize grid geometry
//========================================================================
void init_vertices(void);
//========================================================================
// Draw scene
//========================================================================
static void draw_scene(GLFWwindow* window);
//========================================================================
// Initialize Miscellaneous OpenGL state
//========================================================================
static void init_opengl(void);
//========================================================================
// Modify the height of each vertex according to the pressure
//========================================================================
void adjust_grid(void);
void calc_grid(void);
//========================================================================
// Print errors
//========================================================================
static void error_callback(int error, const char* description)
{
fprintf(stderr, "Error: %s\n", description);
}
//========================================================================
// Callback function for mouse button events
//========================================================================
static void mouse_button_callback(GLFWwindow* window, int button, int action, int mods);
//========================================================================
// Callback function for framebuffer resize events
//========================================================================
static void framebuffer_size_callback(GLFWwindow* window, int width, int height);
void mainCallback();
void mainLoop();
void paintMain();
private:
GLFWwindow* window;
double t, dt_total, t_old;
int width, height;
};
#endif //GLFW_GAMEENGINE_H
GameEngine.cpp
//
// Created by jason on 12/11/2021.
//
#include "GameEngine.h"
GLfloat alpha = 210.f;
GLfloat beta = -70.f;
GLfloat zoom = 2.f;
double cursorX;
double cursorY;
double dt;
double p[GRIDW][GRIDH];
double vx[GRIDW][GRIDH], vy[GRIDW][GRIDH];
double ax[GRIDW][GRIDH], ay[GRIDW][GRIDH];
GLuint quad[4 * QUADNUM];
struct Vertex vertex[VERTEXNUM];
//========================================================================
// Calculate wave propagation
//========================================================================
void GameEngine::calc_grid(void)
{
int x, y, x2, y2;
double time_step = dt * ANIMATION_SPEED;
// Compute accelerations
for (x = 0; x < GRIDW; x++)
{
x2 = (x + 1) % GRIDW;
for(y = 0; y < GRIDH; y++)
ax[x][y] = p[x][y] - p[x2][y];
}
for (y = 0; y < GRIDH; y++)
{
y2 = (y + 1) % GRIDH;
for(x = 0; x < GRIDW; x++)
ay[x][y] = p[x][y] - p[x][y2];
}
// Compute speeds
for (x = 0; x < GRIDW; x++)
{
for (y = 0; y < GRIDH; y++)
{
vx[x][y] = vx[x][y] + ax[x][y] * time_step;
vy[x][y] = vy[x][y] + ay[x][y] * time_step;
}
}
// Compute pressure
for (x = 1; x < GRIDW; x++)
{
x2 = x - 1;
for (y = 1; y < GRIDH; y++)
{
y2 = y - 1;
p[x][y] = p[x][y] + (vx[x2][y] - vx[x][y] + vy[x][y2] - vy[x][y]) * time_step;
}
}
}
void GameEngine::adjust_grid(void)
{
int pos;
int x, y;
for (y = 0; y < GRIDH; y++)
{
for (x = 0; x < GRIDW; x++)
{
pos = y * GRIDW + x;
vertex[pos].z = (float) (p[x][y] * (1.0 / 50.0));
}
}
}
void GameEngine::init_opengl(void)
{
// Use Gouraud (smooth) shading
glShadeModel(GL_SMOOTH);
// Switch on the z-buffer
glEnable(GL_DEPTH_TEST);
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_COLOR_ARRAY);
glVertexPointer(3, GL_FLOAT, sizeof(struct Vertex), vertex);
glColorPointer(3, GL_FLOAT, sizeof(struct Vertex), &vertex[0].r); // Pointer to the first color
glPointSize(2.0);
// Background color is black
glClearColor(0, 0, 0, 0);
}
void GameEngine::draw_scene(GLFWwindow* window)
{
// Clear the color and depth buffers
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// We don't want to modify the projection matrix
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
// Move back
glTranslatef(0.0, 0.0, -zoom);
// Rotate the view
glRotatef(beta, 1.0, 0.0, 0.0);
glRotatef(alpha, 0.0, 0.0, 1.0);
glDrawElements(GL_QUADS, 4 * QUADNUM, GL_UNSIGNED_INT, quad);
glfwSwapBuffers(window);
}
void init_grid(void)
{
int x, y;
double dx, dy, d;
for (y = 0; y < GRIDH; y++)
{
for (x = 0; x < GRIDW; x++)
{
dx = (double) (x - GRIDW / 2);
dy = (double) (y - GRIDH / 2);
d = sqrt(dx * dx + dy * dy);
if (d < 0.1 * (double) (GRIDW / 2))
{
d = d * 10.0;
p[x][y] = -cos(d * (M_PI / (double)(GRIDW * 4))) * 100.0;
}
else
p[x][y] = 0.0;
vx[x][y] = 0.0;
vy[x][y] = 0.0;
}
}
}
void GameEngine::init_vertices(void)
{
int x, y, p;
// Place the vertices in a grid
for (y = 0; y < GRIDH; y++)
{
for (x = 0; x < GRIDW; x++)
{
p = y * GRIDW + x;
vertex[p].x = (GLfloat) (x - GRIDW / 2) / (GLfloat) (GRIDW / 2);
vertex[p].y = (GLfloat) (y - GRIDH / 2) / (GLfloat) (GRIDH / 2);
vertex[p].z = 0;
if ((x % 4 < 2) ^ (y % 4 < 2))
vertex[p].r = 0.0;
else
vertex[p].r = 1.0;
vertex[p].g = (GLfloat) y / (GLfloat) GRIDH;
vertex[p].b = 1.f - ((GLfloat) x / (GLfloat) GRIDW + (GLfloat) y / (GLfloat) GRIDH) / 2.f;
}
}
for (y = 0; y < QUADH; y++)
{
for (x = 0; x < QUADW; x++)
{
p = 4 * (y * QUADW + x);
quad[p + 0] = y * GRIDW + x; // Some point
quad[p + 1] = y * GRIDW + x + 1; // Neighbor at the right side
quad[p + 2] = (y + 1) * GRIDW + x + 1; // Upper right neighbor
quad[p + 3] = (y + 1) * GRIDW + x; // Upper neighbor
}
}
}
void GameEngine::framebuffer_size_callback(GLFWwindow* window, int width, int height)
{
float ratio = 1.f;
mat4x4 projection;
if (height > 0)
ratio = (float) width / (float) height;
// Setup viewport
glViewport(0, 0, width, height);
// Change to the projection matrix and set our viewing volume
glMatrixMode(GL_PROJECTION);
mat4x4_perspective(projection,
60.f * (float) M_PI / 180.f,
ratio,
1.f, 1024.f);
glLoadMatrixf((const GLfloat*) projection);
}
void GameEngine::mouse_button_callback(GLFWwindow* window, int button, int action, int mods)
{
if (button != GLFW_MOUSE_BUTTON_LEFT)
return;
if (action == GLFW_PRESS)
{
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);
glfwGetCursorPos(window, &cursorX, &cursorY);
}
else
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
}
void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
{
if (action != GLFW_PRESS)
return;
switch (key)
{
case GLFW_KEY_ESCAPE:
glfwSetWindowShouldClose(window, GLFW_TRUE);
break;
case GLFW_KEY_SPACE:
init_grid();
break;
case GLFW_KEY_LEFT:
alpha += 5;
break;
case GLFW_KEY_RIGHT:
alpha -= 5;
break;
case GLFW_KEY_UP:
beta -= 5;
break;
case GLFW_KEY_DOWN:
beta += 5;
break;
case GLFW_KEY_PAGE_UP:
zoom -= 0.25f;
if (zoom < 0.f)
zoom = 0.f;
break;
case GLFW_KEY_PAGE_DOWN:
zoom += 0.25f;
break;
default:
break;
}
}
void cursor_position_callback(GLFWwindow* window, double x, double y)
{
if (glfwGetInputMode(window, GLFW_CURSOR) == GLFW_CURSOR_DISABLED)
{
alpha += (GLfloat) (x - cursorX) / 10.f;
beta += (GLfloat) (y - cursorY) / 10.f;
cursorX = x;
cursorY = y;
}
}
//========================================================================
// Callback function for scroll events
//========================================================================
void scroll_callback(GLFWwindow* window, double x, double y)
{
zoom += (float) y / 4.f;
if (zoom < 0)
zoom = 0;
}
void GameEngine::mainLoop() {
while (!glfwWindowShouldClose(window))
{
this->mainCallback();
t = glfwGetTime();
dt_total = t - t_old;
t_old = t;
// Safety - iterate if dt_total is too large
while (dt_total > 0.f)
{
// Select iteration time step
dt = dt_total > MAX_DELTA_T ? MAX_DELTA_T : dt_total;
dt_total -= dt;
// Calculate wave propagation
calc_grid();
}
// Compute height of each vertex
adjust_grid();
// Draw wave grid to OpenGL display
draw_scene(window);
glfwPollEvents();
}
}
void GameEngine::paintMain() {
glfwSetErrorCallback(error_callback);
if (!glfwInit())
exit(EXIT_FAILURE);
window = glfwCreateWindow(640, 480, "Game Engine", NULL, NULL);
if (!window)
{
glfwTerminate();
exit(EXIT_FAILURE);
}
glfwSetKeyCallback(window, key_callback);
glfwSetFramebufferSizeCallback(window, framebuffer_size_callback);
glfwSetMouseButtonCallback(window, mouse_button_callback);
glfwSetCursorPosCallback(window, cursor_position_callback);
glfwSetScrollCallback(window, scroll_callback);
glfwMakeContextCurrent(window);
gladLoadGL(glfwGetProcAddress);
glfwSwapInterval(1);
glfwGetFramebufferSize(window, &width, &height);
framebuffer_size_callback(window, width, height);
// Initialize OpenGL
init_opengl();
// Initialize simulation
init_vertices();
init_grid();
adjust_grid();
// Initialize timer
t_old = glfwGetTime() - 0.01;
this->mainLoop();
glfwTerminate();
exit(EXIT_SUCCESS);
}
#include <iostream>
using namespace std;
int frameCount = 0;
void GameEngine::mainCallback() {
frameCount+=1;
// cout << "Frame " << frameCount;
if (frameCount%10 == 0) {
// cout << endl;
}
}
CMakeLists.txt for console directory
cmake_minimum_required(VERSION 3.20)
project(systemOptimization)
set(CMAKE_CXX_STANDARD 14)
link_libraries(glfw)
include_directories("${GLFW_SOURCE_DIR}/glfwModules/deps")
if (MATH_LIBRARY)
link_libraries("${MATH_LIBRARY}")
endif()
# Workaround for the MS CRT deprecating parts of the standard library
if (MSVC OR CMAKE_C_SIMULATE_ID STREQUAL "MSVC")
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif()
if (WIN32)
set(ICON glfw.rc)
elseif (APPLE)
set(ICON glfw.icns)
endif()
set(GLAD_GL "${GLFW_SOURCE_DIR}/glfwModule/deps/glad/gl.h"
"${GLFW_SOURCE_DIR}/glfwModule/deps/glad_gl.c" ../console/console.cpp ../console/console.h GameEngine.cpp GameEngine.h)
set(GETOPT "${GLFW_SOURCE_DIR}/glfwModule/deps/getopt.h"
"${GLFW_SOURCE_DIR}/glfwModule/deps/getopt.c")
set(TINYCTHREAD "${GLFW_SOURCE_DIR}/glfwModule/deps/tinycthread.h"
"${GLFW_SOURCE_DIR}/glfwModule/deps/tinycthread.c")
add_executable(console WIN32 MACOSX_BUNDLE console.cpp console.h ${ICON} ${GLAD_GL})
set(GUI_ONLY_BINARIES console)
set_target_properties(${GUI_ONLY_BINARIES} ${CONSOLE_BINARIES} PROPERTIES
FOLDER "Console")
if (GLFW_USE_OSMESA)
target_compile_definitions(offscreen PRIVATE USE_NATIVE_OSMESA)
endif()
if (MSVC)
# Tell MSVC to use main instead of WinMain
set_target_properties(${GUI_ONLY_BINARIES} PROPERTIES
LINK_FLAGS "/ENTRY:mainCRTStartup")
elseif (CMAKE_C_SIMULATE_ID STREQUAL "MSVC")
# Tell Clang using MS CRT to use main instead of WinMain
set_target_properties(${GUI_ONLY_BINARIES} PROPERTIES
LINK_FLAGS "-Wl,/entry:mainCRTStartup")
endif()
if (APPLE)
set_target_properties(gameEngine PROPERTIES MACOSX_BUNDLE_BUNDLE_NAME "GameEngine")
set_source_files_properties(glfw.icns PROPERTIES
MACOSX_PACKAGE_LOCATION "Resources")
set_target_properties(${GUI_ONLY_BINARIES} PROPERTIES
MACOSX_BUNDLE_SHORT_VERSION_STRING ${GLFW_VERSION}
MACOSX_BUNDLE_LONG_VERSION_STRING ${GLFW_VERSION}
MACOSX_BUNDLE_ICON_FILE glfw.icns
MACOSX_BUNDLE_INFO_PLIST "${GLFW_SOURCE_DIR}/CMake/MacOSXBundleInfo.plist.in")
endif()
Hopefully this helps some people out there, providing the files might have been simpler, if DC hadn’t allowed my support to be turned off, you would have access to the codebase sooner
My name is Jason, other’s named Tim
Having a name and contrast algorithms around those names can likely factor into how someone is treated
Be your name Jason or Tim, neither of us should be riding in on the white horse, nor be forced to do so
Having a book that talks about no money associated with your contrast algorithm? Kind of messed up
Having a butcher knife wielding hockey murderer associated with your contrast algorithm? Kind of messed up
Decent start for Weather Chess
Turbulent flow, and a Canvas for a board
“Fight the good fight of Faith” – Timothy 1
“Without spot, unrebukable”
“Because ” “deeply deeply human ” “is the only hope for this world” – D3 + Ted X KH + D3
noun (often initial capital letter) the planet third in order from the sun, having an equatorial diameter of 7,926 miles (12,755 km) and a polar diameter of 7,900 miles (12,714 km), a mean distance from the sun of 92.9 million miles (149.6 million km), and a period of revolution of 365.26 days, and having one satellite. the inhabitants of this planet, especially the human inhabitants:The whole earth rejoiced. this planet as the habitation of humans, often in contrast to heaven and hell:to create a hell on earth. the surface of this planet:to fall to earth. the solid matter of this planet; dry land; ground.
verb (used with object) Chiefly British Electronics. to ground.
noun Also called Jove. the supreme deity of the ancient Romans: the god of the heavens and of weather.Compare Zeus. Astronomy. the planet fifth in order from the sun, having an equatorial diameter of 88,729 miles (142,796 km), a mean distance from the sun of 483.6 million miles (778.3 million km), a period of revolution of 11.86 years, and at least 14 moons. It is the largest planet in the solar system. Military. a medium-range U.S. ballistic missile of the 1950s, powered by a single liquid-fueled rocket engine.
Having some trouble formatting the table, some extra work for WordPress
I don’t like my kitten that close to the flaming loop
Free Image
Sweaters and Incendiary Feathers?
Free Image
3/4 Time Signatures
It was a simpler time
No new Waltz for the Ballroom affair? Not sure that would be fair to the future
Men more prone to Tort or Women more prone to Tort?
Women more prone to Duress or Men more prone to Duress?
one two three one two three
Making some hot tea (originally planned for ice tea), going to listen to some wisdom from the queen of England, why? because I can
I am still “El Presidente” at least of this vlog
2 minutes of Wisdom from someone who has probably seen some of the most proper of affairs in the world
Could change your life
Not much of a cost requirement
Goes nice with some Hot Tea
“I have seen one coronation….” – Queen Elizabeth having trouble hearing the rest
“Not what I meant to do” – Queen Elizabeth
Father please bless and protect give joy love grace and inspiration to all the people in Britain, to the royal family, and all the people they represent In Christ’s name I ask this ^ DS ^ DS ^DS ^ DS
“We all need to get the balance right between action and reflection. With so many distractions, it is easy to forget to pause and take stock” – Queen Elizabeth
“Effective Pauses” kind of reminds me of the Ted X hostage negotiation
Balance, Bible talks a bit about that
Many illusions and illusive qualities on top of Shiny Blue Marble
Nice to have both a pause and a play button, things that we tend to take for granted on the outside
Also particularly imperative in regards to OpenGL, think there is a No. 2 Pencil in the students bin when actually there is a snake, kind of sad
Being on the outside has value
One quote of many, wise words in there
Likewise “Good memories are our second chance at happiness” – Queen Elizabeth
“Good memories are our second chance at happiness” – Queen Elizabeth Reiterated because I think that these words are important
When we look upon the past
We have a choice
Churn on the bad, compressing it into a diamond that never hits the light right
Or compressing it into a diamond that shines brightly
Either way, we are compressing, a large part of Shiny Blue Marbles turbulent flow to a single instance in time likely taken out of context
Life like a piece of coal?
At the end of time a beautiful diamond
After the painter is through with the paint brush?
I tend to think there a few diamonds on this planet, sometimes you have to look a bit hard to see them
Perfected before heaven, I think not
Room for improvement
Like Rubies or Sapphires better? Pretty hot crystals too
Know how to ask the right questions in the right way?
An emerald to me, not sure it is an emerald to everyone else
Free ImageFree Image
Will set that emerald to #9
Proximity, good delivery good delivery
A couple updates since the Mayflower kind of would like to keep them in a way that is a blessing for Shiny Blue Marble as opposed to the opposite
The actual image of a supercomputer not the actual output of a supercomputer, a complex understanding
적을 올바르게 어떻게 사랑하나요? 내 지원을 최적화하기 위해 적극적으로 노력하고 있는 다른 사람을 최적화하려면 어떻게 해야 합니까? 한 번에 여러 사람을 최적화하려면 어떻게 해야 합니까? 가족과 지역 사회? 적당한 양에 적당한 수준? 항상 동일합니까? 동료 시골 남자가 감옥에 갇혀 있다면, 어려운 질문을하지 않는 것이 좋습니다?
How do I correctly love my Enemy? How do I optimize others that are actively trying to deoptimize my support? How do I optimize loving multiple people at once? Family and Community? Right levels in right amounts? Same at all times? If your fellow country man was stuck in Jail, better not to ask the tough questions?
자기 반사의 가치를 보는 것이 언제 적절합니까?
When is it appropriate to look at the value in self reflection?
무료 이미지 Free Image
Would DC want me to have the ability to buy presents for my family or would they prefer to spoil presents?
Would DC prefer people to wait around without trials or would they prefer to actually do their jobs instead of smoking pot in the Oval Office
Common place these days? Might not be pot smoke, might just be slowed reaction times, things that sometimes happen with age
Could happen to the best of us, and I am bias to having a non zeroed support line
I don’t think President Biden and Kamala are dumb
Questionable moral and morale support?
DC가 진실을 말하고 지원 라인에 의해 옳은 일을 시작하면 아버지는 미래의 2022 년 10 배 더 축복하십시오.
Father please bless are future 2022 ten times more if DC starts telling the truth and doing right by their support lines
“그것은 기회뿐만 아니라 문제를 설명”- 테드 X
“It describes the problem as well as the opportunity” – Ted X
“Team performance”
Over state lines
“Once a month they send us a ” bulldozer
“Which I should not have done but I am dealing with it” – Phil and Lem
Best Practices and Best Principles Impeachment for Grossly Negligent Support Line Stealing Puppy Cats
“The prosecution rests”
“The prosecution does not have a monopoly on victims”
R.I.P Victim Monopolizing Grossly Negligent Support Line Robbing Oppressive Duress Power infused with the tools and tech of NASA and similar organizations dedicated to insuring “equal access to Justice”
Air Quotes important hear, the full effective and power of Air Quotes for the support line of your baby in a system with Shivs for Christmas time cheer
Matthew 7777, like working for “Kappa Kappa Wong” – Futurama
Acts of God * Obstruction of Justice > Support for God’s Baby?
Shiny Blue Marble as a bit of a lemon
“No dog food for victor tonight” – Futurama
Quicksand “like a scientist trap”
Do snakes get that close to the sand?
뜨거운 효과적인 일시 중지 에 중간, 매우 뜨거운
That effective pause in the middle, very hot
I was able to get OpenGL working using the GLFW project along with cout and standard C++ libraries, I would gladly provide to public in my Google Drive was working properly
Therefore I think it wise to write a small tutorial
If it were my Puppy Dragon, I would like to be able to use OpenGL out of the box
Maybe JetBrains can use my free tutorial and update combined with the user data it got from me to update
Hopefully I enabled that property, Cyber Security problems listener beware
Maybe a small OBS show, Video is worth 1000 words?
Refactor issues kind of annoying for CMAKE
Magnify Studio, “Duh!”
The man likes his nicotine
“Time’s amastin”
This rain would be better with Nicorette
Why your content wasn’t posted here? Accessibility and Cancer Research? Because people are robbing my support lines
So remember
Don’t steal from Jason Lee Davis and crew
Because “Time’s awaistin”
Impeach, because I can’t buy presents, and “Time’s awaistin”
Impeach, because babies stuck in Jail and power obstructing justice while enjoying nice AC in the hot seat, and “Time’s awaistin”
I’ve got Safety Valves, and You’ve got Safety Valves, lets get together and use those valves time’s awaisting!
Unforgiveness and silence? the better choice?
Not calling out the shit in the system? “got no time for that, leave me alone!”
Because the system is “bad as can be” in December 2021
Can we get a Trump and Biden with the Power of Morbo?
With cutsie cryin reporters on the sideline? (No disrepect to the mediator, that situation was disrespectful to the mediatior and the country, don’t make it that hard on the support lines)
Sit there on their high thrones while their support goes without the ability to provide for themselves because some jackasses with biases towards their own pocket books are getting paid
2022+ lets make that less of an issue
President that might as well be taking a shit on the American flag
“Our country doesn’t have the money to help that!”
“Our country can’t afford not to help that!”
DC and Shiny Blue Marble have mastered that
Does it come in any other flavors?
Optimized support lines happy puppy cats all around?
But we would rather amp pride and prejudice?
Think I am going to take pride in amplifying Fire and Design codes rather that Pride and Prejudice for the next video
noun the act of pondering or musing on something:Understanding little of what was happening, I was semi-consciously storing away experiences, impressions, and ideas for later rumination. something written or spoken that expresses such pondering or musing:Her blogs contain notes of spirituality, ruminations on the meaning of experience, and glimpses of her multifaceted life. the act or process of chewing the cud, as cows, deer, and some other animals do:Rumination helps cows efficiently turn grass, corn, and other feed into nutrient-dense milk.
Maybe rumination not the best word
Pining seems like a better word, like the Tool song, “Wear the Grudge like a crown”
Ruminating and Pining in Despair and Desperation in 2022 and 2023 won’t do Former Administration officials any good
Wise to invest early
adjective suffering with or expressing longing or yearning for someone or something:Exposing her vulnerability and loneliness, the poet addresses her country as would a pining woman in a letter to her beloved in a distant land.
Her pining vocals on these tracks throb with the loneliness and emptiness of fresh separation.
failing gradually in health or vitality, especially from grief, regret, or longing:The day after the altercation he took sick, and continued in a pining and languishing condition till his death, which soon ensued.nounthe act or state of yearning or longing, or of gradually failing in health or vitality:It’s a story of the pining we all feel for the pleasures of our childhood and the relationships that once held us in safety.
“And it must be hidden, even from the Angels”
Current administration kind of like the Soul Stone from Diablo 3, not advisable in the wrong hands
Nephalem are taking their sweet ass time fixing SSI
“No one can stop death” “Believe in the Dark”
“Sit stay a while” – Deckard Cain “Paranoia Don’t you look behind” – Kang Daniel Free Image for people helping turn up my support network
Paint the brief case and the truth in the picture? I will let you be the justice for that
Hypothetically speaking, if it were my trial I would want the briefcase to shine me in the best light
Free Image
Neutron stars, not as powerful as a blackhole, gravity an epic power followed by a furnace also bad
9 out of 10 ships agree not wise to get caught too close in this puppy cats orbit
Neutron Star orbit trajectories like a train
would prefer not to let people get stuck in the rip currents
if I have two enemies to love and can only save one, not a simple matter
Sequential algorithms where choice matters
United Nations -> Amnesty
Amnesty -> United Nations
Both valuable, both add value at times, both are “deeply deeply human” being that I have tried to help them and they have left me at $0
Maybe they considering support their support unnecessary part of the equation in 2021, didn’t get to be powerful by helping out the small guy, battle cry of The United Nations and Amnesty?
Being blocked by poor policies in The United States
Sounds like obstruction of justice to me
Leaving a guy in Jail for a time, definitely some gasoline for priorities
Transporting prisoners around and jacking up anger around them while half raping them with haptics, money could have been diverted to a better cause
Produce 5 extra Jails, extra storage capacity for future victims?
“The prosecution doesn’t have a monopoly on victims” The government doesn’t have a monopoly on under producing and “optimized” algorithms
Lethal Injection to a guy with failed support lines, we call this “adding value not required by the customer”
“Storing excess” cadavers written in laws years in advance, not sure the update was ready
Over inspection of naked men and women, kind of sounds like Shidler’s List to me
Interrupts and Lag times, turned up by a $0 support system, filtered into another underfunded system of negative learning and increased shivs
Unnecessary ergonomics? If you were in there, you might understand why that guy is bending down to speak
Plexiglass on the rest of the wall, got to talk out of the food hole
Guessing some Architects wet dream, possibly a way of writing “Sweatshop” in the Nike’s so to speak for an oppressive system supporting solitary confinement
“Underutilized, talent, skills, or knowledge” Got this poster off Amazon, not a luxury currently provided in Lew Sterrett Jail
Being prevented from learning, and we claim it is rehabilitation? Definitely inspired me to learn more after the fact, what about people that have been in Jail for 10 years?
Problem with Geneva Convention?
How do they deal with the fact that people slowly burning and suffocating to death in burning buildings constitute torcher?
Dominos and Jenga in the support lines combined with deoptimization algorithms, we claim the DMV and long wait times are different, not sure that is how a loving God would view the setup
Living on the border line underfunded and overstressed constantly
Must be some strong minded lawyers
Look at Proximity, encourage those in close proximity to fix the problem
Ice Burgers at The Border Too?
Father don’t allow people that are working against my support network to read my blog, In Christ’s name I ask this
Amazing show, might want to jump over this video for those in a hurry
No Kitten, No Rusty Spotted Cat
Yes Kitten
If the algorithms were to judge us all
Dependent upon how we have treated the accessible?
Dependent upon the people in Jail?
“A lot more in a smaller space” really kind of dancing around the truth there
maybe better to let people out in the first place
“tops of the lid”
“tops of the lid”
“top of the bottle” “Universal Design”
Basically setting defense attorneys support to $0 kind of like making the defense attorney blind
Lady Justice? Blind all the lawyers? hard to read like that? Brail for all the lawyers? I think better to let people see, legalism not always good, and agreements shouldn’t blind people “and I can easily pick off a shelf which is which” – what image of God would say
How about we not $0 the support and blind everyone on the defense side
Because people like Joker and the two boats do exist
Hand you two shit pieces
And make you choose
Afghanistan or No Afghanistan
Chaiwan or No Chaiwan
Word has a bit of a problem with not following through
noun transgression of divine law:the sin of Adam.any act regarded as such a transgression, especially a willful or deliberate violation of some religious or moral principle.
verb (used without object),sinned,sin·ning. to commit a sinful act.to offend against a principle, standard, etc.verb (used with object),sinned,sin·ning.to commit or perform sinfully:He sinned his crimes without compunction.to bring, drive, etc., by sinning:He sinned his soul to perdition.
God not a fine reviewer of Judgement Sauce?
Levels right and wrong
Hairs on Head, to Angel of Death to a city?
A bit of a swing
Levels of transgression overtime
Realization that some transgressions are greater for some people than others
Realization that some people get thrown in the “Diego” position in the wrong conditions and wrong circumstances
Lets hand you “risk management” on top of a a grenade
noun exposure to the chance of injury or loss; a hazard or dangerous chance:It’s not worth the risk.Insurance.
the hazard or chance of loss.
the degree of probability of such loss.
the amount that the insurance company may lose.
a person or thing with reference to the hazard involved in insuring him, her, or it.
the type of loss, as life, fire, marine disaster, or earthquake, against which an insurance policy is drawn.
verb (used with object)to expose to the chance of injury or loss; hazard:to risk one’s life.to venture upon; take or run the chance of:to risk a fall in climbing; to risk a war.
noun the act or manner of managing; handling, direction, or control.skill in managing; executive ability:great management and tact. the person or persons controlling and directing the affairs of a business, institution, etc.:The store is under new management.executives collectively, considered as a class (distinguished from labor).
Mothers Against Drunk Driving against someone that was loaded up with syphilis that needed to Drink to kill bacteria in the blood, all placed on the same road
Then God watches who will give mercy and love
Grace and Faith
and who won’t
God deals a similar situation in different sauces to different people
SSI set to $0, is garbage
SSI set to $0, can get people killed, also leaving somethings undone can get people killed
Wiser to think doing right and staying in the world we can save 1000
And if we want to judge, at least by inaction we are all responsible for at least 1
Future of 1000 and if we want to drag up the past, link up all the inactions and look at the combined failures of each of us as 1 body, a reminder that if we judge our hands aren’t clean
The words “don’t judge” matter
“Love accounts for many sins” matter
Take into account the word sin (and that it does exists) and that Love and Reduce Judgement leads to more grace and more creative solutions
If we failed to step up in an oppressive system, if we knew that something wasn’t right in the system, and allowed it to continue then we too are somewhat responsible
Risk management on top of a grenade, can mean a lot of things
Grenade as a guy in war, risk management when being shot at, expect perfect interactions in flaming tornado turbulent flow? unwise
Grenade as a company over years, risk management while under turbulent flow while constantly trying to improve a product and make it better for the world, judge people on one moment in time? “But the grenade landed on me”
I would constitute a month plus of general neglect to my support line as enough time to constitute a gross mismanagement of at least risk in the current administration
Add it the neglect and duress added by the time I spent in Lew Sterret
“Visually the picture is very clear”
“The prosecution does not have a monopoly on victims”
“and I don’t care if you think they should be respected, they think they should be respected”
“Know the power in unconditional respect”
“Know the power in ” humility ” and unconditional respect”
I think both of those statements are useful and valid, and I am not always sure which one of those sentences to use in every circumstance
A woman that has been downtrodden that needs a helping hand up “Know the power in unconditional respect”
An administration that won’t step up while support lines are hurting, might need to be humbled a bit, better a little know than a pile of corpses a year later, entire administration like Skilling or Theranos CEO trying to cleaning up a Karmic mess?
“When the dust settles what is left is a blackhole”
“Literally a puncture in space time”
Risk management as two essential parts
So many applications to diatomic molecules
Not always the best for tritonimc or quadtomic molecules
Free Image, Time and Weakest link, Shiny Blue Marble as a bomb to diffuse, with giant chains and fiber optics in the inner channels
Let go of the pin at the wrong time, kind of like an event horizon
If I were in charge of The United Nations
I would want to know Shiny Blue Marble, kind of like a grenade you got to clutch at times
Basically since Christ
Sometimes Shiny Blue Marble, beautiful days and inspiring stores
Other times world war and oppression, like Dante’s Inferno
Doctor Cured Cancer on one side WW1 | Machine Guns Foreshadowing on the other
Machine Guns Foreshadowing in Vietnam War on one Side | New Invention cures Alzheimer on the other
Risk on one side | Management on the other
Management on one side | Risk on the other
This is 2 dimensions
God thinks in many many more dimesions
Like reading this blog and thinking the impact only has implications in cartesian coordinates because it is displayed on a flat plane
A reader reads, a listener listens, then operates for years in 3D based upon the insirations
Lord on balancing these posts “I pray it will be enough” – Diablo 3 Reaper of Souls Cinematic
“History favors the bold”, “no risk no reward”, no risk management no reward magnified with the port of tort and duress
Like a Tort Duress grenade
“or we all go”
“boom”
Optimizing Product lines while reducing unnecessary risk
and promoting risk that it is wise to take
like investing a bit more in customer service, love, grace, joy, and mercy
How do fault tolerant systems roll into all that?
Is a system without a safety valve a safe system?
A table has no safety valve
Safety valves are important and applicable in some systems
Sharp edges and no sanding, kind of like a fault tolerant table
Sanding does not strictly equal a Safety Valve
Certain parallels could be drawn
In a system full of lawyers and Pharisees who like to mislabel
might be wise to look at the terms safety and valve
noun,plural safe·ties.the state of being safe; freedom from the occurrence or risk of injury, danger, or loss.the quality of averting or not causing injury, danger, or loss.a contrivance or device to prevent injury or avert danger.Also called lock, safety catch, safety lock. a locking or cutoff device that prevents a gun from being fired accidentally.the action of keeping safe.Football.
an act or play in which a player on the offensive team is tackled in his own end zone or downs the ball there, or in which the ball goes out of bounds on a fumble, having last been in bounds in or over the end zone and having last been in the possession of an offensive player.Compare touchback.
an award of two points to the opposing team on this play.
Also called safety man. a player on defense who lines up farthest behind the line of scrimmage.
“and manage your risk”
We call the space between plates the potential in capacitors, is there a point at which the capacitor stops functioning? what do we call that distance? like the event horizon for power working
Luckily since this is a hypothetical Bane is not actually here, therefor I provide a definition so when Bane or Bane equivalents rise up into power, you will understand the power in a valve, the definition of the word valve, for what it can do and what it can’t do
noun any device for halting or controlling the flow of a liquid, gas, or other material through a passage, pipe, inlet, outlet, etc.a hinged lid or other movable part that closes or modifies the passage in such a device.
Anatomy. a membranous fold or other structure that controls the flow of a fluid, as one that permits blood to flow in one direction only.(in musical wind instruments of the trumpet class) a device for changing the length of the air column to alter the pitch of a tone.
Zoology.
one of the two or more separable pieces composing certain shells.
either half of the silicified shell of a diatom.
verb (used with object),valved,valv·ing.to provide with a means of controlling the flow of liquid, gas, etc., by inserting a valve.
Impeachment and Obstruction of Justice Charges kind of like a safety valve, one that can help make my support lines better
Be careful using Sodastream, United States like a Sodastream CO2 bottle pour
“Diego” “clutch it nice and tight”
Would people appreciate a 3 minute safety inspirational video?
“Know when to deliver your message”
All of our struggles are different, doesn’t mean they aren’t worth having
Volcano around 1:00:17 what is the value in a bit of a time code in finding a problem? The power of a safety valve
Watch the video without knowing where to place the safety valve
And watch the video with knowing where to place the safety valve
Basically God knows better where to place the safety valve, Men and Women sometimes like to make the decision that breaking the glass and letting the spirit float up is wise, seems unwise to me
The cosmic painter knows a bit better of where and when death will take it’s toll
Would rather leave the cosmic editor with the transition
“And justifiably so”
Don’t let it be lip service to an already jaded system
Popularity matters
Kitten as a safety valve
Do I want to let her go, Do I want to let her go? Rise steam!
Unforgiveness as a safety valve
Do I want to let her go, Do I want to let her go? “It’s not for the taking”
Rise Steam!
Kind of hits close to home for me
If it were my slice of American Pie
President Biden and Kamala out
People that choose to remove the basic supports
out
“Same old story” “Deja Vu”
3K, 311, Just a label? Turning up the contrast algorithms continuously on your opponents?
Kind of sickens me
“I know you get Deja VU” – Olivia Rodrigo
We just beat people with these algorithms until they are black and blue
Never take responsibility for our words
Never take responsibility for the things we left undone
The Luke we never watch or listened to
The James we just kind of left on the shelf
Sometimes in a beautiful shell, makes all the difference in the world
Marked John
Marked AR
Marked 8 ball
Marked “good”
Marked Klan
Marked Panther
Mark
Mark
Mark
Mark
Until they are six feet under
“But I still fucking love you babe” – DC
Revelation, maybe it is for?
What exactly is the purpose
Inspiration and warning, possibly V3, Version 3
I know the systems can change hair colors
Can’t depend on that hair color on its own
Maybe it conveys the complexity in devil labeling
“But your still a traitor”
Shiny Blue Marble, maybe a planet on the other side of The Universe has figured this out already
Figuratively and Non Figuratively
Hope for a system that might have it figured out a little better than us
The one that has already figured out their system needs a tracheotomy for the steam
Mix in Epic Story telling, and Turbulent flow from The Highest? “and who shall be able to stand”
A Widow with an extra helping
Then people wait for power to over step and take
Once they do, the public likes providing Irony
Then the people in power, get added back to the system, the system they helped build and inspire
The widow likes to provide a test
If power shows mercy, grace, and love for what it doesn’t understand
Give power grace, love, and mercy
And if not
Power’s colostomy bag changed by that same person
Forced to eat their own shit?
Likely
Might be better to solve the problem sooner rather than later
Or their systems, will be my footstool
NZT ending plus Penguin Desperate
Support network In Time
Just a little walk to the bus
Just a little Scarlet Letter Dance
Suspiria Times Godzilla is a scary thought
Combined with a desperate failing system
What did the entire world learn from The French Revolution?
Kind of reminds me of what that might look like in 2006
What would a man seeing his support network being destroyed, that is a master of communication say and do, to save the people he loves, what wouldn’t he do?
Use darkness, Use light, use each color, in a systematic system, words, and emotions, all turned up in different levels and different ways with the prose of a poet with the paint brush of an infinite painter cable of using volcanoes and tornadoes like they are chump change
God is powerful, appreciate it
Communication, hierarchical systems, tanks, and unforgiveness are problematic
Appreciate it
If the Matrix no longer thinks the man has anything to lose, if it thinks they are to the point of unforgiveness, will it let them live?
The job of the police and The Vatican, to protect those people
“But you betrayed me” while listening that turned up to max
“But your still a traitor”
So when Biden and Kamala are out of office “It is done” an Echo for impeachment I could appreciate
President Biden and VP Harris out of office, unfit for office
Aren’t we ready for Chapter 7?
Such a beautiful numbering system?
7 pointed Pentagram?
7 knives of fellow senators to Caesar?
“Et tu brute” taking my support line now too
Fuck this shit
Take my Black Friday shopping, make it a little harder on my family
God break the people in DC
In Christ name turn this up to max, until the shit is out of office
Purple Concrete, for artists, something kind of complicated the canopy showed me about painting, street lights mix in some noise orangish yellows
Kind of like the sky kind of like the dividers from dark greens in the night time Concrete a little closer to gray, sky a little closer to beige
Sometimes nice to have things on a normal white background
Missing items and Missing Answers
Decent for anger management testing
The problem with anger management
People like to test the product they create
Not sure the anger management testing worked, better strangle them a little?
Some advice should not be tested
How to dodge bullets and gunfire is one example
Let me think of a few more
2. If you ever find yourself in a situation where you cheated on your wife don’t say this
Better test that?
3. This is how to saw off your leg if you are trapped
Not trapped? please don’t saw off your leg for the sake of a baseline, for the sake of a test
4. Nuclear waste spill recuperation plan? test in the lab behind lead walls, don’t test on a global scale please, our air quality depends on it
5. This is what to do when you have $0 and your government is full of shitty employees
Better test that? implement it a little? kind of what is being done in DC right now?
6. What to do if a building owner hasn’t implemented an appropriate safety ramp, your in a wheel chair, and there is a fire
Better test? Better to implement the ramp in the first place
7. What to do if you are served shit with a gun stuck to your head? Like if you were blind to the fact you were being served shit?
Better test? how about no, how about we not put that in the food
I provide these 7 common examples of a time where 7 tests should not be given
Optimization without testing the optimization? I have provided 7 cases above
Problems do happen, not everyone completely washes their hands
In life there are problems, maybe not add extra mean girl tests in place?
Like stealing single use plastic straws
Figure out what presses their buttons?
To create a baseline?
For research sake?
Fear, Obligation, Don’t Test These Cases
I wouldn’t test it if I didn’t think it was necessary
Free Image, might want to try this at different Alpha values to understand my thoughts a bit better
Got the idea taking a walk last night, this image is kind of how the picture might look near my house before my house was built
Kind of reminds me that the government might be trying to destroy my house and support lines
Also a reminder of the US Debt and the thoughts initially going into build the house in the first place
Hits close to to home
Not sure I like my neighbors or my support networks houses being reset as purple concrete, Purple referring to as Royal, and Purple as the color, color of the sky and color of the concrete on top of the ground
Also a reminder there are not sidewalks on the sides of all the streets
Concrete has a cost, golden sidewalks everywhere? maybe costs too much, system should account for how it failed walkers here? Push it to the future? doesn’t always work out that way
Time is precious, something needs to be said? say it
Impeach the people in office, Please
$0 “it’s a jokey joke”
Basically what DC is saying to me and my support network
You house being leveled, maybe we can all appreciate how that feels
adjective compelling or requiring immediate action or attention; dire; pressing:an urgent matter.insistent or earnest in solicitation; importunate, as a person:an urgent pleader.expressed with insistence, as requests or appeals:an urgent tone of voice.
noun the process or state of acting or of being active:The machine is not in action now. something done or performed; act; deed. an act that one consciously wills and that may be characterized by physical or mental activity:a crisis that demands action instead of debate; hoping for constructive action by the landlord.actions, habitual or usual acts; conduct:He is responsible for his actions. energetic activity:a man of action.
adjective characterized by brisk or dynamic action:an action car; an action melodrama.
우리는 그들이 라인 아래로 몇 년 이 감사 하는 경우 볼 수 있습니다.
We’ll see if they appreciate this a few years down the line
if (state.goingGetsTough() == true) { blackPink.willBeThereForMeQuestion(); \\ ? }
두려움, 의무, 죄책감
Fear, Obligation, and Guilt
따라서 제이슨 리 데이비스에게 우리가 원하지 않을 수도 있는 요구 사항을 안장해야 할까요?
Therefore should we saddle Jason Lee Davis with requirements we might not want ourselves?
Pretty Savage saying it like that
“I know right” – Bender Futurama
“Brother why” “no one can stop death”
“Et tu brute”
“As the shadow once again crawls across our world, and the sense of terror drifts on a bitter wind, the people prayed for guidance, they should pray for the mercy of a swift death, for I have seen what the darkness hides” – Diablo III Cinematic
“That’s how I understood it, yes sir” – James Comey
And now my browser is getting locked up
Effective pauses not effectively paused
We call this SSI lag
Kind of just makes you want to throw a concert for them
noun a something that is intended; purpose; design; intention:The original intent of the committee was to raise funds the act or fact of intending, as to do something:criminal intent. Law. the state of a person’s mind that directs his or her actions toward a specific object.meaning or significance.
Intent to impeach “Better judgement impaired”
Impeachment Tomorrow might be more appropriate than Impeachment One Month from Now
A serious instance of Gross Negligent Neglect
Basically 2020 Election a Neglection
Involuntary Impeachment
Failure to protect a man that is bad at his job
Because of a High Crime and Misdemeanor
Again not a lawyer, not sure they appreciate their support lines being screwed by this shitty administration either
Involuntary Democratic Campaign Failure
Mitigating circumstances? Maybe if my support lines were greater than $0
Taking more nights than I would like Shiny Blue Marble $0 Support System
Impeachment “we just have to leave it there…. nonsense”
“Nailed this down” “Why has this become one of America’s favorite missiles”
“Global war on terror” “Helicopter launched anti” Jail missile
“Words matter” “I hope you can see your way clear”
“I hope you can let this go” “He did not direct you to let it go, He did not order you to let it go” “posed a central threat” “must clutch it nice and tight” – Far Cry 6 Trailer
“To tackle this wider range of targets” “he said I hope”
“Do you know of any case were a person has been charged with obstruction of Justice” in an Impeachment Trial?
“I took it as this was what he wanted me to do”
“Mr. Comey I have great respect for you…. sit on the judiciary comittee”
“To feature a tandem warhead, which consisted of two charges, one to set off the reactive armor, and the second to punch through the tank”
“To increase effectiveness against unarmored targets”, Free Image
“Single stage single thrust” Obstruction of Justice Gross Negligent Homicide by wrecking support lines charge
Maybe we can argue it down to impeachment?
Wrecking defense lines for defense attorneys really should be a war crime
Maybe that is a bit of an overstep
Like taking the support lines before executing Rick Rhoades
“Sit stay a while” – Deckard Cain
Just holding Lilith’s hand a little bit in DC, no big deal?
“I thought we would know peace but it is not to be” “solid propellent motor the missile” achieves “maximum velocity” through a deep seated respect for negligent obstruction of justice charges
“To guide the missile to it’s intended target” “so we have this occasion to have you before us…. and I really regret the
Turbulent flow, “Victory has defeated you”
“He did not direct you to let it go”
“Know when to deliver your message”
“Effective pauses”
“Was getting caught part of your plan, of course” – Bane
“Now what’s the next step of your master plan” Biden?
“Crashing this plane” – Bane
Not sure that is what President Biden and Kamala were going for
Therefore I think Impeachment and time at the beach a better option
How I would want it done if I were a misguided abandonatrix in office
“Words matter”
“I took it as this is what he wanted me to do”
Maybe he wants to be Impeached
Can’t blame the guy with China and Taiwan, other issues in the world, a lot for any mans plate
Not supporting his support lines, really shouldn’t be in office
“So I take him at his word there” – Comey
“What impact you believe that had”
Cutting off my support lines, terrible for my family, terrible for the country
Terrible way to treat people out in Texas, might not be the only one The President and Vice President are treating that way with SSI
People could get out of Jail sooner if our SSI system was better and we could depend upon it
Basically your giving more time with a pit of vipers and shivs to your fellow citizens around the holidays
One would classify this as a dick
A Democratic Richard Nixon level dick
“A certain amount of intimidation” I really didn’t understand the word Duress a few days ago as much as I do now, yet we require young men and women at 18 to basically hit every pitch on this without losing years of their life or possibly winding up dead
I use a baseball reference here, kind of reminds me of the field goal statement from Secrets of Hostage Negotiation
“I don’t care if you care if they want to be respected, they care that they want to be respected”
noun any sound considered with reference to its quality, pitch, strength, source, etc.:shrill tones.quality or character of sound.vocal sound; the sound made by vibrating muscular bands in the larynx.
verb (used with object),toned,ton·ing. to sound with a particular tone. to give the proper tone to (a musical instrument).
verb (used without object),toned,ton·ing. to take on a particular tone; assume color or tint.
“Know the power of respect”
Can’t get updates on this level inside Jail, “appreciate it”
“and when you can’t remember anything else about what we talked about here, please remember this one thing, your talking with another human being”
“someone who has feelings and emotions that matter” “Effective Pause”
“someone who has people who love them” “Effective Pause”
“someone that wants to feel important” “Effective Pause”
“someone who does not want to feel stupid or embarrassed” “Effective Pause”
“someone that should be respected, and I don’t care if you don’t think they should be respected, they think they should be respected”
“There is tremendous power in unconditional respect”
“Know the power of respect”
“Your words have the ability to inspire them”
Because sometimes Shiny Blue Marble is “Bad as Can Be!”
“From the angels, I pray that it will be enough” “laser fire and forget missile”
“There but for the grace of God go I” “truly appreciate” that we all “are in fact deeply deeply human”
“Visually its a very clear picture”
“The prosecution does not have a monopoly on victims” – Ted X Kathleen Heath
“Or his sense of safety and security in his own home” “victory has defeated you” – Bane
“Admirable but mistaken”
“Oh you think darkness is your ally… I was born in it, molded by it… by then it was nothing to me but blinding”
“then I will break you” “perfect but useless”
“clutch it nice and tight” “we will need it”
Such disrespect for all that work Architects put into build that building
Some people don’t appreciate the finer arches
A little demolition work for the ground breaking?
Not sure if she will appreciate the intro
All that work women like Dami Lee put in “admirable but mistaken”
Like an Architects worst nightmare
Zeroed support lines and the work they put in being burned to the ground
War and explosions not always the best encouragement for new architects
Shiny Blue Marble’s surface, subject to changes
Resell war as renovation work? Not really sure I have a full appreciation for what is said behind closed doors
If you don’t build it in the first place, they can’t blow it up
“Quitting their jobs in droves” – Dami Lee
“How we as workers can learn from this so we can design a better future for ourselves” – Dami Lee
July 19th, 2020 A simpler time
Basically if Puppy Cat Biden and Puppy Cat Harris don’t want to do their jobs
Puppy Cat Jason doesn’t mind steering the ship for a while
Because at the end of the day, we are all Puppy Cat’s made in the image of God
“and I don’t care if you think they should be respected, they think they should be respected”
“Know the power in” humility ” and unconditional respect”
Basically setting my support lines to $0 and obstructing justice for people in Jail
Does not equate to unconditional respect
Therefore I think impeachment a wise option if something doesn’t seriously change fast
Is this really increasing my productivity
And if not maybe it is time the country goes in a different route
“DC just trying a little experiment”
“It can be… or use” pain cancelling medication, which I can’t buy because they $0ed my support lines
Not really feeling that Biden and Harris are Puppy Cats
Grossly Negligent, maybe they just don’t have enough support
If they divested from me likely divested from some other great support
lonely at the top
Teeth “just kind of bleed into your day”
If they know what they are doing, Father please give them a nice stay in Lew Sterret as well, if this is what they are going for
Ideas nots always valued appropriately the first time they are iterated, have to change things up at times
“So I started doing that more actively”
Her words, it is nice to be able to learn while on the outside
Not sure I would have the full inspiration to upgrade my skills without the experience
Not sure any of these people outside of the Impeachment post expected their content to be quoted on an impeachment post
intentions don’t always correlate to reality
People want to change the world
They aren’t always sure what that means going in
“And I was told that he lived” – Secrets of Hostage Negotiation
“We never spoke again after April 11th”
“A slightly cowardly way…. I wanted to go into that”
“And what was their response… during one of the two conversations”
“The President’s call was a surprise”
Setting my account to $0
Not the most effective way to build engineers
Entrapping them in legalism
“Shocked and troubled by it as I was”
“They were very concerned…. what should we do with this information, because we are the leaders of the FBI” – Comey Trial
Hopefully people out there on Shiny Blue Marble are hearing this
And ready to turn it up
With the contrast level of Panalo without getting anyone hurt
“But that’s how we thought about it then”
for (i=0; i<shitOutOfOffice; i++) {
cout << “Turn up!” << “Unfit for office” << “Obstruction of Justice!” << endl; // C++
System.out.println(“Turn up!”+”Unfit for office”+”Obstruction of Justice!\n”); // Java
}
The power of two computer languages, coming with an impeachment for you
Not sure people believe there is any power in C++ and Java
No power in Linear Algebra in Math, just got that video to you
I invested in Perl and Python too
a bit of a hedge
Didn’t come to the stage to half win
“perfect but useless” Right C++ and Java?
Suddenly the wrong person turns all 4 Bixby, Cortana, Siri, and Alexa up to the power of Ultron? no big deal?
And use it to rob your children of their Justice in Court?
Felt people deserved a little more appreciation for what NASA can do these days
The label problem no big deal? Just push it back a few years?
Until we all wind up as canned goods?
Elon makes a good point
Therefore I think President Biden and VP Harris should get out and let someone else give it a try before they wind up with another frozen corpse in Texas
“Free Cadavers” not really the best undies for The United States
What I wouldn’t give to hear some of the conversations going on behind the scenes right now
This dread the people I am fighting against are going through something huge themselves, we all like to act strong
At the end of the day, what’s that even mean anyways
Another young man lined up against a wall
“Turn around”
“Car’s in bound”
Your forgot to clutch tight “Diego”
Free Image, Accessibility and a Free Car Ride
And now “Diego’s” mother, “this world is a prison” and “I will set us all free”
“Just as they lay waste to our country, we will lay waste to theirs” – Call of Duty Modern Warfare 4, important to get a full appreciation for the algorithm, and the indoctrination
Shouldn’t have sold that guy the Dessert Eagle
Shouldn’t have sold that guy the Car he drove up in
Shouldn’t have sold that guy the post he used to make that blood splatter
Shouldn’t have stitched that uniform for that monster
Now that was PS3
We are on PS5 now, a PS5 that I do not yet have access to “Diego”
Just video games, no need to test that?
I do like their use of sun roofs and cities I haven’t seen
Not sure that is how I would like my last moments to go down
“PlayStation”less
“High Risk High Reward Missions”
A descendant algorithm
Soon rolling into to Taiwan?
See why I have an appreciation?
“Customize your arsenal, ready for any battle”
We call this scope creep
“Tensions at an all time high”
You would think after months of this shit
Biden could have done a better job
Probably due to under appreciation of Math Teachers
In The United States of America
Tensions keep getting worse, maybe a 3rd party replacement is necessary
History does like throwing curveballs
specially to Grossly Negligent people in office
Surveillance has a better view of the situation
May God help them find the truth behind the matter
“China Advances Hypersonic Weapons”
We build rail guns they build rail guns
They weaponize space we weaponize space
Story keeps going on while people rot in Dallas Jails
like “In the mouth of Madness”
1995 Maybe We didn’t learn enough from history
Writers dreams come to life, please don’t use my words to kill and hurt people outside of telling a scary story
Hurting people does constitute leaving President Biden and VP Harris in office
As there are people with a real threat (death penalty and oppressive shivs)
Having their support lines reduced by current leadership, and if I were to lead no guarantee people wouldn’t say the same of me specially if someone interfered with the network connections between me and them
Being out of Jail there is a lot different ability to interact than while in Jail
“Relevance” is important
Proximity is important
Relevant Proximity to Fear, Guilt, and Obligation?
What happened to these ladies?
Not enough hugs at a young age?
“Triangulated Hierarchical Competition” like Psych Doctors Competing
To these ladies I would say “Never say die!”
And know your value
Oval Office like an Abandoned Abrams Tank “a billion dollar bitch”
“Deep Work”
Probably what it feels like having States offing people under your leadership, probably feels pretty shitty
Talk a good game “lovin it”, inwardly hating every moment
Hitting a little too close to home?
Really think our leadership deserves better than to have to watch states offing people
Country wide ban on death penalties if I was in office, not sure if I could get that one over the goal line
“Better mascots than you have tried” – Bender, Futurama
“Should have put that guest up in your car”
“Man fuck this shit” I can’t even pay for gas
“I think I think I need some new friends”
“I can forgive but I won’t forget” – bug in the system
“I think I think I need some new friends”
Pretty cool song
CEO’s of the world deserve better then the shit hand their being dealt
Better to judge that taking my support line is not saying “though fool” not saying God would follow through with that judgement, wouldn’t want my enemies being in danger of hellfire, real or hellfire missiles
“For if you forgive your Father will also forgive you” – Matthew
“For where your treasure is there will your heart be also” – Matthew
noun a fixed or firm belief:No clever argument, no persuasive fact or theory could make a dent in his conviction in the rightness of his position. the act of convicting someone, as in a court of law; a declaration that a person is guilty of an offense. the state of being convicted. the act of convincing a person by argument or evidence. the state of being convinced.
noun the act of acquitting; discharge. the state of being acquitted; release. the discharge or settlement of a debt, obligation, etc. Law. judicial deliverance from a criminal charge on a verdict or finding of not guilty.
Usually the motivation is “Law. judicial deliverance from a criminal charge on a verdict or finding of not guilty.”
Kind of hate a setup where one group sits in Jail and the other set sits in Power
Both fighting each other
“Theoretically the US Government is already designed to prevent abuses of powers”
Father please show me how to defend two guilty parties trying to hurt each other other properly in Christ’s name I ask this
Either you support the prosecutor or you support the defense
Yes
The plate
Conviction and Acquittal served over a system with the power of NASA to fail each other
Not the prettiest view of Shiny Blue Marble
Father please make it better than that for future women, children, and men In Christ’s name I ask this
noun,plural Jab·ber·wock·ies.a playful imitation of language consisting of invented, meaningless words; nonsense; gibberish. an example of writing or speech consisting of or containing meaningless words.
adjective consisting of or comparable to Jabberwocky; meaningless; senseless.
noun a distinguishing characteristic or quality, especially of one’s personal nature:bad traits of character. a pen or pencil stroke. a stroke, touch, or strain, as of some quality:a trait of pathos; a trait of ready wit.
Utilitarianism kind of counts out God
Strictly greater or lesser than for experiences kind of counts out the Master of the Universe to work? Master of Universe doesn’t have the ability to deliver on Customer Service?
noun the ethical doctrine that virtue is based on utility, and that conduct should be directed toward promoting the greatest happiness of the greatest number of persons.
Often utilities. a useful or advantageous factor or feature:the relative utilities of a religious or a secular education.
adjective(of domestic animals)
raised or kept as a potentially profitable product rather than for show or as pets:utility breeds; utility livestock.
having or made for a number of useful or practical purposes rather than a single, specialized one:a utility knife.
Reconciling that a Master of The Universe has the ability to look out for all of us properly, and that people still need defense attorneys is a bit confusing
God doesn’t need me and at the same time appreciates my contributions, also a bit confusing
I still believe in God, just some of my personal struggles with logic
Can the logic of the definition of logic be illogical?
noun the science that investigates the principles governing correct or reliable inference. a particular method of reasoning or argumentation:We were unable to follow his logic. the system or principles of reasoning applicable to any branch of knowledge or study. reason or sound judgment, as in utterances or actions:There wasn’t much logic in her move. convincing forcefulness; inexorable truth or persuasiveness:the irresistible logic of the facts. Computers. logic circuit.
Thinking that we can truly approximate logic in a world, a Shiny Blue Marble of so many dimensions I am not sure is true wisdom
“the science that investigates the principles governing correct or reliable inference”
This lecture I am listening to on behavior psychology helps with this in my personal opinion
Emotion matters, reliable inference “in the hearts of men”?
Add in fear, obligation, and guilt? Approximate correctly walking in each others shoes?
We like to think we know more than we do
I think this is important to reiterate
We like to think we know more than we do
Call it pride, call it hubris, call it insightful disregard for
“Effective pauses” – Secrets of Hostage Negotiators Ted X
“Know when to deliver your message” – Secrets of Hostage Negotiators Ted X
We are having a “rational” conversation
Where as others listening might be having an extremely complex emotional response
With far reaching consequences
Many of which are unknown in the long term
We like to think we know more than we do
Unwrapping that misconception
That idea, will go a long way
Shit is bad in Lew Sterrett and it is not being solved
I think this important
Therefore I reiterate
Shit is bad in Lew Sterrett and it is not being solved
My support network is being reduced therefore I think “that is an important hint for us of what is to come”
“The gold standard” for kind of leaving people without enough support
Now we use addition “in terms of implication”
I am not being treated how I wish to be treated, others are being left to be executed while I have to deal with the roadblocks being put in my way
Therefore I have bias, bias for not wanting my support network set to $0
$0 support network does not necessarily make the system better
Is a bias always bad?
Emotional Anger and Rage, and long term feelings of failure and flashblacks of anxiety caused by financial distress?
I both acknowledge there is a bias there, and agree that that bias is not bad
noun a particular tendency, trend, inclination, feeling, or opinion, especially one that is preconceived or unreasoned:illegal bias against older job applicants;the magazine’s bias toward art rather than photography;our strong bias in favor of the idea. unreasonably hostile feelings or opinions about a social group; prejudice:accusations of racial bias. an oblique or diagonal line of direction, especially across a woven fabric.
Statistics. a systematic as opposed to a random distortion of a statistic as a result of sampling procedure.
adjective cut, set, folded, etc., diagonally:This material requires a bias cut.
adverb in a diagonal manner; obliquely; slantingly:to cut material bias.
Words have more than one meaning at times
Reading a paper can be read in different ways depending on the person, probably wise to understand that even where notes or definitions for words are the same one agreed upon. Why? Because medical issues and emotions factor into the equation
trend, inclination, feeling, prediction, opinion
predictive analysis is both useful and can be used as an excuse for killing people
dangerous in a system that likes to label
Thinking we know more than we do
We like to think we know more than we do
We have a tendency towards predictive analysis, opinions based on emotions and health issues, we have a tendency towards bias
We are “in fact deeply deeply Human” – Ted X Kathleen Heath
Generally Tiny Sample size, and giant Blue Marble, Giant Black Universe filled with many many many many Photons and particles
We like to think we know more than we do
And the same words over and over “are very subject to the shaping of behavior”
Such as observational behavior
Could be the next Neil deGrasse Tyson and we are leaving him in here
“Know when to deliver your message” – Secrets of Hostage Negotiators
adjective reckless or dangerous because of despair, hopelessness, or urgency:a desperate killer. having an urgent need, desire, etc.:desperate for attention;desperate to find a job. leaving little or no hope; very serious or dangerous:a desperate illness. extremely bad; intolerable or shocking:clothes in desperate taste.extreme or excessive.
noun Obsolete. a desperado.
Reckless or dangerous vs Gross Negligence, word choice matters
noun loss of hope; hopelessness.someone or something that causes hopelessness:He is the despair of his mother. verb (used without object)to lose, give up, or be without hope (often followed by of):to despair of humanity.
verb (used with object)Obsolete. to give up hope of.
I think we can all agree that hopelessness and desperate despair caused by gross negligence does not serve the goal of equal access to justice, and the acknowledge meant of this is chronically underfunded
We are “in fact deeply deeply human”
“And for those reasons” I think they are “Bad, Bad as can be” – Jenny Music
The State is Reckless and Dangerous, a bit of a storm in for the babies
No story? No build up? No effective pauses? No watching an “empire fall”?
Not my Shiny Blue Marble
She’s not the kind that wants to underdeliver and let the cat out of the bag too early
That building, that architecture
“I don’t care what they say about me” “it’s bad as bad as bad as can be” – Jenny Music
But luckily we have defense attorneys that know how to break through the gate “and scale the wall” – Jenny Music
“Closer I can see the battle lines”
Free Image
The cone, the wake of inspiration? short term and long term?
Really have a full appreciation? No, have a full ability to control the outcomes based on every roll of the dice?
We like to think we know more than we do
“Let me show you what I believe in”
Turbulent flow is real
Lack of understanding is real
Therefore for what I don’t know for what I can’t comprehend
For what God can account for and what I can’t
“NEVER SAY DIE!” – Jenny Music
We all leave a wake
Time wake, shit that needs to be cleaned, preferably the gems are far greater than the shit
Buyer beware, no guarantees on storm in by design Blue Marble
God is the closest thing we have, and sometimes He likes to stay silent on the matter
Silence as a teaching tool, He uses it, why shouldn’t I?
My wake is smaller, maybe I can’t use it properly
Searched Silence as a Teaching Tool 12.10.2021 around 2:20 PM CST
Silence no information, on what I searched, no Timestamp, really better?
On the other hand we have Jenny Music
Ha, the guy is signing
Not actually using silence
Perfect, wouldn’t expect any less
“Leave me alone” NASA Style
Sometimes just got to hear the lady out
Momentum, maintaining inspirational momentum
It is amazing to hear others are doing well, would like for the lives of others to gain more momentum as well
Are those words undercutting the interview? Don’t mean them that way, sad, close to Christmas people being in Jail
A difficult position to be in
Amazing she is doing well and she should be celebrated, not saddled with the bullshit that the Texas system brings to the equation
Amazing she is doing well and she should be celebrated, not saddled with the problems in the press conferences from Washington, DC
Could iterate on more, wise to “take a step back”
Doing right by the artists and engineers? while trying to field oppression up high and up low? not really an easy task
We like to think we know more than we do
Free Image
Crushing to have the wings tied with barb wire
Do right by a turbulent flow Shiny Blue Marble sitting in a Jail Cell?
Would like to think God has better plans in store for people
A beautiful soul
“The highest form of an art, a concert” – words from a moment in time in 2021
What will they mean in 2025? in 2030? Stay tuned
Commentary from the Olivia Rodrigo – Full Interview | Apple Music Awards 2021
Knowing when to take a step back vs knowing when to take a step forward? Challenge Accepted?
A card choice, could have chosen the Ghost Hunter one, felt this one better for this moment in time
Invoked cone with potential and other choice, not taking into account the many many other videos I could have chosen to place here
We like to think we know more than we do, about why people choose what they choose, why they leave us in silence, why they leave us earlier than we would like
Apply that label to Shiny Blue Marble to Father God, The Space Bouncer?
So many missing answers
So much oppression
What the hell am I supposed to do with that?
Gross Negligence and Obstruction of Justice built into a system with the power of Nasa? Tell her the truth? better to lie?
Despair and Desperation fused with the pressure of years of oppression
One kind of diamond
Not really the kind of diamond
I would want for someone I loved
A prism of a point in time
“Cause I still fucking love you babe” – Olivia Rodrigo
Lights of different color shiny in different direction, comfortably numb, magnets and lasers? Photons and Blackholes
Little kitten on the side of Jupiter
We like to think we know more than we do
Trying to write beautiful love stories while the world decides if it wants to invade and bomb each other
Takes a lot to build a bridge
And people like to tear them down
sometimes words mean more than we know
Useful one way today, maybe useful another way tomorrow
Got to trust God to use them appropriately
Definitely nice to have one that will shake things up a bit
Cause she’s a billion dollar bitch
“Cause her personality” is always sparkling
Abrams Tank through WW2? Free Image
Treads and Chains that steal babies
“A billion dollar bitch”
Yes she is
When do I get to spend more days playing Forza and Asphalt 9?
When world leaders get a grip?
Have been waiting a while on that, maybe United Nations could let me know more
Two cards, Amnesty or United Nations
Which one would serve the Marble better?
Real estate is cheap
Better to show the problem cases or the pomp and circumstance first?
There is no wrong answer?
What is the value in 15 minutes?
United Nations will be the play, followed by Amnesty
Storm In Leaders by Design more the likely culprit, they do like their Abrams
Everyone always trying to pastel the studio
I think they could use more sweaters
Changing modes
Hold up the studio?
That will get their attention?
Definitely an effective form of communication
Effective at making me irate and wanting me to impeach
Gladly will fly United Nations on top on days my support line is not set to $0
Their life easier my studio less pastel cat shit think I could get on board with that
Like my kitten, trying to write a scary movie Barnie not always the best choice
I could have put Barney here, some might have liked to see it that way
Barney there, kind of like how I feel is being doing with OpenGL libraries in C++
Basically kind of feel like the dev community is fucking over the youth, by making them stay in preschool at 25
Some people would like to see that for our country
We will call them President Biden and Vice President Harris
I will refer to that as Grossly Negligent in providing an unacceptable user support experience
Obstruction of a decent storyline
The Raven with no Raven Presidents of the United States
Maybe this on repeat
Not sure that is wise for the mental health of the surveillance listening in
Unknowns are unknown
Maybe mix with some Mozart?
“Perched and sat and nothing more” to the tune of Mozart
Not sure the system isn’t changing the balance levels on my audio to hurt my ears
Therefore impeach them for not treating me how I wish to be treated
basically get the shit out of office
fast and with the momentum
“suddenly came a tapping”
“Only” obstruction of Justice “and nothing more”
Hell for politicians? An endless hotseat ceremony without bathroom breaks?
Might want to listen to some Luke before that happens
Beats leaving them in office and leaving them to Jaundice, Free Image
Not sure The United Nations or The United States or Texas understands the concept of Jaundice, if they did, would they leave it that way?
Strangulation a valid point too “for the rare and radiant maiden” “Only this and nothing more”
“fantastic terrors never thought before”
“surely your forgiveness I implore” 2022->2050 “and nothing more”
Hopefully that is a decent intro, for a group of under supported group of women in Dallas, TX
“Cool wind my hair”
“Warm smell of colitas” “rising up through the air”
Point the finger at California? Given the ship we are running?
Maybe if you let the ladies out
There would be better melodies world wide
That dress with the bow, kind of hot
Pirates? would they ever use fear and obligation?
Ask Jack Sparrow?
It’s no Pretty Savage
Does have a quaint charm
“The loudest in the room” – Lalisa
Value in
Value in
Makes me think of Oppressive Legal Systems
“But save your tears for another day”
Free Image
“I don’t know why I run away”
As if it was him, Free Image
Pretty fucked up Texas, wake up
Not sure tears are enough at this point
Babies getting Jaundice? in Burning Prenatal Wards?
“You deserve someone better, save your tears for another day” – The Weeknd Save Your Tears, The Image I painted above is free to use
And they say the system doesn’t promote people being savage
Pastel Cold Burgers?
Ming Dynasty isn’t Pastel, not having control of the studio, sitting under oppressive regimes and rules, that is Pastel
No offense to Pastels, I use it like I use chalk, the mineral Jade, or harmless garden snakes
Like Trees, the system takes another one for the team
Lots of nice trees in Texas, would be better without hanging jade sauce associated with the death penalty
Free Image
Lights like Shot Guns and Search Dogs in Shawshank
Maybe I just didn’t sell it right up north, have had some updates since then
DJ’s might need a bit more finesse
Power in Numbers
A 4 part formula like The Customer Service formula
“Credit where Credit is due” “always be closing” – GGGR Glengarry Glen Ross
A trusted source
Emotional Purchase Power Logic
Free ImageFree Image
Which one do people like better?
The pitch
Free Image
Free Image
I don’t get enough direct feedback, would be nice to have some analytics
Give good customer service without feedback?
Free Image
Has an emotional component, shocks and support added to the Customer Service video, reaffirming support for Shiny Blue Marble
Fun, makes a game out of it, life can be boring at times, get people to work together going to need a little more than a blank screen or stuck in a Jail Cell
“I would not waste your time or mine” – YouTube Sales Video
“Always be” Listening, Apologizing, Solving, and Thanking
A non deoptimization approach “the future” – YouTube Sales Video
“Stale” maybe a better word for the jade minimalists
Anti Stale Tech maybe a better form of Anti Jade Tech?
Water for Jade, kind of a storm in on the name, a love for the Epic
Anti Stale Make it Pop
Negate Stale Optimize Pop?
Not sure
Water for Jade kind of gives a more architect feel
Fountains and Rigid Crystals
Versus Anti Over Expired Food
A bit of an AB test, both probably add value in different situations
A reminder not all content applicable to all people in the same amounts
“Playing to their strengths”
Some commentary listening to the video Use This Sales Technique The Next Time You Pitch
An effective Acts Arrow
For some reason DC seems to confuse me caring about Customer Service with me not wanting Customers or having funds
Customer Service reps want to eat too?
“Your soooo needy” – DC
A government saying that to its people
really not the best Customer Service
Having their support line set to $0 “a problem a customer might have”
If a Customer Service rep has a problem
You should first listen, apologize,
Then solve the $0 funds in SSI problem while AC remains on in DC Supreme Court building and gold still available in Fort Knox
First, “clearly state the problem”
I believe the people in office are shit for our country
Please Listen
I would like and apology
Solve the problem by impeaching the garbage out of office for Gross Negligent High Crimes and Misdemeanors
“Very important that you don’t get upset”
Consider it constructive feedback
Not sure telling the truth is classified as rude in this particular case
“An in that case your going to have to get your manager”
“So you can help them”
“Next thing you do is apologize”
“You should still apologize”
2000 to 2021 “I am sorry you have had a bad experience” not really good enough
Like Biden and Kamala stuck in Lew Sterret 2022-2023 “like a wifi problem”
“here’s what we’re going to do to help you”
“Be honest”
Admit your faults in a humble way, and God the Father will exalt you
And finally “you need to thank the Customer” the Citizien
“And end with a positive friendly note”
“Listen, Apologize, Solve” impeach “Thank” – L.A.S.T. Customer Service YouTube Training Video, How to Give Great Customer Service
“Now what’s that got to do with customer service? We want to give them an experience but we want to hang…..”
Lets put Biden and Kamala in this seat
“Criminal Liability”
“I would like to remind my colleagues that we will reconvening”
verb (used with object),in·ves·ti·gat·ed,in·ves·ti·gat·ing. to examine, study, or inquire into systematically; search or examine into the particulars of; examine in detail. to search out and examine the particulars of in an attempt to learn the facts about something hidden, unique, or complex, especially in an attempt to find a motive, cause, or culprit:The police are investigating the murder.
verb (used without object),in·ves·ti·gat·ed,in·ves·ti·gat·ing.to make inquiry, examination, or investigation.
“An opportunity to set the record straight”
“Possible” Biden and Kamala Interference
“A strained relationship” “Interview all relevant parties” free work for Lawyers
“Did the Presidents request for ” Royalty
Royalty in decisions setting relevant parties support lines to $0
We must find the truth behind these High Crimes and Misdemeanors of ambiguous Tort and Duress, otherwise referred to as fucking over a fellow citizens support lines
Understand I am not a lawyer, I do not claim to be a lawyer, but I do support a “unified bipartisan approach to fixing the problem” in DC and getting the shit out of office
“Only then will we as a nation be able to move forward and put this episode to rest”
I chose the Comey Video instead of The V for Vendetta because I chose not to fuel up violence against the system
Will my choice be appreciated?
It is important to have feedback
to restore faith in our system and humanity
On said assailant Shiny Blue Marble
“Integrity and Expertise” in “speaking truth to power”
noun expert skill or knowledge; expertness; know-how:business expertise. a written opinion by an expert, as concerning the authenticity or value of a work of art, manuscript, etc.
Being referred to as Director Comey, nicer than being set to $0 SSI
“Think about it”
Consider the implications
“Shockingly” the update was not ready
Impeachment “this is not happening in isolation”
“They did not take the opportunity…. In my opinion that is not how the President of The United States should behave”
“Let me be clear, this is not a witch hunt, this is not fake news, it is an effort to protect our country from a new threat that doesn’t appear to look like it will go away anytime soon”
President Biden “you are now under Oath…. you have the floor as long as you may need”
verb (used without object),be·haved,be·hav·ing. to act in a particular way; conduct or comport oneself or itself:The ship behaves well. to act properly:Did the child behave?to act or react under given circumstances:This plastic behaves strangely under extreme heat or cold.verb (used with object),be·haved,be·hav·ing. to conduct or comport (oneself) in a proper manner:Sit quietly and behave yourself.
“Important to underscore” that problems come in both Republican and Democratic flavors
Could have been “extremely well liked” President Biden and Kamala
Instead it is $0 SSI to 2 Teachers and a Veterans Widow President Biden and VP Harris
“But then the administration chose to defame me”
Not a lawyer, not sure what is classified as defamation
I would think robbing a studio, by setting its value to $0
Maybe if Comey was still employed Biden and Kamala wouldn’t have gotten away with it
noun widespread reputation, especially of a favorable character; renown; public eminence:to seek fame as an opera singer.common estimation or opinion generally held of a person or thing; reputation. verb (used with object),famed,fam·ing.
Archaic. to have or spread the renown of; to make famous.
“Do you have any doubt” that President Biden and VP Harris could do a better job?
Either they can’t do a better job and should be out of office
Or they could do a better job and should have fixed it a month ago
Therefore I believe it is both in the countries best interests, the administrations best interest, and my personal best interest that President Biden and VP Harris leave office sooner rather then later, my assessment as of 6:04 PM 12.10.2021
There is a potential for somethings I haven’t seen, would like to believe that our nations best could deliver a better customer service experience
An affinity for solving problems and hope, will it be appreciated?
“Collusion” in interference?
Is that normal for new Administrations, to set their support SSI lines to $0?
“A judgement call based on a whole lot of “facts””
Would like to think engineering and math training would be consider a high priority for nations best
Maybe they got a non credible update
Maybe they are just becoming aware right now
A bit of an update late day, more than I wanted to hear
probably has happened more than once
maybe Comey less of a victim by the system if we had learned to work together earlier
Life is a learning process
Was trying to learn Chinese, blocked, and now having problems with China and Taiwan
Fair?
Maybe I wouldn’t have had the right words then
An engineer math teacher able to speak Chinese
Seems pretty common use case to me
obviously the United States have invested a bit in Made In China and US Debt from China “mutually build trust”
“Brief the President Elect”
“The nature of the person” not the nicest thing to say
Not a big fan of not having the money to pay for paper towels in my own house, not my house, can thank the system for that too, not having my own house
“A quick email to the staff”
“It is our hope that the FBI…. ” has “our side of the story”
“Prepared to assure”
The shit in Washington is impeached
‘The potential… subject of the investigation”
I am not a PI, just a man that loves his country and his support being set to non zero
Not licensed, thus I am a “worthless piece of shit”
So to speak written in a $0 payout based over time
No real rebuke, no real relationship
Biden and Trump
Not much different
“Same shit different day”
Sorry got underfunded under Trump and left in Jail, and now under Biden being set to $0
Country kind of sucks or rather the way the country is acting
No forgiveness and setting support lines to $0 for the sake of a diatomic deoptimization algorithm, kind of annoying
The DMV of China and Asia make better engineers than us
Because I am both being limited on OpenGL and Cyber Security and being limited by being tied up in endless litigation
noun the striking of one thing against another; forceful contact; collision:The impact of the colliding cars broke the windshield.an impinging:the impact of light on the eye.
verb (used with object)to drive or press closely or firmly into something; pack in.to fill up; congest; throng:A vast crowd impacted St. Peter’s Square.
verb (used without object)to have impact or make contact forcefully:The ball impacted against the bat with a loud noise.to have an impact or effect:Increased demand will impact on sales.
noun something stated.a communication or declaration in speech or writing, setting forth facts, particulars, etc.a single sentence or assertion:I agree with everything you said except for your last statement.
Commerce. an abstract of an account, as one rendered to show the balance due.an appearance of a theme, subject, or motif within a musical composition.
adjective noting or relating to an item of jewelry, clothing, home décor, etc., that stands out usually because of its large size or bold design:a statement necklace, a statement bowl for your entryway table.
noun the act of amplifying or the state of being amplified.expansion of a statement, narrative, etc., as for rhetorical purposes:In the revision, the story underwent considerable amplification. a statement, narrative, etc., so expanded:The text of the second edition was an amplification. the matter or substance used to expand an idea, statement, or the like:He added an extra paragraph to his speech as an amplification.
Electricity. increase in the strength of current, voltage, or power.
adverb happening constantly or habitually:Nationally, millions of students are chronically absent every year. happening or recurring over an extended period of time (opposed to acutely):Monitoring is especially helpful for chronically ill patients wishing to avoid costly hospital stays.Close to 900 million people worldwide are chronically undernourished.
adjective having or provided with insufficient funding
Chronically Underfunded by application of Grossly Negligent Tort and thus obstructing Justice for trial support lines in Dallas County Jail, Lew Sterret
adjective widely and unfavorably known:a notorious gambler.publicly or generally known, as for a particular trait:a newspaper that is notorious for its sensationalism.
Shouldn’t mix Tylenol and alcohol
The world does appreciate its AL Capone and Drum shaped magazines, maybe if it did less there would be more solar panels, less investment in firing people before the holidays, just give them a little extra boos and some tylenol? shouldn’t mix tylenol and alcohol? what about when you can’t afford healthcare, still not wise to mix? just sit in agony? Shouldn’t mix Tylenol and alcohol, could give you a failing liver, death
System of Jaundice, yellowing of the sky
Pollution
Underfunded support, one way to kill the liver
I think there better options
Basically I want the shit out of office in I’ll be home for Christmas form
Shit out of office, Unfit for office!
A personal touch, and reminder being in Jail during the holiday suuuuuuucks
“Kennedy’s civil rights proposals led to the Civil Rights Act of 1964.[422] President Lyndon B. Johnson, Kennedy’s successor, took up the mantle and pushed the landmark Civil Rights Act through a bitterly divided Congress by invoking the slain president’s memory.[423][424] President Johnson then signed the Act into law on July 2, 1964. This civil rights law ended what was known as the “Solid South” and certain provisions were modeled after the Civil Rights Act of 1875, signed into law by President Ulysses S. Grant.[425]“
A great memorial to him and MLKJr?
City that Assassinated him, goes in for an extra punch on civil rights?
Full effect harder to appreciate
One crazy man takes action, kind of fucks over Dallas for everyone
People that dock me for every spelling error while trying to save the country, Father please note what I can’t see
Free Starter ImageFree Image
Fly the cat shit banner at the top everyday?
Remind the world there is always work to do on Shiny Blue Marble?
Part of the process
The Church of Catshit and BFGs?
Being Nailed to the cross, probably a bit worse than seeing cat shit
BFGs an appreciation for engineering and the demons power tools sometimes create
Dream tryin to get to the bank wind picks up a have to go inside, question “can you get to the bank” posed to me, kind of the question I posed to DC and NASA
Wind so strong I can’t move
Kind of what you get in a Tornado
That’s why DC turned the support off?
I am an an Angel advocate, I do not have wings myself yet
H 2 Villians are BC at the same time
love your enemy even when they are fighting your other enemy whom you are to love
If they fight unfair, take away the weapons
unfit for office
Whitehouse like a power tool, effective in the right hands, dangerous in the wrong ones
Whitehouse kind of like one of these episodes
where you are awake and can’t move and the doctor starts operating
Legal Documents left like noose knots for babies in 2035, or we could make some updates to the system
Hopefully this will get to 2065 in unedited version
“Jupiter is primarily composed of hydrogen, but helium constitutes one quarter of its mass and one tenth of its volume. It likely has a rocky core of heavier elements,[16] but like the other giant planets, Jupiter lacks a well-defined solid surface.” Frothy – https://en.wikipedia.org/wiki/Jupiter
Better below
업데이트해주셔서 감사합니다.
Pretty Amazing, FOG machine is pretty epic on that
Let’s put some obfuscational gravy on it
Optimize Transportation and Underproducing of Trials
Underprocessing and Lack of Inventory of Effective Communication in Trials
Not enough Trials is a Defect in the system, we do want to be in the business of removing those “and that should be our starting point”
A lack of motion between being stuck in the cell and walking out on the street, could cause problems for CEOs in 2022 and 2023
Skills are valuable “It’s that simple”
President Biden and Vice President Kamala Harris combined with Governor Abbot in Texas
“Effective pauses”
“Know when to deliver your message”
Unfit for office, smart enough to try and take my support
Therefore they might appreciate a stay there themselves, a little price upfront for a lot of inspiration
“Gut wrenching to leave” these CEOs in Jail in 2022
“supposed to keep a professional distance”
malefactory grossly negligent (“grossly negligent” – from intelligent people)
libertine abandurest
“Don’t judge” but vote? “Don’t call other people a fool” how do I vote like that? saying you Republicans or the Green party might be better for top office, doesn’t mean you are not intelligent, just means you optimized it so much that now instead of needing you next year, you will make a good flashlight for Lew Sterret
Hitler in office, did the Vatican say “don’t judge” My guess is more likely they said, “balance is better” “treat others as you wish to be treated”, don’t hurt the guy but get the fucker out of office
Maybe the Vatican wish they spoke up more, maybe they didn’t have a Texan friend with supercomputers in those days, therefore I type
Because lets be honest, we all have had times where we could have spoken up more
Couldn’t have written one more math lesson and went to bed an hour later?
President Biden and Vice President Harris impeached from office “when it mattered most”
Father Please remove the administration that destroys its own support lines from office or find a way to actually support them enough to fix their support lines to SSI In Christ’s name I ask this
Maybe the administration has a pair of vampires from true blood holding them up inside the Oval?
Vampire Aliens take Oval Office? Spawn cameo?
Kind of reminds me of Chogath
League of Legends?
Rain, burn victims, and machine guns
A green dark wanderer, with an appreciation for being between a rock and a hard place
Like a Blue Penguin with Shark Teeth
Penguin is a non boring way? Maybe the younger man doesn’t always have an appreciation, for the fullness of the algorithm
No Bane No Riddler, does he even matter to the equation?
Kind of the Tyrion of Lex Luthers
Oswald dangerous name after Kennedy, maybe trying to send a message?
likes birds, like Goodwill Beautiful Mind Hunting
Bender “I love my mommy”
Jimmied? Vailed? That imagery sickens me
“accidents” just happening
Like the Unibomber, Heaven’s gate
people just falling off the map, when it looks like “an electrical fire”
Not like strategic deoptimization of fire codes and openGL libraries
“Don’t come in here talking like you know anything about desperate”
noun,plural nu·anc·es [noo-ahn-siz, nyoo-, noo-ahn-siz, nyoo-; French ny-ahns].a subtle difference or distinction in expression, meaning, response, etc.a very slight difference or variation in color or tone.
4:49 AM now, now I will pass this information to United Nations
Hopefully it won’t be too late
Optimize Fast Fast Optimize
Accelerate Optimization Non Zero Support Line
“It easy to see how pragmatism wins the day” on 12.10.2021