Skip to content

Instantly share code, notes, and snippets.

View magmastonealex's full-sized avatar

Alex Roth magmastonealex

View GitHub Profile
<?php
$n = 0;
if(isset($_GET["n"])){
$n = $_GET["n"];
}
$r = 0;
$str = "";
if($n != 0){
for($i=1;$i<=$n;$i++){
This is a test of gistCMD!
<!-- saved from url=(0025)http://magmastone.net/CS/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Computer Science - Alex Roth</title>
<link href="./Computer Science - Alex Roth_files/css" rel="stylesheet" type="text/css">
<link href="./Computer Science - Alex Roth_files/index.css" rel="stylesheet" type="text/css">
<script src="./Computer Science - Alex Roth_files/jquery.min.js"></script>
<script src="./Computer Science - Alex Roth_files/index.js"></script>
<style type="text/css"></style></head>
<body style="background-color: rgb(204, 204, 204);">
<!-- saved from url=(0025)http://magmastone.net/CS/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Computer Science - Alex Roth</title>
<link href="./Computer Science - Alex Roth_files/css" rel="stylesheet" type="text/css">
<link href="./Computer Science - Alex Roth_files/index.css" rel="stylesheet" type="text/css">
<script src="./Computer Science - Alex Roth_files/jquery.min.js"></script>
<script src="./Computer Science - Alex Roth_files/index.js"></script>
<style type="text/css"></style></head>
<body style="background-color: rgb(204, 204, 204);">
<?php
for($i=0;$i<9;$i++){
echo "abc ";
}
?>
<?php
for($i=0;$i<9;$i++){
echo "xyz ";
}
?>
<?php
for($i=0;$i<9;$i++){
$x=$i+1;
echo "$x ";
}
?>
<?php
$alpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
for($i=0;$i<6;$i++){
$x=$alpha[$i];
echo "Item $x<br>";
}
?>
<?php
$n = 0;
if(isset($_GET["n"])){
$n = $_GET["n"];
}
$r = 0;
if($n != 0){
for($i=1;$i<=$n;$i++){
$r = $r + pow($i, 2);
<!-- saved from url=(0025)http://magmastone.net/CS/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Computer Science - Alex Roth</title>
<link href="./Computer Science - Alex Roth_files/css" rel="stylesheet" type="text/css">
<link href="./Computer Science - Alex Roth_files/index.css" rel="stylesheet" type="text/css">
<script src="./Computer Science - Alex Roth_files/jquery.min.js"></script>
<script src="./Computer Science - Alex Roth_files/index.js"></script>
<style type="text/css"></style></head>
<body style="background-color: rgb(204, 204, 204);">