This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Throughout the course of evolution, the human ego has evolved as a critical tool for survival, enabling us to navigate and endure the harsh, impersonal forces of nature. Once essential for distinguishing ourselves from the herd, this once-valuable concept has now become a potential threat to our very existence. | |
The ego creates a sense of self, allowing us to declare, “This is me.” In today’s culture, this declaration extends further: “This is what I believe… This is what I expect… This is what I demand.” Our identity as human beings—members of a biologically similar species—depends on this concept. It is within this framework that we, as a democratic collective, have defined what it means to be a person, an individual in the modern world. We assert equality, but this equality is only possible because of an ego structure that demands recognition and validation. | |
Yet, the ego is a deceiver. For some, it inflates their sense of self beyond reason, earning the contempt of others. For others, it diminishes their |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
account | |
activate_breakpoints | |
add | |
archive | |
arrow_both | |
arrow_circle_down | |
arrow_circle_left | |
arrow_circle_right | |
arrow_circle_up | |
arrow_down |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.youtube.com/watch?v=9ZS7eM_-jEA | |
https://www.youtube.com/watch?v=MmIQ7ansrA0 | |
https://www.youtube.com/watch?v=1WbloLnhkOY | |
https://www.youtube.com/watch?v=t1UTeTcGd5I | |
https://www.youtube.com/watch?v=NPVdAAzwtg0 | |
https://www.youtube.com/watch?v=I1z3Uf4Zu0o | |
https://www.youtube.com/watch?v=WEh9k0xNoMY | |
https://www.youtube.com/watch?v=eu2169itPM0 | |
https://www.youtube.com/watch?v=VK5uG2fN6HE | |
https://www.youtube.com/watch?v=mDVEOXR4rIc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"icon": "", | |
"color": "#519aba", | |
"name": "Cp", | |
"cterm_color": 74 | |
}, | |
{ | |
"icon": "", | |
"color": "#77AA99", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ui_options": [ | |
"rgb", | |
"ext_cmdline", | |
"ext_popupmenu", | |
"ext_tabline", | |
"ext_wildmenu", | |
"ext_messages", | |
"ext_linegrid", | |
"ext_multigrid", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Translate object: | |
transform.translate(1, 2, 3); | |
% | |
Get world location: | |
transform.world.getLoc(); | |
% | |
Access transform properties in world-space: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
## Armory3D html5 player launcher | |
if ! [[ $1 =~ https?://.* ]]; then | |
echo "invalid url" | |
exit | |
fi | |
#if [ -z "$1" ] || [ $1 != http?(s)://* ]; then | |
#echo "Usage: armory-browser <url>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:buster-slim | |
WORKDIR /build | |
RUN apt update && apt upgrade -y && apt install -y git curl python lsb-release sudo | |
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
ENV PATH="/build/depot_tools:${PATH}" | |
RUN gclient | |
RUN fetch v8 | |
WORKDIR /build/v8 | |
RUN git checkout branch-heads/9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import js.Browser.document; | |
import js.Browser.window; | |
import js.html.CanvasElement; | |
import js.html.CanvasRenderingContext2D; | |
import om.Random; | |
class Tris { | |
public var canvas(default,null) : CanvasElement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import js.Browser.document; | |
import js.Browser.window; | |
import js.html.CanvasElement; | |
import js.html.CanvasRenderingContext2D; | |
class App { | |
static var canvas : CanvasElement; | |
static var ctx : CanvasRenderingContext2D; |
NewerOlder