This file contains hidden or 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> | |
#include <stdlib.h> | |
// Copyright (c) 2016, SYZYGY-DEV333 | |
// All rights reserved. | |
// Licensed under SPL 1.0 [splicense.pen.io] | |
int menu(); | |
void lista_processos(); | |
void mata_processo_nome(); |
This file contains hidden or 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
#!/usr/bin/env python | |
# Polynomial Root Finder | |
# SYZYGY-DEV333 | |
# Apache 2.0 | |
step = 0.001 # smaller steps are more accurate, but slower | |
start = -10 # these parameters should be fine at -10 and 10 | |
stop = 10 | |
print "Python Polynomial Factoring" |
This file contains hidden or 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
#!/usr/bin/env python | |
# Polynomial Root Finder | |
# SYZYGY-DEV333 | |
# Apache 2.0 | |
print "Python Polynomial Root Finder" | |
print "Use '**' to mean '^'" | |
while 1 == 1: |