Skip to content

Instantly share code, notes, and snippets.

html {
background-color: #444;
padding: 0 1em;
}
body {
background-color: #FFF;
font-family: monospace;
/*padding: 2em;*/
margin: 1em auto;
<html>
<head>
<title>Resume</title>
<style>
html{
background-color: #444;
padding: 0 1em;
}
body{
background-color: #FFF;
@aadeshere1
aadeshere1 / applications.css
Created June 19, 2016 05:21
Sass processed to css
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
html {
font-family: sans-serif;
/* 1 */
-ms-text-size-adjust: 100%;
<?php
date_default_timezone_set ( "Asia/Kathmandu" );
$time = time();
$actual_time = date('D d M Y @H:i:s',$time);
if(isset($_POST['logEntry'])){
$tempMem = $_POST['logEntry'];
$createFile = fopen('dailyLog.txt','a+');
$writeFile = fwrite($createFile, $actual_time.$tempMem);
echo 'Log has been successfully entered into your daily logbook';
}
<?php
date_default_timezone_set ( "Asia/Kathmandu" );
$time = time();
$actual_time = date('H:i:s',$time);
echo $actual_time;
if(isset($_POST['user'])){
$openfile = fopen("store.txt","a+");
fwrite($openfile,$rand.',');
}