Skip to content

Instantly share code, notes, and snippets.

View amanuel2's full-sized avatar

Aman amanuel2

View GitHub Profile
@amanuel2
amanuel2 / index.html
Created August 12, 2020 05:21
Spacy 404 with count up
<div class="container">
<div class="row">
<div class="xs-12 md-6 mx-auto">
<div id="countUp">
<div class="number" data-count="404">0</div>
<div class="text">Page not found</div>
<div class="text">This may not mean anything.</div>
<div class="text">I'm probably working on something that has blown up.</div>
</div>
</div>
package com.imatrix.web.controllers;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import pygame #Python-game SDL Package
import sys #System Package
pygame.init()
width = 350
height = 200
white = (255, 64, 64)

Things to do when making a release for BoneOS

  1. Change the release version in uname -a

  2. Get Screenshots

  3. Make Release in github releases

  4. Make release in sourcefourge

#/bin/sh
command_exists()
{
touch .temp.23 #tempFile
which $1 1> .temp.23
if grep "" .temp.23; then
echo COMMAND EXISTS
else
echo command DOSENT EXIST
#include <stdio.h>
int powk(int x, unsigned int y)
{
if( y == 0)
return 1;
else if (y%2 == 0)
return powk(x, y/2)*powk(x, y/2);
else
return x*powk(x, y/2)*powk(x, y/2);
#include <stdio.h>
int powk(int x, unsigned int y)
{
if( y == 0)
return 1;
else if (y%2 == 0)
return powk(x, y/2)*powk(x, y/2);
else
return x*powk(x, y/2)*powk(x, y/2);
void ftoa(float flt, int after_point)
{
int int_flt = (int) flt;
printf("%d" , int_flt);
printf(".");
int mut_ab = powk(10,after_point);
int after_point_flt = (int) (flt * mut_ab); //33314
int multiplier = 10 * (after_point-1);
/**
** This file is part of BoneOS.
**
** BoneOS is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
** BoneOS is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
/**
** This file is part of BoneOS.
**
** BoneOS is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
** BoneOS is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of