├── .idea ├── WebsiteTest.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md └── websiteUsingBulma ├── .idea ├── misc.xml ├── modules.xml ├── vcs.xml ├── websiteUsingBulma.iml └── workspace.xml ├── About.html ├── ProjectSketches ├── Creature Creator │ ├── .gitattributes │ ├── .idea │ │ ├── AI-Learns-To-Walk-with-editor.iml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── AI learns to walk │ │ ├── ConnectionGene.js │ │ ├── ConnectionHistory.js │ │ ├── Node.js │ │ ├── Player.js │ │ ├── Population.js │ │ ├── Species.js │ │ ├── genome.js │ │ ├── sketch.js │ │ └── sounds │ │ │ ├── LazerSoundEffect.wav │ │ │ ├── burnedByLazer.mp3 │ │ │ ├── lazerShot.mp3 │ │ │ └── screamingSoundWithPause.wav │ ├── Body.js │ ├── Box2dGlobals.js │ ├── CompoundFixture.js │ ├── Creature creator │ │ ├── BodyImage.js │ │ ├── Button.js │ │ ├── ButtonCreationMethods │ │ │ ├── AdvancedButtons │ │ │ │ ├── AllowBodyCollisionsToggleButton.js │ │ │ │ ├── BasicOptionsButton.js │ │ │ │ ├── DeathUponFloorButton.js │ │ │ │ ├── EditShapeLayersButton.js │ │ │ │ ├── LimitJointsButton.js │ │ │ │ ├── ShapeCollisionsButton.js │ │ │ │ └── ShowJointLimitsToggleButton.js │ │ │ ├── ConstructionButton.js │ │ │ ├── CosmeticButtons │ │ │ │ ├── AddImagesToShapeButton.js │ │ │ │ ├── ChangeFillColorButton.js │ │ │ │ ├── DeleteImageButton.js │ │ │ │ ├── MoveResizeImageButton.js │ │ │ │ └── MoveRotateImageButton.js │ │ │ ├── CosmeticsButton.js │ │ │ ├── DefaultButtons │ │ │ │ ├── AddCircleButton.js │ │ │ │ ├── AddJointButton.js │ │ │ │ ├── AddPolygonButton.js │ │ │ │ ├── AddRectangleButton.js │ │ │ │ ├── AdvancedButton.js │ │ │ │ ├── CloneShapeButton.js │ │ │ │ ├── DeleteButton.js │ │ │ │ ├── FuseShapesButton.js │ │ │ │ ├── MoveResizeButton.js │ │ │ │ └── MoveRotateButton.js │ │ │ ├── EvolveButton.js │ │ │ ├── LearningButtons │ │ │ │ ├── DeathLazerSpeedValueButton.js │ │ │ │ ├── EditCreatureButton.js │ │ │ │ ├── MuteButton.js │ │ │ │ ├── NumberOfBatchesValueButton.js │ │ │ │ ├── PopulationSizeValueButton.js │ │ │ │ ├── ReplayEvolutionHighlightsButton.js │ │ │ │ ├── ReplayPopularSpeciesButton.js │ │ │ │ ├── SimulationSpeedValueButton.js │ │ │ │ └── SpeedUpWhenPlayersDieToggleButton.js │ │ │ ├── PlayPauseButton.js │ │ │ └── StopButton.js │ │ ├── ButtonManager.js │ │ ├── CommonColorsArray.js │ │ ├── CosmeticImages │ │ │ ├── CBHead.png │ │ │ ├── Hat 1.png │ │ │ ├── L eye 1.png │ │ │ ├── R eye 1.png │ │ │ ├── eyes1.png │ │ │ ├── face 1.png │ │ │ ├── face 10.png │ │ │ ├── face 2.png │ │ │ ├── face 3.png │ │ │ ├── face 4.png │ │ │ ├── face 5.png │ │ │ ├── face 6.png │ │ │ ├── face 7.png │ │ │ ├── face 8.png │ │ │ ├── face 9.png │ │ │ ├── mouth 1.png │ │ │ ├── mouth 2.png │ │ │ ├── mouth1.png │ │ │ ├── mustache 1.png │ │ │ └── mustache 2.png │ │ ├── Creature.js │ │ ├── HotBar.js │ │ ├── Instruction.js │ │ ├── MouseJoint.js │ │ ├── Warning.js │ │ ├── World.js │ │ └── sketch.js │ ├── Fixtures.js │ ├── Fonts │ │ ├── RobotoMono-Bold.ttf │ │ └── RobotoMono-Regular.ttf │ ├── Joints.js │ ├── README.md │ ├── creatureCreator.html │ ├── libraries │ │ ├── Box2d.js │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ ├── pics │ │ ├── ConveryerBeltSection.png │ │ ├── dangerFloor.png │ │ ├── floorTiles.png │ │ ├── lazerBurnGround3.png │ │ ├── mutedYellow.png │ │ ├── topImage.png │ │ └── unmutedYellow.png │ └── sketch.js ├── Hill Climb Racing │ ├── .gitattributes │ ├── Car.js │ ├── ConnectionGene.js │ ├── ConnectionHistory.js │ ├── Genome.js │ ├── Ground.js │ ├── Neat.js │ ├── Node.js │ ├── Person.js │ ├── Pics │ │ ├── CBHead2.png │ │ ├── CBHead3.png │ │ ├── car.png │ │ ├── darkness.png │ │ ├── grass.png │ │ ├── grass2.png │ │ ├── grass3.png │ │ ├── grass4.png │ │ ├── grass5.png │ │ ├── grass6.png │ │ ├── head.png │ │ ├── headLarge.png │ │ ├── sky.png │ │ ├── wheel.png │ │ └── wheel2.png │ ├── Player.js │ ├── PlayerOld.js │ ├── Population.js │ ├── README.md │ ├── Species.js │ ├── Wheel.js │ ├── World.js │ ├── hillClimbRacing.html │ └── sketch.js ├── MarbleCalculator │ ├── MarbleCalculator.html │ ├── Object.js │ ├── looseRect.js │ ├── marble.js │ ├── sketch.js │ ├── solid.js │ └── startingMarbles.js ├── WorldsHardestGame │ ├── WHG │ │ ├── Brain.js │ │ ├── Coin.js │ │ ├── Dot.js │ │ ├── Level1 │ │ │ ├── Brain.js │ │ │ ├── Dot.js │ │ │ ├── Node.js │ │ │ ├── Player.js │ │ │ ├── Population.js │ │ │ ├── Solid.js │ │ │ ├── Tile.js │ │ │ ├── assets │ │ │ │ └── DAB.png │ │ │ ├── level1.html │ │ │ ├── setting_level.js │ │ │ └── sketch.js │ │ ├── Level2 │ │ │ ├── Brain.js │ │ │ ├── Coin.js │ │ │ ├── Dot.js │ │ │ ├── Node.js │ │ │ ├── Player.js │ │ │ ├── Population.js │ │ │ ├── Solid.js │ │ │ ├── Tile.js │ │ │ ├── assets │ │ │ │ └── DAB.png │ │ │ ├── level2.html │ │ │ ├── setting_level.js │ │ │ └── sketch.js │ │ ├── Level3 │ │ │ ├── Brain.js │ │ │ ├── Coin.js │ │ │ ├── Dot.js │ │ │ ├── Node.js │ │ │ ├── Player.js │ │ │ ├── Population.js │ │ │ ├── Solid.js │ │ │ ├── Tile.js │ │ │ ├── assets │ │ │ │ └── DAB.png │ │ │ ├── level3.html │ │ │ ├── setting_level.js │ │ │ └── sketch.js │ │ ├── Level4 │ │ │ ├── PlayerLv4Final.js │ │ │ ├── level4.html │ │ │ └── setting_level4.js │ │ ├── Level5 │ │ │ ├── PlayerLv5Final.js │ │ │ ├── level5.html │ │ │ └── setting_level5.js │ │ ├── Level6 │ │ │ ├── PlayerLv6Final.js │ │ │ ├── level6.html │ │ │ └── setting_level6.js │ │ ├── Node.js │ │ ├── PlayerLv4.js │ │ ├── PlayerLv4PoolStrat.js │ │ ├── PlayerLv5.js │ │ ├── Population.js │ │ ├── Population2.js │ │ ├── Solid.js │ │ ├── Tile.js │ │ ├── assets │ │ │ └── DAB.png │ │ ├── localStyle.css │ │ ├── setting_level.js │ │ └── sketch.js │ ├── WHGprojects.html │ └── levelImages │ │ ├── level1.png │ │ ├── level2.png │ │ ├── level3.png │ │ ├── level4.png │ │ ├── level5.png │ │ └── level6.png ├── chess │ ├── Board.js │ ├── MinimaxFunctions.js │ ├── Piece.js │ ├── assets │ │ ├── 2000px-Chess_Pieces_Sprite_01.png │ │ ├── 2000px-Chess_Pieces_Sprite_02.png │ │ ├── 2000px-Chess_Pieces_Sprite_03.png │ │ ├── 2000px-Chess_Pieces_Sprite_04.png │ │ ├── 2000px-Chess_Pieces_Sprite_05.png │ │ ├── 2000px-Chess_Pieces_Sprite_06.png │ │ ├── 2000px-Chess_Pieces_Sprite_07.png │ │ ├── 2000px-Chess_Pieces_Sprite_08.png │ │ ├── 2000px-Chess_Pieces_Sprite_09.png │ │ ├── 2000px-Chess_Pieces_Sprite_10.png │ │ ├── 2000px-Chess_Pieces_Sprite_11.png │ │ └── 2000px-Chess_Pieces_Sprite_12.png │ ├── chess.html │ └── sketch.js └── flappyBird │ ├── ConnectionGene.js │ ├── ConnectionHistory.js │ ├── Genome.js │ ├── Ground.js │ ├── Node.js │ ├── Pipe.js │ ├── PipePair.js │ ├── Population.js │ ├── Species.js │ ├── flappyBird.html │ ├── images │ ├── Untitled-3.psd │ ├── background.png │ ├── bird.png │ ├── christmasberd.png │ ├── fatBird.png │ ├── full pipe bottom.png │ ├── full pipe top.png │ ├── groundPiece.png │ ├── photoshoip thing 1.psd │ ├── pipeHead0000.png │ └── shaft0000.png │ ├── player.js │ └── sketch.js ├── SnakeGame ├── .idea │ ├── SnakeGame.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── Apple.js ├── HamiltonianCycle.js ├── Path.js ├── Snake.js ├── s │ └── welcomeText.png └── sketch.js ├── fonts ├── bebas_neue │ ├── About.md │ ├── About.txt │ ├── BebasNeue-Regular.eot │ ├── BebasNeue-Regular.otf │ ├── BebasNeue-Regular.ttf │ ├── BebasNeue-Regular.woff │ ├── BebasNeue-Regular.woff2 │ ├── OFL-FAQ.txt │ ├── OFL.txt │ └── Try_BebasNeuePro.txt └── montserrat │ ├── Montserrat-Black.otf │ ├── Montserrat-BlackItalic.otf │ ├── Montserrat-Bold.otf │ ├── Montserrat-BoldItalic.otf │ ├── Montserrat-ExtraBold.otf │ ├── Montserrat-ExtraBoldItalic.otf │ ├── Montserrat-ExtraLight.otf │ ├── Montserrat-ExtraLightItalic.otf │ ├── Montserrat-Italic.otf │ ├── Montserrat-Light.otf │ ├── Montserrat-LightItalic.otf │ ├── Montserrat-Medium.otf │ ├── Montserrat-MediumItalic.otf │ ├── Montserrat-Regular.otf │ ├── Montserrat-SemiBold.otf │ ├── Montserrat-SemiBoldItalic.otf │ ├── Montserrat-Thin.otf │ ├── Montserrat-ThinItalic.otf │ ├── MontserratAlternates-Black.otf │ ├── MontserratAlternates-BlackItalic.otf │ ├── MontserratAlternates-Bold.otf │ ├── MontserratAlternates-BoldItalic.otf │ ├── MontserratAlternates-ExtraBold.otf │ ├── MontserratAlternates-ExtraBoldItalic.otf │ ├── MontserratAlternates-ExtraLight.otf │ ├── MontserratAlternates-ExtraLightItalic.otf │ ├── MontserratAlternates-Italic.otf │ ├── MontserratAlternates-Light.otf │ ├── MontserratAlternates-LightItalic.otf │ ├── MontserratAlternates-Medium.otf │ ├── MontserratAlternates-MediumItalic.otf │ ├── MontserratAlternates-Regular.otf │ ├── MontserratAlternates-SemiBold.otf │ ├── MontserratAlternates-SemiBoldItalic.otf │ ├── MontserratAlternates-Thin.otf │ ├── MontserratAlternates-ThinItalic.otf │ └── SIL Open Font License.txt ├── images ├── GlowingLogoWithName.png ├── Merch │ ├── 20bucks.png │ ├── Mug.png │ ├── banana.png │ ├── codeBulletsSoul.png │ ├── fireManCalender.png │ ├── laptop.png │ ├── puppy.png │ ├── sneakers.png │ └── sunglasses.png ├── Projects │ ├── chess.png │ ├── flappyBird.png │ ├── hillClimbRacing.png │ ├── marbleCalculator.png │ └── worldsHardestGame.png ├── code Bullet pose.png ├── dummyBackground.png ├── logo-glowing.png ├── logo-head-greenface.png ├── logo.png ├── logo2.png ├── logo3.png ├── logoHead.png └── snakeBackground.gif ├── index.html ├── libraries ├── Box2d.js ├── matter.js ├── p5.dom.js ├── p5.js └── p5.sound.js ├── merch.html ├── pageJs └── sketch.js ├── projectOld.html ├── projectSketch ├── dot.js ├── homeSketch.js └── images │ ├── chess.png │ ├── creatureCreator.png │ ├── flappyBird.png │ ├── hillClimbRacing.png │ ├── marbleCalculator.png │ └── worldsHardestGame.png ├── projects.html └── styles ├── debug.css └── navBarStyle.css /.idea/WebsiteTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/.idea/WebsiteTest.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WebsiteTest -------------------------------------------------------------------------------- /websiteUsingBulma/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/.idea/misc.xml -------------------------------------------------------------------------------- /websiteUsingBulma/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/.idea/modules.xml -------------------------------------------------------------------------------- /websiteUsingBulma/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/.idea/vcs.xml -------------------------------------------------------------------------------- /websiteUsingBulma/.idea/websiteUsingBulma.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/.idea/websiteUsingBulma.iml -------------------------------------------------------------------------------- /websiteUsingBulma/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/.idea/workspace.xml -------------------------------------------------------------------------------- /websiteUsingBulma/About.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/About.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/.gitattributes -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/.idea/AI-Learns-To-Walk-with-editor.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/.idea/AI-Learns-To-Walk-with-editor.iml -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/.idea/misc.xml -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/.idea/modules.xml -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/.idea/vcs.xml -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/.idea/workspace.xml -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/ConnectionGene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/ConnectionGene.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/ConnectionHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/ConnectionHistory.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Node.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Player.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Population.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Species.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/Species.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/genome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/genome.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/LazerSoundEffect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/LazerSoundEffect.wav -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/burnedByLazer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/burnedByLazer.mp3 -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/lazerShot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/lazerShot.mp3 -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/screamingSoundWithPause.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/AI learns to walk/sounds/screamingSoundWithPause.wav -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Body.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Box2dGlobals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Box2dGlobals.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/CompoundFixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/CompoundFixture.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/BodyImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/BodyImage.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Button.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/AllowBodyCollisionsToggleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/AllowBodyCollisionsToggleButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/BasicOptionsButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/BasicOptionsButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/DeathUponFloorButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/DeathUponFloorButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/EditShapeLayersButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/EditShapeLayersButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/LimitJointsButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/LimitJointsButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/ShapeCollisionsButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/ShapeCollisionsButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/ShowJointLimitsToggleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/AdvancedButtons/ShowJointLimitsToggleButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/ConstructionButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/ConstructionButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/AddImagesToShapeButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/AddImagesToShapeButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/ChangeFillColorButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/ChangeFillColorButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/DeleteImageButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/DeleteImageButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/MoveResizeImageButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/MoveResizeImageButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/MoveRotateImageButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticButtons/MoveRotateImageButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticsButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/CosmeticsButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddCircleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddCircleButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddJointButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddJointButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddPolygonButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddPolygonButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddRectangleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AddRectangleButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AdvancedButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/AdvancedButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/CloneShapeButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/CloneShapeButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/DeleteButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/DeleteButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/FuseShapesButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/FuseShapesButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/MoveResizeButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/MoveResizeButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/MoveRotateButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/DefaultButtons/MoveRotateButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/EvolveButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/EvolveButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/DeathLazerSpeedValueButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/DeathLazerSpeedValueButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/EditCreatureButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/EditCreatureButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/MuteButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/MuteButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/NumberOfBatchesValueButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/NumberOfBatchesValueButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/PopulationSizeValueButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/PopulationSizeValueButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/ReplayEvolutionHighlightsButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/ReplayEvolutionHighlightsButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/ReplayPopularSpeciesButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/ReplayPopularSpeciesButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/SimulationSpeedValueButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/SimulationSpeedValueButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/SpeedUpWhenPlayersDieToggleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/LearningButtons/SpeedUpWhenPlayersDieToggleButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/PlayPauseButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/PlayPauseButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/StopButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonCreationMethods/StopButton.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/ButtonManager.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CommonColorsArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CommonColorsArray.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/CBHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/CBHead.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/Hat 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/Hat 1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/L eye 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/L eye 1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/R eye 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/R eye 1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/eyes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/eyes1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 10.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 2.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 3.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 4.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 5.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 6.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 7.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 8.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/face 9.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mouth 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mouth 1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mouth 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mouth 2.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mouth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mouth1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mustache 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mustache 1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mustache 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/CosmeticImages/mustache 2.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Creature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Creature.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/HotBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/HotBar.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Instruction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Instruction.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/MouseJoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/MouseJoint.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/Warning.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/World.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Creature creator/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Fixtures.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Fonts/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Fonts/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/Joints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/Joints.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/README.md: -------------------------------------------------------------------------------- 1 | # AI Learns To Walk with editor 2 | -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/creatureCreator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/creatureCreator.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/libraries/Box2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/libraries/Box2d.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/libraries/p5.dom.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/libraries/p5.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/libraries/p5.sound.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/pics/ConveryerBeltSection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/pics/ConveryerBeltSection.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/pics/dangerFloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/pics/dangerFloor.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/pics/floorTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/pics/floorTiles.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/pics/lazerBurnGround3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/pics/lazerBurnGround3.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/pics/mutedYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/pics/mutedYellow.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/pics/topImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/pics/topImage.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/pics/unmutedYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/pics/unmutedYellow.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Creature Creator/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Creature Creator/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/.gitattributes -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Car.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/ConnectionGene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/ConnectionGene.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/ConnectionHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/ConnectionHistory.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Genome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Genome.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Ground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Ground.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Neat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Neat.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Node.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Person.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/CBHead2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/CBHead2.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/CBHead3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/CBHead3.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/car.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/darkness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/darkness.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass2.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass3.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass4.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass5.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/grass6.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/head.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/headLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/headLarge.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/sky.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/wheel.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/wheel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Pics/wheel2.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Player.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/PlayerOld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/PlayerOld.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Population.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/README.md: -------------------------------------------------------------------------------- 1 | # Hill Climb Racing AI 2 | -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Species.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Species.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/Wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/Wheel.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/World.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/hillClimbRacing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/hillClimbRacing.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/Hill Climb Racing/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/Hill Climb Racing/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/MarbleCalculator/MarbleCalculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/MarbleCalculator/MarbleCalculator.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/MarbleCalculator/Object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/MarbleCalculator/Object.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/MarbleCalculator/looseRect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/MarbleCalculator/looseRect.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/MarbleCalculator/marble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/MarbleCalculator/marble.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/MarbleCalculator/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/MarbleCalculator/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/MarbleCalculator/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/MarbleCalculator/solid.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/MarbleCalculator/startingMarbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/MarbleCalculator/startingMarbles.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Brain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Brain.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Coin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Coin.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Dot.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Brain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Brain.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Dot.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Node.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Player.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Population.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Solid.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/Tile.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/assets/DAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/assets/DAB.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/level1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/level1.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/setting_level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/setting_level.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level1/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Brain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Brain.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Coin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Coin.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Dot.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Node.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Player.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Population.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Solid.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/Tile.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/assets/DAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/assets/DAB.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/level2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/level2.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/setting_level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/setting_level.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level2/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Brain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Brain.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Coin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Coin.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Dot.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Node.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Player.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Population.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Solid.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/Tile.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/assets/DAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/assets/DAB.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/level3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/level3.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/setting_level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/setting_level.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level3/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level4/PlayerLv4Final.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level4/PlayerLv4Final.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level4/level4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level4/level4.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level4/setting_level4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level4/setting_level4.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level5/PlayerLv5Final.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level5/PlayerLv5Final.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level5/level5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level5/level5.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level5/setting_level5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level5/setting_level5.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level6/PlayerLv6Final.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level6/PlayerLv6Final.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level6/level6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level6/level6.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level6/setting_level6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Level6/setting_level6.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Node.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/PlayerLv4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/PlayerLv4.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/PlayerLv4PoolStrat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/PlayerLv4PoolStrat.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/PlayerLv5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/PlayerLv5.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Population.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Population2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Population2.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Solid.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/Tile.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/assets/DAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/assets/DAB.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/localStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/localStyle.css -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/setting_level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/setting_level.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHG/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHGprojects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/WHGprojects.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level1.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level2.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level3.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level4.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level5.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/WorldsHardestGame/levelImages/level6.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/Board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/Board.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/MinimaxFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/MinimaxFunctions.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/Piece.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/Piece.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_01.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_02.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_03.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_04.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_05.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_06.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_07.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_08.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_09.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_10.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_11.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/assets/2000px-Chess_Pieces_Sprite_12.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/chess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/chess.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/chess/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/chess/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/ConnectionGene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/ConnectionGene.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/ConnectionHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/ConnectionHistory.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/Genome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/Genome.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/Ground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/Ground.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/Node.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/Pipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/Pipe.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/PipePair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/PipePair.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/Population.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/Population.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/Species.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/Species.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/flappyBird.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/flappyBird.html -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/Untitled-3.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/Untitled-3.psd -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/background.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/bird.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/christmasberd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/christmasberd.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/fatBird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/fatBird.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/full pipe bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/full pipe bottom.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/full pipe top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/full pipe top.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/groundPiece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/groundPiece.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/photoshoip thing 1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/photoshoip thing 1.psd -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/pipeHead0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/pipeHead0000.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/images/shaft0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/images/shaft0000.png -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/player.js -------------------------------------------------------------------------------- /websiteUsingBulma/ProjectSketches/flappyBird/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/ProjectSketches/flappyBird/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/.idea/SnakeGame.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/.idea/SnakeGame.iml -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/.idea/misc.xml -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/.idea/modules.xml -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/.idea/vcs.xml -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/.idea/workspace.xml -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/Apple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/Apple.js -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/HamiltonianCycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/HamiltonianCycle.js -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/Path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/Path.js -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/Snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/Snake.js -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/s/welcomeText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/s/welcomeText.png -------------------------------------------------------------------------------- /websiteUsingBulma/SnakeGame/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/SnakeGame/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/About.md -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/About.txt -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.eot -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.ttf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.woff -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/BebasNeue-Regular.woff2 -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/OFL-FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/OFL-FAQ.txt -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/OFL.txt -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/bebas_neue/Try_BebasNeuePro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/bebas_neue/Try_BebasNeuePro.txt -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-Black.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-BlackItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-Bold.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-BoldItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-ExtraBold.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-ExtraLight.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-ExtraLightItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-Italic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-Light.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-LightItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-Medium.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-MediumItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-Regular.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-SemiBold.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-SemiBoldItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-Thin.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/Montserrat-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/Montserrat-ThinItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-Black.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-BlackItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-Bold.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-BoldItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraBold.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraBoldItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraLight.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-ExtraLightItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-Italic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-Light.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-LightItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-Medium.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-MediumItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-Regular.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-SemiBold.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-SemiBoldItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-Thin.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/MontserratAlternates-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/MontserratAlternates-ThinItalic.otf -------------------------------------------------------------------------------- /websiteUsingBulma/fonts/montserrat/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/fonts/montserrat/SIL Open Font License.txt -------------------------------------------------------------------------------- /websiteUsingBulma/images/GlowingLogoWithName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/GlowingLogoWithName.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/20bucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/20bucks.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/Mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/Mug.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/banana.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/codeBulletsSoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/codeBulletsSoul.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/fireManCalender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/fireManCalender.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/laptop.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/puppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/puppy.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/sneakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/sneakers.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Merch/sunglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Merch/sunglasses.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Projects/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Projects/chess.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Projects/flappyBird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Projects/flappyBird.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Projects/hillClimbRacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Projects/hillClimbRacing.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Projects/marbleCalculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Projects/marbleCalculator.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/Projects/worldsHardestGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/Projects/worldsHardestGame.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/code Bullet pose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/code Bullet pose.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/dummyBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/dummyBackground.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/logo-glowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/logo-glowing.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/logo-head-greenface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/logo-head-greenface.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/logo.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/logo2.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/logo3.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/logoHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/logoHead.png -------------------------------------------------------------------------------- /websiteUsingBulma/images/snakeBackground.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/images/snakeBackground.gif -------------------------------------------------------------------------------- /websiteUsingBulma/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/index.html -------------------------------------------------------------------------------- /websiteUsingBulma/libraries/Box2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/libraries/Box2d.js -------------------------------------------------------------------------------- /websiteUsingBulma/libraries/matter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/libraries/matter.js -------------------------------------------------------------------------------- /websiteUsingBulma/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/libraries/p5.dom.js -------------------------------------------------------------------------------- /websiteUsingBulma/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/libraries/p5.js -------------------------------------------------------------------------------- /websiteUsingBulma/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/libraries/p5.sound.js -------------------------------------------------------------------------------- /websiteUsingBulma/merch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/merch.html -------------------------------------------------------------------------------- /websiteUsingBulma/pageJs/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/pageJs/sketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/projectOld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectOld.html -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/dot.js -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/homeSketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/homeSketch.js -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/images/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/images/chess.png -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/images/creatureCreator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/images/creatureCreator.png -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/images/flappyBird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/images/flappyBird.png -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/images/hillClimbRacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/images/hillClimbRacing.png -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/images/marbleCalculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/images/marbleCalculator.png -------------------------------------------------------------------------------- /websiteUsingBulma/projectSketch/images/worldsHardestGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projectSketch/images/worldsHardestGame.png -------------------------------------------------------------------------------- /websiteUsingBulma/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/projects.html -------------------------------------------------------------------------------- /websiteUsingBulma/styles/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/styles/debug.css -------------------------------------------------------------------------------- /websiteUsingBulma/styles/navBarStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Bullet/WebsiteTest/HEAD/websiteUsingBulma/styles/navBarStyle.css --------------------------------------------------------------------------------