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
## Unreal Engine ## | |
# UE file types | |
*.uasset filter=lfs diff=lfs merge=lfs -text | |
*.umap filter=lfs diff=lfs merge=lfs -text | |
*.udk filter=lfs diff=lfs merge=lfs -text |
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
private void Serealization() | |
{ | |
// serealisation data to xml | |
using (Stream writer = new FileStream("Config.xml", FileMode.Create)) | |
{ | |
XmlSerializer serializer = new XmlSerializer(typeof(List<AppToLaunch>)); | |
serializer.Serialize(writer, appManager); | |
} | |
} |
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
/* | |
by Uğur Güney. March 8, 2014. | |
Hi! I started learning GLSL a month ago. The speedup gained by using | |
GPU to draw real-time graphics amazed me. If you want to learn | |
how to write shaders, this tutorial written by a beginner can be | |
a starting place for you. | |
Please fix my coding errors and grammar errors. :-) |
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
// Fill out your copyright notice in the Description page of Project Settings. | |
#include "BinaryUpload.h" | |
#include <string> | |
#include "FileUploader.h" | |
// Sets default values | |
AFileUploader::AFileUploader() | |
{ |
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
<form action="testfile.php" method="post" enctype="multipart/form-data" name="form1"> | |
<input type="file" name="upload_file" id="resume"> | |
<input type="submit" name="SubmitBtn" id="SubmitBtn" value="UPLOAD"> | |
</form> |
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
<a href="#" class="glitch">17</a> |
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
function mediaqueryresponse(mql){ | |
if (mql.matches){ | |
alert("The condition " + mql.media + " has been met"); | |
} | |
else{ | |
alert("Condition not met yet"); | |
} | |
} | |
var mql = window.matchMedia("screen and (max-width: 480px) and (orientation: portrait)"); |
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
<script> | |
$(document).ready(function(){ | |
$(window).scroll(function() { // check if scroll event happened | |
if ($(document).scrollTop() > 50) { // check if user scrolled more than 50 from top of the browser window | |
$('.header').css("background-color", "#fff");// change background-color to white | |
} else { | |
$('.header').css("background-color", "#000"); // if not, change it back to black | |
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
<html> | |
<body> | |
<input type="checkbox" id="sidebartoggler" name="" value=""> | |
<div class="page-wrap"> | |
<nav id="navbar"> | |
<label for="sidebartoggler" class="toggle"> | |
<div class="hamb"></div> | |
<div class="hamb" style=""></div> | |
<div class="hamb"></div> |
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
<sup style="vertical-align: top !important; position: relative; | |
top: 0.2em; font-size: 10px !important; ">TM</sup> |
NewerOlder