View allAll Photos Tagged github

Ocotocat for scale. Aerohive's BR100 is so small/cute, it's a really solid branch solution!

Uses github.com/quag/mcobj to get the world out of Minecraft.

 

Houdini doesn't like mtl files so I had to convert the obj/mtl pair to fbx before importing.

 

Lit with a distant light and basic AO. Still not happy with the lighting...

wuipdesign.github.io

 

Free photos. Set 22.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

Web2.0 Expo Keynote Speaker Tom Preston Werner of Github-Photo by Lidia Thompson of Papitv.com

#mac #github #mbp my portable workspace

At the Github Octocat Dodgeball Invitational.

wuipdesign.github.io

 

Free photos. Set 37.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

👉https://hotgirlss.github.io/user0121345/ Free Sexy Girls

wuipdesign.github.io

 

Free photos. Set 27.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 16.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

Photographic techniques capture electromagnetic wavelengths beyond human vision, revealing features invisible to the naked eye. These signals are processed into interpretable forms using methods like color mapping.

 

Pink lacks a specific electromagnetic wavelength, while grey poses a limitation due to its representation of only intensity—a blend of light and dark without spectral specificity. Imaging techniques reliant on spectral variation produce identical results for greyscale images unless non-visible data is present. Deviations from this uniformity may indicate errors, misinterpretations, or unknown phenomena.

 

Contention persists over analytical debates, including dismissible claims like Van Allen belt dangers and contested evidence of lunar mirrors. The precision of laser reflections targeting a moving 3x3-foot marker on the Moon highlights technical skill but often fails to resolve skepticism. For instance, a 0.1° shift moves a laser spot 670 km across the Moon's surface.

 

Forensic analysis (2022, 2023) of Apollo 11–17 photographs assessed authenticity claims. Images of humans in space, Earth, and the Moon's distant views were validated, but Moon landing visuals showed variations, suggesting diverse techniques may have replicated certain elements.

 

PEMi (Photoelectromagnetic Image) software enhances forensic analysis by differentiating natural and artificial light sources, revealing hidden features. Each PEMi-ID links to original sources, ensuring traceability and comparison.

 

Further exploration is available:

Lehti, A. (2024). The Silence of Inquiry: Forensic Reflections Reveal a Crisis of Perception. figshare. doi.org/10.6084/m9.figshare.28078982

 

Credits

2022-2025 © Andrew Lehti

1961–2023 © NASA, ESA

Software: PEMi (GitHub: andylehti/PEMi.git)

Explore PEM-I: pemimage.streamlit.app

CC BY-SA 4.0 License: creativecommons.org/licenses/by-sa/4.0/

 

Research:

Lehti, Andrew (2024). Cognitive Psychology and the Education System. figshare. Collection. doi.org/10.6084/m9.figshare.c.7532079

 

CC BY-SA 4.0

This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.

wuipdesign.github.io

 

Free photos. Set 28.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 21.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 19.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

At the Github Octocat Dodgeball Invitational.

Got inspired by Github's blog post How we keep Github fast and decided to wrap some of our tools into a standardized bar.

Visiting.. visiting.. visiting..

👉https://hotgirlss.github.io/user0121345/ Free Sexy Girls

Url: gist.github.com/AndiH/f99d9b0cbd3519c27af5b96cfbeff97c#fi...

  

\documentclass[10pt]{article}

\usepackage{xcolor}

\usepackage{tikz}

\usetikzlibrary{arrows.meta}\begin{document}

Ti\emph{k}Z arrow tips overview (manual Section 16.5, \verb+arrows.meta+)

 

\begin{tikzpicture}[yscale=-1, y=2.5ex]

\foreach \tip [count=\i] in {

Arc Barb, Bar, Bracket, Hooks, Parenthesis, Straight Barb, Tee Barb,

Classical TikZ Rightarrow, Computer Modern Rightarrow, To,

Circle, Diamond, Ellipse, Kite, Latex, Latex[round], Rectangle, Square, Stealth, Stealth[round], Triangle, Turned Square,

Circle[open], Square[open], Triangle[open], Turned Square[open],

Rays[n=8]

} {

\draw [-{\tip}] (0, \i) to ++(1, 0) node [right] {\texttt{\tip}};

}

\end{tikzpicture}

