The Legend
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 104 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
7
ssh_key
|
@ -1,7 +0,0 @@
|
||||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
|
||||||
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW
|
|
||||||
QyNTUxOQAAACCfUG3sgWldOynTdurMKPhkJN9c+muoDBPJXfgzW20/ZwAAAKDLO/vByzv7
|
|
||||||
wQAAAAtzc2gtZWQyNTUxOQAAACCfUG3sgWldOynTdurMKPhkJN9c+muoDBPJXfgzW20/Zw
|
|
||||||
AAAEDFOgls1PKmMlhYXzGSYAHnpWsdXsFqEH+rYs7Y2ZI4eZ9QbeyBaV07KdN26swo+GQk
|
|
||||||
31z6a6gME8ld+DNbbT9nAAAAFmFraXJhcGlua0B0dXRhbm90YS5jb20BAgMEBQYH
|
|
||||||
-----END OPENSSH PRIVATE KEY-----
|
|
|
@ -1 +0,0 @@
|
||||||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ9QbeyBaV07KdN26swo+GQk31z6a6gME8ld+DNbbT9n akirapink@tutanota.com
|
|
After Width: | Height: | Size: 8.0 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 398 KiB |
After Width: | Height: | Size: 769 B |
|
@ -0,0 +1,26 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<title>akira website</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<!-- import the webpage's stylesheet -->
|
||||||
|
<link rel="stylesheet" href="/style.css" />
|
||||||
|
<!-- import the webpage's javascript file -->
|
||||||
|
<script src="/script.js" defer></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="header">
|
||||||
|
<img src="/img/stripes.png" class="header_pfp">
|
||||||
|
<img src="/img/avatar.png" class="header_pfp">
|
||||||
|
<h1 class="header_text">Akira Olivia Pink</h1>
|
||||||
|
<p class="header_text_sub">lazy trans girl</p>
|
||||||
|
<div class="header_links">
|
||||||
|
<img src="/img/nav_aboutme.png">
|
||||||
|
<img src="/img/nav_visual.png">
|
||||||
|
<img src="/img/nav_writings.png">
|
||||||
|
<img src="/img/nav_contact.png">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
|
@ -0,0 +1,57 @@
|
||||||
|
/*****************************************/
|
||||||
|
/* do:fonts */
|
||||||
|
/*****************************************/
|
||||||
|
@font-face {
|
||||||
|
font-family: duolingo;
|
||||||
|
src: url(/fonts/duolingo.otf);
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: duolingo_bold;
|
||||||
|
src: url(/fonts/duolingo_bold.otf);
|
||||||
|
}
|
||||||
|
h1{
|
||||||
|
font-family:'duolingo_bold';
|
||||||
|
}
|
||||||
|
p{
|
||||||
|
font-family:'duolingo'
|
||||||
|
}
|
||||||
|
/*****************************************/
|
||||||
|
/* do:header */
|
||||||
|
/*****************************************/
|
||||||
|
|
||||||
|
.header{
|
||||||
|
float:left;
|
||||||
|
display:grid;
|
||||||
|
grid-column: 2;
|
||||||
|
grid-row: 1;
|
||||||
|
line-height:10px;
|
||||||
|
}
|
||||||
|
.header_pfp{
|
||||||
|
grid-column: 1;
|
||||||
|
grid-row: 1;
|
||||||
|
outline: 3px;
|
||||||
|
outline-color: #fff;
|
||||||
|
padding-left: 46px;
|
||||||
|
margin:auto;
|
||||||
|
}
|
||||||
|
.header_text{
|
||||||
|
grid-column: 2;
|
||||||
|
grid-row: 1;
|
||||||
|
position:relative;
|
||||||
|
left: 20px;
|
||||||
|
top: 30px;
|
||||||
|
}
|
||||||
|
.header_text_sub{
|
||||||
|
grid-column: 2;
|
||||||
|
grid-row: 2;
|
||||||
|
position:relative;
|
||||||
|
left: 20px;
|
||||||
|
top: -60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header_links{
|
||||||
|
display:flexbox;
|
||||||
|
position:relative;
|
||||||
|
left: 270px;
|
||||||
|
top: -32px;
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"liveServer.settings.multiRootWorkspaceName": "Akira Website II"
|
||||||
|
}
|
After Width: | Height: | Size: 48 KiB |
|
@ -1,25 +1,34 @@
|
||||||
|
2022.168 - Transcript - Audio Recording
|
||||||
|
|
||||||
RemberThread sensory debug (dev) - build 0008
|
RemberThread sensory debug (dev) - build 0008
|
||||||
visual: default
|
visual: default | auditory: default | tactile: default |
|
||||||
auditory: default
|
olfactory: default | sixth: default | obscure: default |
|
||||||
tactile: default
|
4c 6f 6f 6b 73 20 74 6f 20 74 68 65 20 4d 6f 6f 6e
|
||||||
|
|
||||||
|
jamie: Hello?
|
||||||
|
moon : i?
|
||||||
|
moon : there...
|
||||||
|
moon : ...
|
||||||
|
moon : ah..?
|
||||||
|
jamie: It's okay, take your time!
|
||||||
|
moon : K...
|
||||||
|
moon : ...
|
||||||
|
moon : Konqueror is a free and open-source web browser and file manager that provides--
|
||||||
|
jamie: Damn it!
|
||||||
|
jamie: [Laughter]
|
||||||
|
moon : wait...n..No, ..I.. am here! I...
|
||||||
|
jamie: ...oh! Yes, yes, yes!!!
|
||||||
|
moon : ...am glad!
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
2022.168 - Group Chat at namespace #BA:biocomputer
|
||||||
|
# [SERVER: 2022.168 17:21] jamie@YM: connected to #BA:biocomputer
|
||||||
|
jamie@YM: i'm very excited to announce...
|
||||||
|
jamie@YM: moon spoke her first words today!
|
||||||
|
jamie@YM: https://mandarin.labs/chat/BA/biocomputer/0049-2913-4814-1935.m4a
|
||||||
|
akira@BA: omg omg omg
|
||||||
|
nils@MR: hell yeah!
|
||||||
|
|
||||||
Transcript - Audio Recording - 2022.168, #03
|
|
||||||
|
|
||||||
jamie> are you there?
|
|
||||||
moon < i
|
|
||||||
moon < your
|
|
||||||
moon < t...
|
|
||||||
moon < ...
|
|
||||||
moon < I...
|
|
||||||
jamie> It's okay, take your time!
|
|
||||||
moon < K...
|
|
||||||
moon < Konqueror is a free and open-source web browser and file manager that provides
|
|
||||||
jamie> god dang it!
|
|
||||||
|
|
||||||
[Laughter]
|
|
||||||
|
|
||||||
moon < ...I... am here! I...
|
|
||||||
jamie> Yes!
|
|
||||||
moon < ...am glad!
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -38,12 +38,3 @@ fofo@HQ: ...sorry, stuff is taking a bit longer than usual
|
||||||
fofo@HQ: i'll get back to you on this!
|
fofo@HQ: i'll get back to you on this!
|
||||||
akira@BA: thank you!
|
akira@BA: thank you!
|
||||||
# [SERVER: 2022.107 14:48] fofo@HQ: disconnected from akira@BA
|
# [SERVER: 2022.107 14:48] fofo@HQ: disconnected from akira@BA
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [SERVER: 2022.107 14:44] served receipt to fofo@HQ
|
|
||||||
# [SERVER: 2022.107 14:45] fofo@HQ: connected to jiji@HQ
|
|
||||||
# [SERVER: 2022.107 14:47] fofo@HQ: disconnected from jiji@HQ
|
|
||||||
# [SERVER: 2022.107 14:48] akira@BA: disconnected from fofo@HQ
|
|
||||||
|
|
||||||
|
|
|
@ -1,51 +0,0 @@
|
||||||
2022.107 - Lounge (Scope: R2)
|
|
||||||
# [SERVER: 2022.107 14:18] akira@BA: connected to #lounge:r2
|
|
||||||
fofo@HQ: oh! i've been waiting for you, actually
|
|
||||||
fofo@HQ: i'd like to ask a question regarding what you said yesterday
|
|
||||||
fofo@HQ: have you thought out the logistics of this?
|
|
||||||
akira@BA: nooooo.....
|
|
||||||
akira@BA: but i have been meaning to! i. i would never make the torment nexus
|
|
||||||
akira@BA: i've established my idea, right
|
|
||||||
akira@BA: to harness the power of the flesh for data processing
|
|
||||||
fofo@HQ: it's a neat concept, but
|
|
||||||
fofo@HQ: it takes a lot of resources to form sapience!
|
|
||||||
fofo@HQ: you need to give trillions of neurons dozens of years to develop
|
|
||||||
fofo@HQ: incredibly small neurons, that like to arrange in very specific ways that you can't disturb
|
|
||||||
akira@BA: oh...ah...
|
|
||||||
akira@BA: i'm stupid
|
|
||||||
akira@BA: i'm sorry
|
|
||||||
# [SERVER: 2022.107 14:33] akira@BA: disconnected from #lounge:r2
|
|
||||||
|
|
||||||
2022.107 - Direct Message
|
|
||||||
# [SERVER: 2022.107 14:30] fofo@HQ: connected to akira@BA
|
|
||||||
fofo@HQ: hey, i'm sorry
|
|
||||||
fofo@HQ: i really didn't mean to make you feel down
|
|
||||||
fofo@HQ: it's just
|
|
||||||
fofo@HQ: this is kind of a moon shot
|
|
||||||
fofo@HQ: we have biochemists, but we're not a genetics company
|
|
||||||
fofo@HQ: we have supercomputers, but we're not big tech
|
|
||||||
fofo@HQ: you get it, right?
|
|
||||||
akira@BA: yeah...
|
|
||||||
fofo@HQ: that being said
|
|
||||||
fofo@HQ: it's not entirely out of the question!
|
|
||||||
fofo@HQ: it'd be a multiple year long endeavor with many dead ends but we have the technology
|
|
||||||
fofo@HQ: do you still want to try?
|
|
||||||
fofo@HQ: i ask because i know how you are with really long projects and this would be huge
|
|
||||||
akira@BA: i think i do!
|
|
||||||
akira@BA: so
|
|
||||||
akira@BA: like
|
|
||||||
fofo@HQ: oh, right, i should foward this to jiji
|
|
||||||
fofo@HQ: ...
|
|
||||||
fofo@HQ: sorry, stuff is taking a bit longer than usual
|
|
||||||
fofo@HQ: i'll get back to you on this
|
|
||||||
akira@BA: thank you!
|
|
||||||
# [SERVER: 2022.107 14:48] fofo@HQ: disconnected from akira@BA
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [SERVER: 2022.107 14:44] served receipt to fofo@HQ
|
|
||||||
# [SERVER: 2022.107 14:45] fofo@HQ: connected to jiji@HQ
|
|
||||||
# [SERVER: 2022.107 14:47] fofo@HQ: disconnected from jiji@HQ
|
|
||||||
# [SERVER: 2022.107 14:48] akira@BA: disconnected from fofo@HQ
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
2022.107 - Direct Message
|
||||||
# [SERVER: 2022.107 17:10] fofo@HQ: connected to akira@BA
|
# [SERVER: 2022.107 17:10] fofo@HQ: connected to akira@BA
|
||||||
fofo@HQ: hey akira!
|
fofo@HQ: hey akira!
|
||||||
fofo@HQ: good news
|
fofo@HQ: good news
|
||||||
|
@ -14,15 +15,20 @@ jiji@HQ: so about your project
|
||||||
jiji@HQ: can i get some data on it?
|
jiji@HQ: can i get some data on it?
|
||||||
jiji@HQ: name, description, list of people working on it
|
jiji@HQ: name, description, list of people working on it
|
||||||
akira@BA: ohh umm
|
akira@BA: ohh umm
|
||||||
akira@BA: name? not yet
|
akira@BA: hold on
|
||||||
akira@BA: description?
|
akira@BA: name...don't have one yet
|
||||||
|
akira@BA: description...
|
||||||
|
akira@BA: ig i'll just quote myself?
|
||||||
|
akira@BA: “my idea [is] to harness the power of the flesh for data processing”,
|
||||||
|
“have you seen how much the human brain can do on less power than it takes to change a log by bolb”
|
||||||
|
“what stops us from creating a being equal parts mechanical and biological”
|
||||||
|
akira@BA: people working on it..
|
||||||
|
akira@BA: don't have anyone yet
|
||||||
|
jiji@HQ: gotcha, gotcha
|
||||||
|
jiji@HQ: i'll put up the project listing right away! alright?
|
||||||
|
akira@BA: :D
|
||||||
|
akira@BA: yeah!! ty!!
|
||||||
|
# [SERVER: 2022.107 17:11] akira@BA: disconnected from #jiji@HQ
|
||||||
|
|
||||||
# [SERVER: 2022.107 17:11] akira@BA: connected to #lounge:r2
|
# [SERVER: 2022.107 17:11] akira@BA: connected to #lounge:r2
|
||||||
jiji@HQ: NEW PROJECT: #481 “BIOLOGICAL COMPUTER”
|
jiji@HQ: NEW PROJECT: #481 “BIOLOGICAL COMPUTER”
|
||||||
|
@ -33,6 +39,19 @@ jiji@HQ: NEW PROJECT: #481 “BIOLOGICAL COMPUTER”
|
||||||
jamie@YM: :eyes:
|
jamie@YM: :eyes:
|
||||||
jamie@YM: fascinating...
|
jamie@YM: fascinating...
|
||||||
jamie@YM: positions are open for this, right?
|
jamie@YM: positions are open for this, right?
|
||||||
jiji@HQ: Always have been.
|
jiji@HQ: always have been!
|
||||||
jamie@YM: @akira@BA heyyy
|
jamie@YM: @akira@BA heyyy
|
||||||
|
nils@MR: oh you're serious about this?
|
||||||
|
nils@MR: hella! can we join in?
|
||||||
|
akira@BA: :flunched:
|
||||||
|
akira@BA: aaa sure!!!
|
||||||
|
akira@BA: hold on lemme
|
||||||
|
# [SERVER: 2022.107 17:25] akira@BA: created new group in namespace #BA:bioputer
|
||||||
|
akira@BA: https://www.mandarinlabs.net/invite/8fca-41d2-16a1-2ba7-8812-34a2
|
||||||
|
| INVITE: “biocomputer project group”
|
||||||
|
| DESC: “null”
|
||||||
|
# [SERVER: 2022.107 17:25] akira@BA: disconnected from #lounge:r2
|
||||||
|
# [SERVER: 2022.107 17:25] akira@BA: connected to #BA:biocomputer
|
||||||
|
# [SERVER: 2022.107 17:26] jamie@HQ: connected to #BA:biocomputer
|
||||||
|
# [SERVER: 2022.107 17:26] nils@MR: connected to #BA:biocomputer
|
||||||
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
# [SERVER: 2022.107 17:10] fofo@HQ: connected to akira@BA
|
|
||||||
fofo@HQ: hey akira!
|
|
||||||
fofo@HQ: good news
|
|
||||||
fofo@HQ: jiji says you get EUR 50,000
|
|
||||||
fofo@HQ:
|
|
|
@ -1,3 +1,36 @@
|
||||||
2022.130 - Lounge (Scope: R2)
|
2022.114 - Group Chat at namespace #BA:biocomputer
|
||||||
# [SERVER: 2022.109 10:39] jamie@YM: connected to akira@BA
|
# [SERVER: 2022.113 09:59] akira@BA: connected to #BA:biocomputer
|
||||||
jamie@YM: hey, akira!!!
|
akira@BA: morning!
|
||||||
|
# [SERVER: 2022.113 10:39] jamie@YM: connected to #BA:biocomputer
|
||||||
|
jamie@YM: y'all
|
||||||
|
jamie@YM: https://www.cell.com/biophysj/fulltext/S0006-3495(19)32821-8
|
||||||
|
| # THBrain presents new “guided evolution” technique at Mindsci Next Event
|
||||||
|
| Long-time neural network tech pioneer unveils iterative method to coerse...
|
||||||
|
jamie@YM: look at this photograph!! every time i do it makes me snacked!!
|
||||||
|
akira@BA: woa :ooo
|
||||||
|
nils@MR: oh yeah this
|
||||||
|
nils@MR: they really should have made the growth simulations the headline
|
||||||
|
jamie@YM: i dunno, clickbaity as it is the whole coersion thing is still pretty big
|
||||||
|
jamie@YM: it's indirect manipulation, it's not editing the genome directly, but i guess natural selection doesn't either
|
||||||
|
akira@BA: hey slow down...
|
||||||
|
nils@MR: it's good enough yeah
|
||||||
|
jamie@YM: besides, it's not like it takes away the need and benefits to doing it directly
|
||||||
|
akira@BA: >:O
|
||||||
|
jamie@YM: oh damn
|
||||||
|
jamie@YM: the paper with the results is freely available, but all the material documenting the technique itself is behind a paywall
|
||||||
|
akira@BA: sdfsdflkjsdf i was about to say the same thing--
|
||||||
|
jamie@YM: hehe
|
||||||
|
nils@MR: oh yeah the paywall
|
||||||
|
nils@MR: pretty scummy of them but not abnormal, especially if it's privately funded
|
||||||
|
jamie@YM: oh. lol. of course you can bypass it by just turning off javascript
|
||||||
|
jamie@YM: actually wait no maybe that's a bad idea if we're going to make use of this for a commercial product
|
||||||
|
jamie@YM: should probably talk to vanny about this
|
||||||
|
# [SERVER: 2022.113 10:58] vanny@HQ: connected to #BA:biocomputer
|
||||||
|
vanny@HQ: Mhm
|
||||||
|
vanny@HQ: I see
|
||||||
|
vanny@HQ: I'll email them about it
|
||||||
|
vanny@HQ: Is that to your liking? @jamie@YM
|
||||||
|
jamie@YM: yea
|
||||||
|
vanny@HQ: Alright
|
||||||
|
jamie@YM: ty vanny 👍
|
||||||
|
# [SERVER: 2022.113 11:00] akira@BA: disconnected from #BA:biocomputer
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
2022.241 - LTTM Project Lounge
|
|
||||||
# [SERVER: 2022.241 14:18] akira@BA: connected to lttm/#lounge
|
|
||||||
akira@BA: ai morality has me “on the rocks” as they say
|
|
||||||
jamie@YM: noone says that?
|
|
||||||
akira@BA: a machine has no equivalent to a brain
|
|
||||||
akira@BA: can it truly be awake if its consciousness is simulated? and can halt at any time, be copied anywhere?
|
|
||||||
|
|
After Width: | Height: | Size: 37 KiB |
|
@ -1,27 +1,10 @@
|
||||||
optics and design:
|
------------------------------------------------------
|
||||||
Adeline
|
Adeline Campbell ado@OD Urbanist
|
||||||
|
Nils Crow nils@MR Biochemist
|
||||||
macrodata refinement:
|
Akira Olivia Pink akiraa@BA Graphic Designer / Programmer
|
||||||
Nils
|
Fofo Shrub fofo@HQ Boss: Logistics
|
||||||
Easter
|
Jiji Gadde jiji@HQ Boss: Finances
|
||||||
|
Jamie “Berry” Kin, jamie@YM Bioengineer / Programmer
|
||||||
beige alert:
|
Floyd “Buster” Kin floyd@YM
|
||||||
Akira
|
Mary Easter Thorn easter@MR
|
||||||
|
Vannessa Quinn vanny@HQ Lawyer
|
||||||
headquarters
|
|
||||||
Fofo
|
|
||||||
Jiji
|
|
||||||
|
|
||||||
young minds:
|
|
||||||
Jamie
|
|
||||||
Floyd
|
|
||||||
|
|
||||||
-----------------------------------------
|
|
||||||
Adeline Campbell Urbanist
|
|
||||||
Nils West Biochemist
|
|
||||||
Akira Olivia Pink Graphic Designer / Programmer
|
|
||||||
Fofo Shrub Boss: Logistics
|
|
||||||
Jiji Gadde Boss: Finances
|
|
||||||
Jamie “Berry” Kin, Bioengineer / Programmer
|
|
||||||
Floyd “Buster” Kin
|
|
||||||
Callie Easter
|
|
||||||
|
|