Skip to content

Instantly share code, notes, and snippets.

View whichbuffer's full-sized avatar
:octocat:
Focusing

Arda Büyükkaya whichbuffer

:octocat:
Focusing
View GitHub Profile
@whichbuffer
whichbuffer / keybase.md
Created August 26, 2018 10:59
Keybase proof

Keybase proof

I hereby claim:

  • I am ardabuyukkayamov on github.
  • I am ardabuyukkaya (https://keybase.io/ardabuyukkaya) on keybase.
  • I have a public key ASARaBem3GE--WlVlBiTYv3bvJh4a-wAu9Mo9Laqg1Pdswo

To claim this, I am signing this object:

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>
@whichbuffer
whichbuffer / index.html
Created September 10, 2018 18:57
YouTube Fullscreen Background Dem
<head>
<link rel="stylesheet" type="text/css" href="css/test.css"> <!-- css file -->
</head>
<div class="video-background">
<div class="video-foreground">
<iframe src="https://www.youtube.com/embed/TM6pwiNSKY8?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&playlist=TM6pwiNSKY8" frameborder="0" allowfullscreen ></iframe>
</div>
</div>
@whichbuffer
whichbuffer / Calculator.cpp
Last active September 29, 2018 07:38
Calculator
#include <iostream>
using namespace std;
class Calculator
{
public:
int Calculate (int , int , char);
};
@whichbuffer
whichbuffer / hoisting.js
Created October 15, 2018 07:53
hoisting
function foo() {
console.log("foo called...");
}
foo();
function foo() {
console.log("foo redined");
}
foo();
//hoisting
<style>
body {
background-color: black;
font-family: monospace;
}
.pink-text{
color:pink;
}
.center {
margin: auto;
@whichbuffer
whichbuffer / penguin.html
Created October 19, 2018 07:00
Basic CSS
<style>
.penguin {
/* change code below */
--penguin-skin: gray;
--penguin-belly: white;
--penguin-beak: orange;
/* change code above */
position: relative;
@whichbuffer
whichbuffer / card.html
Created October 19, 2018 07:44
Applied Visual Design
<style>
h4 {
text-align: center;
}
p {
text-align:justify;
}
.links {
margin-right: 20px;
@whichbuffer
whichbuffer / card2.html
Created October 19, 2018 07:56
Bold Card
<style>
h4 {
text-align: center;
height: 25px;
}
p {
text-align: justify;
}
.links {
text-align: left;
var number = prompt("Enter number: ");
if (number>25)
alert ("this number greater than 25")
else{
alert("less than or equal to 25");
}