\end{document}

github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...

 

// copyright (c) 2011 Robert Holder, Janice Dugger.

// See HELP.html included in this distribution.

 

#include

 

void WhileLoop4::runExercise()

{

int x=0, y=400; // = is pronounced GETS, == is pronounced EQUALS

int velocity= -45;

int rateofchange=1;

int horizontalstep = 12;

 

while ( x < 400 )

{

x += horizontalstep;

y += velocity;

velocity += rateofchange;

fwcCircle(x, y, 10, RED, 1);

fwcInt(velocity, x+10, y, BLUE, 10);

}

}

Github gets the evening kicked off right #github #beer

 

12 Likes on Instagram

  

github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...

 

// copyright (c) 2011 Robert Holder, Janice Dugger.

// See HELP.html included in this distribution.

 

#include

 

void IfThen1::runExercise()

{

int x=0, y=0; // = is pronounced GETS, == is pronounced EQUALS

int horizontalstep=70, verticalstep=70;

Color color = BLUE;

 

while ( x < 400 )

{

while ( y < 400 )

{

if ( x y) color = BLUE;

fwcRectangle(x, y, 40, 40, color, 1, true);

y += verticalstep;

}

y=0;

x += horizontalstep;

}

}

floating-marine-laboratory.github.io/Floating-Marine-Labo...

 

Location: goo.gl/maps/q67qBY7L1vAeL91H8

 

Authors:

 

Chan Cheong Kitkitcch@connect.hku.hk;

Chan Yuet Sum Canossau3510011@connect.hku.hk;

Kaufmann Maximilian Ferdinandmkauf@connect.hku.hk;

Lau Ho Chuen Maxwelllhcmax94@connect.hku.hk;

Lu Xiner Cenaluu3571357@connect.hku.hk; cenalu@qq.com;

Sin Chung Kei Nathannsck@connect.hku.hk;

Sun Zhengyuzyusun12@connect.hku.hk;

Wong Tsz Ching Cecicecitcw@gmail.com;

Wu Ho Ting Silverh1357797@connect.hku.hk;

Yeung Hin Oswinoswinyh@connect.hku.hk;

Yuen Ka Ho Kelvinu3571360@connect.hku.hk;

Zhang Houzheu3571366@connect.hku.hk;

Huang Shidanhsd1996@connect.hku.hk;

Mundle Kent Mackinnon Georgikmundle@connect.hku.hk;

Ng Kwok Jing Jamesu3528257@connect.hku.hk;

Lee Gavin Yu Hingavinlyh@connect.hku.hk

Tsang Hoi Lam Jessica Mary jessmt@connect.hku.hk

Visiting.. visiting.. visiting..

github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...

 

// copyright (c) 2011 Robert Holder, Janice Dugger.

// See HELP.html included in this distribution.

 

#include

 

void DivideByZero::runExercise() // copy the exercise name & paste it into main.cpp

{

 

// THIS PROGRAM WILL HANG WHEN YOU TRY TO RUN IT WITH THE if LINE COMMENTED OUT.

// Go ahead and run it as-is to see the correct behavior and then comment the

// if ( != 0 )

// line out and run it again to see what happens when you try to divide by zero.

 

// ****** You may have to kill FeetWetCoding.exe manually. ******

 

int a = 256, b = 8;

 

fwcText("Reference Exercise:", 50, 150, BLUE, 20);

fwcText("no solution needed.", 50, 180, BLUE, 20);

 

for ( b = 8; b > - 8; b-- )

{

if ( b != 0 ) // comment out this if statement to see divide-by-zero error at runtime

seeout << a << " / " << b << " == " << a / b << "\n";

}

 

// This is why it's always good to test the denominator before any division calculation

// if there is ANY CHANCE that the denominator could resolve to zero. Good habit to

// learn early in your programming efforts!

 

}

wuipdesign.github.io

 

Free photos. Set 33.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 3.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 35.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

wuipdesign.github.io

 

Free photos. Set 22.

Use it freely in personal and commercial projects.

 

CC-License

 

Photos: Anthony Clochard / wuipdesign.github.io

Mayor Lee cuts the ribbon at GitHub and kicks off October Innovation Month

At the 2011 Github Company Retreat

1 2 ••• 63 64 66 68 69 ••• 79 80