-
Change the release version in uname -a
-
Get Screenshots
-
Make Release in github releases
-
Make release in sourcefourge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygame #Python-game SDL Package | |
import sys #System Package | |
pygame.init() | |
width = 350 | |
height = 200 | |
white = (255, 64, 64) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
** 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 contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
** 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 |