#auto_correct
Explore tagged Tumblr posts
a-v-j · 2 months ago
Note
I went through your list with all the characters, and I have a question. Who are: Jingleberry(swap!nass), Codeblue(corrupted!swap), Auto_correct and AJpamper(eros/link)? And what do they look like?
Jingleberry
Dude never had much screentime beside this doodle
Tumblr media
Code_blue
He's been around i think. Wandering aimlessly
Tumblr media
Ohohohoh, bout Auto_correct he's a running joke mostly found in the discord servers im in. He's described as glasses wearing auto!sans that messes up with my chat or helps with typos(when im drunk)
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
I got no drawing of him unfortunately
And last, Ajpamper
Tumblr media
Uh...eros and link's child that came outta nowhere
Tumblr media
26 notes · View notes
werk-t · 4 years ago
Photo
Tumblr media
#auto_correction https://www.instagram.com/p/CPDfWOFBe0G/?utm_medium=tumblr
0 notes
rollihuman · 2 years ago
Text
Kitematic error virtualbox not installed macbook
Tumblr media
#Kitematic error virtualbox not installed macbook install
#Kitematic error virtualbox not installed macbook update
#Kitematic error virtualbox not installed macbook download
You should now be able to access your Vagrant instance Ayans-MacBook-Pro:vagrant ayan$ vagrant ssh This brings the Vagrant instance up on Virtualbox Vagrant Instance If you seeĭefault: shared folder errors, please make sure the guest additions within theĭefault: virtual machine match the version of VirtualBox you have installed on => default: Checking for guest additions in VM.ĭefault: The guest additions on this VM do not match the installed version ofĭefault: VirtualBox! In most cases this is fine, but in rare cases it canĭefault: prevent things such as shared folders from working properly. Vagrant will automatically replaceĭefault: this with a newly generated keypair for better security.ĭefault: Inserting generated public key within guest.ĭefault: Removing insecure key from the guest if it's present.ĭefault: Key inserted! Disconnecting and reconnecting using new SSH key. This may take a few minutes.ĭefault: Vagrant insecure key detected. => default: Preparing network interfaces based on configuration.ĭefault: 22 (guest) => 2222 (host) (adapter 1) => default: Clearing any previously set network interfaces. => default: the NIC type using one of the methods below:
#Kitematic error virtualbox not installed macbook update
=> default: Ensure the guest is trusted to use this configuration or update => default: network adapter which is vulnerable in this version of VirtualBox. => default: current guest is configured to use an E1000 NIC type for a => default: vulnerability with the installed version of VirtualBox. => default: Vagrant has detected a configuration issue which exposes a => default: Checking if box 'hashicorp/precise64' is up to date. => default: Matching MAC address for NAT networking. => default: Importing base box 'hashicorp/precise64'. Since we already have Vagrant up (check out the Vagrant installation page in earlier blogs) we can now copy the file to a location we want to run Vagrant from and bring up the Vagrant instance Ayans-MacBook-Pro:vagrant ayan$ vagrant upīringing machine 'default' up with 'virtualbox' provider. # Expose the nomad api and ui to the hostĬonfig.vm.network "forwarded_port", guest: 4646, host: 4646, auto_correct: true
#Kitematic error virtualbox not installed macbook install
Sudo install /tmp/$Ĭonfig.vm.box = "bento/ubuntu-16.04" # 16.04 LTSĬonfig.vm.provision "shell", inline: $script, privileged: false The file looks like this – in case you want to modify or create your own Vagrant file # -*- mode: ruby -*. To test Nomad, we can use the Vagrant file provided by Hashicorp on this link Operator Provides cluster-level tools for Nomad operators Status Display the status output for a resourceĪcl Interact with ACL policies and tokensĪgent-info Display status information about the local agent Run Run a new job or update an existing job Now to check if the binary works, just fire it up! Ayans-MacBook-Pro:Logs ayan$ nomad Now just unzip and copy it Ayans-MacBook-Pro:Logs ayan$ sudo cp nomad /usr/local/bin/ So for my Mac, I just downloaded the binary from and copied the binary to the user path 1 ayan ayan 18M Dec 24 09:46 nomad_0.8.6_darwin_amd64.zip
#Kitematic error virtualbox not installed macbook download
Installation and getting started with Nomad is pretty simpleįor a Mac, just download the binary and copy it to your local path. Nomad is an infrastructure lifecycle management tool and differs from Terraform in that Terraform is more of a build/config/provisioning tool.
Tumblr media
1 note · View note
for-the-user · 7 years ago
Text
flask docker vagrant mac inceptions
First, some vagrant preparation stuff, cos I docker doesn't play well on mac.
$ vagrant up $ vagrant plugin install vagrant-vbguest $ vagrant ssh $ sudo apt-get install -y virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11 $ sudo apt-get install linux-image-extra-$(uname -r) linux-image-extra-virtual
The Vagrantfile I used looks like this.
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure(2) do |config| config.vm.provider :virtualbox do |provider| provider.check_guest_additions = false provider.functional_vboxsf = false provider.memory = 1024 provider.cpus = 1 end config.vm.define "pewpew" do |pewpew| pewpew.vm.box = "ubuntu/trusty64" pewpew.vm.box_check_update = false pewpew.vm.box_download_insecure = true pewpew.vm.network "private_network", ip: "192.168.50.14", netmask: "255.255.255.0" pewpew.vm.hostname = "pewpew.mydomain.com" pewpew.vm.network "forwarded_port", guest: 80, host: 8080, auto_correct: true# > /etc/fstab" pewpew.vm.provision :shell, inline: "echo vm.swappiness = 10 >> /etc/sysctl.conf && echo vm.vfs_cache_pressure = 50 >> /etc/sysctl.conf && sysctl -p" end config.ssh.username = "vagrant" config.ssh.pty = true config.vm.provision "shell" do |shell| shell.privileged = true shell.inline = "sudo sed -i '/tty/!s/mesg n/tty -s \\&\\& mesg n/' /root/.profile" end end
My /etc/hosts file contains this line:
192.168.50.14 pewpew.mydomain.com
My working directory on my mac looks like this:
$ tree . ├── Vagrantfile ├── app │   ├── Dockerfile │   ├── index.py │   └── pewpew.wsgi ├── db │   └── Dockerfile └── rp ├── Dockerfile └── site.conf
This directory is mounted into the Vagrant vm at /srv.
Let's go through each file:
--- /srv/app/Dockerfile --- FROM python:2.7 RUN pip install --no-cache-dir Flask==0.10.1 RUN pip install --no-cache-dir gunicorn==19.3.0 RUN pip install --no-cache-dir eventlet==0.17.4 RUN pip install --no-cache-dir pymongo==3.4.0 COPY index.py /app/ COPY pewpew.wsgi /app/ EXPOSE 5000 WORKDIR /app CMD ["gunicorn", "-k", "eventlet", "-b", "0.0.0.0:5000", "-w", "1", "index:app"] --- /srv/app/index.py --- import os from flask import Flask from pymongo import MongoClient app = Flask(__name__) db = "mongodb" client = MongoClient(db, 27017) @app.route("/") def hello(): try: server_info = client.server_info() db_names = client.database_names() client.close() return "Pew Pew!\n%s\n%s\n" % (server_info, db_names) except: return "Pew Pew! DB failing...\n" if __name__ == '__main__': app.run() --- /srv/app/pewpew.wsgi --- import sys PROJECT_DIR = '/app/' sys.path.append(PROJECT_DIR) from pewpew import app as application --- /srv/db/Dockerfile --- FROM mongo EXPOSE 27017 --- /srv/rp/Dockerfile --- FROM nginx COPY site.conf /etc/nginx/conf.d/site.conf EXPOSE 80 443 --- /srv/rp/Dockerfile --- server { listen 80; server_name pewpew.mydomain.com; access_log /var/log/nginx/nginx_access_myapp.log; error_log /var/log/nginx/nginx_error_myapp.log; location / { proxy_pass http://flaskapp:5000/; } }
Ok let's start. ssh into the vagrant box and check the kernel. To use docker you need 3.10+ or sum chit...
$ vagrant ssh $ uname -r 3.13.0-98-generic
Ok cool, install the docker daemon.
$ sudo curl -sSL https://get.docker.com/ | sh
Now let's build these images from the three Dockerfiles we have.
$ sudo docker build -t reverseproxy /srv/rp/ $ sudo docker build -t flaskapp /srv/app/ $ sudo docker build -t mongodb /srv/db/ $ docker images REPOSITORY TAG IMAGE ID CREATED SIZE reverseproxy latest fa2ead9fdb67 11 minutes ago 107MB flaskapp latest 48ce64a24bea About an hour ago 681MB nginx latest b8efb18f159b 12 days ago 107MB python 2.7 fa8e55b2235d 13 days ago 673MB mongo latest b39de1d79a53 13 days ago 359MB
Start the database container first.
$ docker run -d -e DB_PORT_27017_TCP_ADDR='0.0.0.0' -v /srv/db:/data -p 27017:27017 --name mongodb mongo $ docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES c610b1a11752 mongo "docker-entrypoint..." 3 seconds ago Up 1 second 0.0.0.0:27017->27017/tcp mongodb
Then start the flask application container.
$ docker run -d -p 5000:5000 --name flaskapp --link mongodb:mongodb flaskapp $ docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES ebf6ba70b2f8 flaskapp "gunicorn -k event..." 2 seconds ago Up 1 second 0.0.0.0:5000->5000/tcp flaskapp c610b1a11752 mongo "docker-entrypoint..." 24 seconds ago Up 23 seconds 0.0.0.0:27017->27017/tcp mongodb
Send a request to the app
$ curl http://127.0.0.1:5000 Pew Pew! {u'storageEngines': [u'devnull', u'ephemeralForTest', u'mmapv1', u'wiredTiger'], u'maxBsonObjectSize': 16777216, u'ok': 1.0, u'bits': 64, u'modules': [], u'openssl': {u'compiled': u'OpenSSL 1.0.1t 3 May 2016', u'running': u'OpenSSL 1.0.1t 3 May 2016'}, u'javascriptEngine': u'mozjs', u'version': u'3.4.6', u'gitVersion': u'c55eb86ef46ee7aede3b1e2a5d184a7df4bfb5b5', u'versionArray': [3, 4, 6, 0], u'debug': False, u'buildEnvironment': {u'cxxflags': u'-Woverloaded-virtual -Wno-maybe-uninitialized -std=c++11', u'cc': u'/opt/mongodbtoolchain/v2/bin/gcc: gcc (GCC) 5.4.0', u'linkflags': u'-pthread -Wl,-z,now -rdynamic -Wl,--fatal-warnings -fstack-protector-strong -fuse-ld=gold -Wl,--build-id -Wl,-z,noexecstack -Wl,--warn-execstack -Wl,-z,relro', u'distarch': u'x86_64', u'cxx': u'/opt/mongodbtoolchain/v2/bin/g++: g++ (GCC) 5.4.0', u'ccflags': u'-fno-omit-frame-pointer -fno-strict-aliasing -ggdb -pthread -Wall -Wsign-compare -Wno-unknown-pragmas -Winvalid-pch -Werror -O2 -Wno-unused-local-typedefs -Wno-unused-function -Wno-deprecated-declarations -Wno-unused-but-set-variable -Wno-missing-braces -fstack-protector-strong -fno-builtin-memcmp', u'target_arch': u'x86_64', u'distmod': u'debian81', u'target_os': u'linux'}, u'sysInfo': u'deprecated', u'allocator': u'tcmalloc'} [u'admin', u'local']
Nice! Now let's try with the nginx container.
$ docker run -d -p 80:80 --name reverseproxy --link flaskapp:flaskapp reverseproxy $ sudo docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 716f3c7c321c reverseproxy "nginx -g 'daemon ..." 1 second ago Up Less than a second 0.0.0.0:80->80/tcp, 443/tcp reverseproxy ebf6ba70b2f8 flaskapp "gunicorn -k event..." 19 seconds ago Up 18 seconds 0.0.0.0:5000->5000/tcp flaskapp c610b1a11752 mongo "docker-entrypoint..." 41 seconds ago Up 39 seconds 0.0.0.0:27017->27017/tcp mongodb
Send a request to the nginx vhost.
$ curl http://127.0.0.1/ Pew Pew! {u'storageEngines': [u'devnull', u'ephemeralForTest', u'mmapv1', u'wiredTiger'], u'maxBsonObjectSize': 16777216, u'ok': 1.0, u'bits': 64, u'modules': [], u'openssl': {u'compiled': u'OpenSSL 1.0.1t 3 May 2016', u'running': u'OpenSSL 1.0.1t 3 May 2016'}, u'javascriptEngine': u'mozjs', u'version': u'3.4.6', u'gitVersion': u'c55eb86ef46ee7aede3b1e2a5d184a7df4bfb5b5', u'versionArray': [3, 4, 6, 0], u'debug': False, u'buildEnvironment': {u'cxxflags': u'-Woverloaded-virtual -Wno-maybe-uninitialized -std=c++11', u'cc': u'/opt/mongodbtoolchain/v2/bin/gcc: gcc (GCC) 5.4.0', u'linkflags': u'-pthread -Wl,-z,now -rdynamic -Wl,--fatal-warnings -fstack-protector-strong -fuse-ld=gold -Wl,--build-id -Wl,-z,noexecstack -Wl,--warn-execstack -Wl,-z,relro', u'distarch': u'x86_64', u'cxx': u'/opt/mongodbtoolchain/v2/bin/g++: g++ (GCC) 5.4.0', u'ccflags': u'-fno-omit-frame-pointer -fno-strict-aliasing -ggdb -pthread -Wall -Wsign-compare -Wno-unknown-pragmas -Winvalid-pch -Werror -O2 -Wno-unused-local-typedefs -Wno-unused-function -Wno-deprecated-declarations -Wno-unused-but-set-variable -Wno-missing-braces -fstack-protector-strong -fno-builtin-memcmp', u'target_arch': u'x86_64', u'distmod': u'debian81', u'target_os': u'linux'}, u'sysInfo': u'deprecated', u'allocator': u'tcmalloc'} [u'admin', u'local']
Awesome, we can also go to our http://pewpew.mydomain.com URL in a browser on our mac, as we have forwarded the port on our Vagrant box and added a local DNS entry in /etc/hosts remember?
0 notes
a-v-j · 2 years ago
Note
I remember seeing one a while back but do you have a list of the characters you made? Incase it updated or not
OK! so sanses i made! I actually recounted and my previous data was incorrect!
Variants, timesplits and AU sanses
Despair!sans Kings!sans BluError(error!swap) Lil!sans PGR!sans(which is PGR!Error now) Orange(underswappedswap!sans) Afterlife!sans Rune(fallen!sans) Oobleck(amalgamate!geno/failed!fatal) Mixmatch!sans Doodle!sans Afterfallen!sans Erryberry(error!swap) Lustfallen!sans Blackberry(fallenswap!sans) Embalm(reaper!ink) Femme_fatale(genderswap!fatal) Genderswap!sans Sanssanssans(omni!sans) Sans3D Doc(experimentale!sans) Exp(highschooltale!sans) Sanspool(marveltale!sans) Happy!sans Anti_error Nass Saturation Hue Brightness Jingleberry(swap!nass) Illusion(dtsf!nightmare) Delusion(dtsf!dream) Auto(avjverse!sans) Anime!sans Byte(anti_error!horror) Jailbreak(error!fell) Topie(auto_pilot/swap!auto) Link (lust!ink) Eros(lust!error) Matic(auto_matic/falsefell!auto) Corrupto(corrupted!auto/truefell!auto) Gremlin(error!swapfell) Evo(empireverse!auto) Orto(horror!auto) Narcissto(lust!auto) Averse(averse_auto/dust!auto) Shard(horror!glasses) Crofter(neworld!farm) Akills(auto_kill/killer!auto) Perink(peridot!ink) Erris(lapis!error) Hats(underhat!sans actually made by sans) Sansti Newworld!glasses Dusti(anti_error!dust) Nate(assasinate/anti_error!killer) Bubble(swap!anti) Vanti(empireverse!anti) Snap(therapist!swap) Codeblue(corrupted!swap) Edgermany(countrysans!fell) Japano(countrysans!geno) Fatalippines(countrysans!fatal) Amerrorca(countrysans!error) Drem(error!dream) Prismare(ink!nightmare) Autopsy(reaper!auto) Kiddo(neworld!auto) A.U.T.O Auto_correct Bleutooth(bluberry!auto) Cannibalust!sans
True and partial fusions!
Papercut(cross/ink) Mapjaper(anti/ink) AJpamper(eros/link) Coinkydink(ink and dream) Eiron(nightmare and error) Concord(eirene and dion) Discord(eiron and dink) Eirene(dream and error) Dionysus(nightmare and ink) Prism(prismare and ink)
Sans children and shipchildren
Sanriel(sans/toriel) Condiment(fell/rune) Lethal(fatal/reaper) Extinction(reaper/error) Mortality(fatal/geno) Corruption(fatal/error) Crinkles(ink/cross) Shortcut(error/classic) Incident(reaper/error) Accident(reaper/error) Eon(error/geno) Sage(geno/classic) Trojan(anti/eros) Savage(geno/fell) Quota(queri/auto) Rootkit(jailbreak/anti) Odium(hobo/bluerror) Acquire(queri/auto) Auri(auto/queri) TechnicalDifficulty(auto/anti) Minq(pinq/matic) Queto(auto/queri) Mistake(jailbreak/brigtness) Suicide(auto/reaper) Instakill(auto/reaper) Copie(cor/topie) Cally(auto/matic) Nighti(nigtmare/anti)
Papyri! Paperrors(error!swappaps) Ypaspur(nass's brother) Cyperus(auto's "brother") Swapyrus(snap's brother) Sigil(rune's brother) Roman(sansless au) Swappedswap!papyrus Tip(anti's brother) Spider-paps(sanspool's brother) Lil!paps
i written this one by on from files to ensure accurate info this time lol and also updated!
36 notes · View notes
a-v-j · 1 year ago
Note
lol at this rate who's still single XD
Many actually lol
But for the autos
Topie
Cor
Narci
Orto
A.U.T.O
Bleutooth
Neworld!autrio(auto,matic,topie as well as cor)
Auto_correct
Avarice(i suppose she doesn't count since she's averse back-up body)
Auto_prime
Averse
Akills
19 notes · View notes
a-v-j · 1 year ago
Note
Bro autocorrect is out for BLOOD on your blog oh my god lmao
All of those people that spelled Averse's name wrong because of autocorrect 😔
Auto_correct strikes again
All just to annoy averse, as it appears!
18 notes · View notes
a-v-j · 3 years ago
Note
How many characters do you have on this blog alone? Cus all of em are great, and with that said there’s so many-
prepare for a ride that's mostly consist of words and numbers
Classic Sans
1.Regular Classic
2.Classic Sans with no knowledge of AUs
3.Classic Sans with fusion kids
4.Fontcest Classic
5.Sans3D
6.Afterlife
7.Dust
8.Killer
9.Doodle
10.ExperimenTale!Sans
11.Hats
12.DeltaruneSans
13.Sansti
14.Sans3/Omni
Glasses
1.Regular!Glasses
2.NewWorld!Glasses
3.Shard
Horror
1.Badsans!horror
2.Destructeon!horror
3.Horror_Anti
Anti_Error Sans
1.Regular Anti
2.Plumey!Anti
3.Bubble
4.Byte
5.Bitti
6.Vanti
Swap Sans
1.Regular Swap
2.Star Sans Swap
3.Bluerror
4.Erryberry
5.Dad!Swap
6.Snap
7.Orange
9.Swap that became Nightmare’s lover
10.Blueberror
1.Code_Blue
Swapfell/Fellswap Sans
1.Swapfell
2.Gremlin
Fell Sans
1.Regular Fell
2.Fellcest Fell
3.Fell that became Rune’s lover
4.Jailbreak
5.EdGermany
Fallen Sans
1.Rune
2.AfterFallen
3.LustFallen
4.Blackberry
Geno Sans
1.Geno in a poly relationship with Error and Reaper
2.Geno in a happy family with Reaper and Goth
3.Queeno(Deceased)
4.CPAU Geno
5.Japano/Genopan
Fatal_Error
1.1stLoop!Fatal(MIA)
2.2ndLoop!Fatal
3.Oobleck
4.Fatalippines
7.Femme_Fatale
Error Sans
1.Recall
2.Redacted(Deceased)
3.Hobo
4.HQ!Error
5.Post_Error/MOE!Error
6.King Error
7.BadSanses Error
8.Eros
9.AmErrorca
10.Error that had PJ with StarSans Ink
11.PGR!Error
Dream Sans
1.StarSanses Dream
2.Delusion
3.Lil!Dream
4.DRem
Nightmare Sans
1.Bad Sanses Nightmare
a)Weak Nightmare
2.Illusion
3.Lil!Nightmare
4.NewWorldBoss!Nightmare
5.Prismare
Reaper Sans
1.Reaper in a polyrelationship with Error and Geno
2.Reaper in a happy family with Geno and Goth
Ink Sans
1.HQ!Ink
2.Squid
3.Stinky
4.Inx
5.Link
6.Uncle!Ink
AVJverse Sans
1.Auto
3.Topie
4.Matic
5.Corrupto
6.Teen!Corrupto
7.Averse
8.Bitto
9.Autrisk
10.Autopsy
11.Orto
12.Evo
13.Victorian!Auto
14.Narcissto
15.Kiddo
16.A.U.T.O
17.Auto_Correct(Concept)
18.Akills
19.Blue_tooth
Lust Sans
1.Regular Lust
2.CannibaLust
Fusions
2.Paperjam
3.Papercut
4.GEL
6.TechnicalDifficulty
7.Coinkydink
8.Eiron
9.Concord
10.Discord
11.Eirene
12.Dionysus
Cross
1.Cross 1.1
2.Xross
3.DestructEon!Cross
Sans # 0326216336 (1stPacifist Sans)(PurePacifist)
Sans # 0330216342 (Despair Sans)(No mercy Run)
Sans # 0409216200 (PostPacifistGenoSans)(PurePacifist then reset to Genocide)
Sans # 0502216114 (GenoSans)(Pure Genocide)
Sans # 0505216112 (Neutral Sans)(Save Papyrus Run)
Sans # 0510216237 (King Sans)
Sans # 0512216709 (SanzyFresh)
Sans # 0520216518 (Lil Sans)
Sans # 0530216125 (2ndPacifist Sans)(PurePacifist)
Sans # 0706216250 (3rdPacifist Sans)(SemiPostGenocide then reset to Pacifist
Sans # 0903216103 (FourthPacifistSans)(FinishedGenocide converted to Pacifist at still LVL 20
Sans # 1104216121 (M&M Sans)
Sans # 1212216531 (Underboob Sans)(DELETED)
Sans # 1216216654 (Doodle)
Sans # 0517217818 (Embalm)
Sans # 0821217859 (Genderswap Sans)
Sans # 0912217243(HSTale Sans)
Sans # 1003217430 (Sanspool)
Sans # 1031218111 (HappySans)
Sans # 1111218609 (AlterRuneSans)(DELETED)
Sans # 1112218904 (Nass)
Sans # 1125218255 (Sans3D)
Sans # 1125218265 (Sans2D)
Sans # 1216218095(Saturation)
Sans # 1216218106(Hue)
Sans # 1216218117(Brightness)
Sans # 0101219913 (Jingleberry)
Sans # 0124219123 (Template)
Sans # 0124219820 (Pale)
Sans # 0302219849 (AnimeSans-kun)
Sans # 0603219121 (Inquire)(TRANSFERED)
Sans # 0619219105 (Byte)
Sans # 0711219625 (Bitto)
AVJverse children
1.Sans # 0727216210 (Sanriel)(Sans/Toriel)(Child)
2.Sans # 0815217119 (Codeblue)(Fatal/Swap)(Fusion)
3.Sans # 0212218714 (Condiment)(Fell/Rune)(Child)
4.Sans # 1214218543 (Goth)(Death/Geno)(Child)
5.Sans # 1025218110 (Paperjam)(Error/Ink)(Fusion)
6.Sans # 1119218121 (Papercut)(Cross/Ink)(Fusion)
7.Sans # 1223218804 (Lethal)(Fatal/Death)(Codespawn)
8.Sans # 0104219115 (Extinction)(Death/Error)(Child)
9.Sans # 0108219810 (GEL)(Fusion)
10.Sans # 0129219107 (Mortality)(Fatal/Geno)(Codespawn)
11.Sans # 0129219108 (Corruption)(Fatal/Error)(Codespawn)
12.Sans # 0205219725 (Crinkles)(Ink/Cross)(Child)
13.Sans # 0304219715 (Shortcut)(Error/Classic)(Shipchild)
14.Sans # 0309219650 (Incident)(Death/Error)(Child)
15.Sans # 0309219651 (Accident)(Death/Error)(Child)
16.Sans # 0315219614 (Eon)(Error/Geno)(Child)
17.Sans # 0325219162 (Sage)(Geno/Classic)(Shipchild)
18.Sans # 0406219551 (Trojan)(Error/Anti)(Child)
19.Sans # 0415219221 (Savage)(Geno/Fell)(Shipchild)
20.Sans # 0424219121 (Oversight)(Anti/Classic)(Shipchild)
21.Sans # 0601219105 (Quota)(Queri/Auto)(Child)(established birthdate 11/16/19)
22.Sans # 0620219314 (RootKit)(Jailbreak/Anti)(Codespawn)
23.Sans # 0623219120 (Odium)(Error/Swap)(Codespawn)
24.Sans # 0629219105 (Acquire)(Queri/Auto)(Child)
25.Sans # 0724219190 (Auri)(Auto/Queri)(Child)
26.Sans # 0726219454 (BlueTooth)(Auto/Swap)(Fusion)
27.Sans # 0730219205 (TechnicalDifficulty)(Auto/Anti)(Codespawn)
28.Sans # 0815219190 (Minq)(Matic/Pinq)(Child)
29.Sans # 0905219111 (Kuro)(EV!Queri/EV!Auto)(Child)
30.Sans # 0930219210 (Queto)(Auto/Queri)(Child)
31.Sans # 1003219100 (CorruptedFile)(Anti/Anti)(Shipchild)
32.Sans # 1029219195 (Anit)(established birthdate 12/18/19)(Codespawn)
33.Sans # 1114219154 (Mistake)(Jailbreak/Brightness)(Codespawn)
34.Sans # 0126220128 (Suicide)(Auto/Death)(Shipchild)
35.Sans # 0128220717 (Instakill)(Auto/Death)(Shipchild)
36.Sans # 0204220142 (CoPilot)(Corrupto)(Child)
37.Sans # 1023221142 (MapJaper)(Shipchild)
38.Sans # 0310222945 (AJ Pamper)(Eros/Link)(Shipchild)
now for the papyruses
paperrors
ypaspur
cyperus
snap's brother
fallen!papyrus
roman
swappedswap!papyrus
tip_top
and the rest of the characters are history
youre welcome ;)
101 notes · View notes