Skip to content

Instantly share code, notes, and snippets.

View Sanokei's full-sized avatar
🥼
Mad scientist? No, I'm just disappointed.

Sano Sanokei

🥼
Mad scientist? No, I'm just disappointed.
View GitHub Profile
@Sanokei
Sanokei / ExNoto-Creation-Blog.md
Last active January 30, 2024 16:33
Blog post about my time making the ExNoto website.

I usually sketch my idea as one long scroll so I can get the user experience and how the user might feel when visiting the site. I took the liberty of breaking it down into digestible chunks so I am able to talk about the individual sections in detail.

If you would like to see the original, click here.

In total this project took 7 days, I had limited myself to a week. However I believe it could have benifited from more time.

My design process

First I come up with goals for what I want the website to have and what I want to show.

Notes

  • the room is dark, no light except from moon outside, so everything should be dark
  • if you could draw the color on different layers for the game assets that would make my life easier
  • for any more details about the jam in general look [here](https://itch.io/jam/ludwig-2023

Marketing

  • Game poster (you are working on it rn)
  • bubbly text "Coots: Bug Squasher" in the same text "Play" and "Credits" would be nice

Game Assets (please make these all seperate drawings)

Coots the cat Reference

@Sanokei
Sanokei / HeroLines.js
Created December 4, 2022 22:53
https://dschool.stanford.edu/ Has a cool background, here is the code for it. It requires a lot of webpacks for it to work and im lazy so i didnt add that.
/*hero line stuff ONLY (FIXME: NO WEBPACKS INJECTION)*/
(function(module, exports, __webpack_require__) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});

Logo_Banner

Table of Contents

The Bug trailer

By Sano 7/16/22
edited: 10/27/22
(special thanks to mark)


Bugs are everywhere – in games, in everyday software where they are played off as features, and in our own code.

@Sanokei
Sanokei / slidingPhotos.js
Created March 6, 2022 23:35
Part of the code for the sliding photos effect seen on the jazzpunk site (http://necrophonegames.com/jazzpunk/)
generateSideTiles();
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
// when background has finished loading...
$('#headerCacheImg').load(function() {
$('#headerBg').animate({
opacity:1
import discord
from discord.ext import commands
import asyncio
import time
import datetime
import json
import os
# Loads the config file
with open('config.json') as config_file:
#include <iostream>
using namespace std;
int main() {
int main(){
int table[6][6];
int row, col;
int odd_count = 0;
for (row = 0; row < 6; row++){
for (col = 0; col < 6; col++){
cout << "Enter a number: ";
cin >> table[row][col];
}
}