This file contains 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
I am the copyright owner of the content, "{{ $infringing_title }}" being infringed at: | |
{{ $infringing_link }} | |
You may find the original content at: | |
{{ $original_link }} | |
{{ $original_description }} |
This file contains 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 <GLFW/glfw3.h> | |
#include <iostream> | |
#include "src/graphics/window.h" | |
int main() | |
{ | |
using namespace sparky; | |
using namespace graphics; | |
This file contains 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
<ul class="list-group"> | |
@foreach($folders as $folder) | |
@if(is_dir($folder)) | |
<div class="form-group"> | |
<a href="/{{ $folder }}" class="list-group-item clearfix">{{ $folder }} | |
<form action="#" method="POST"> | |
<button type="submit" class="btn btn-danger btn-xs pull-right">Delete</button> | |
</form> | |
</a> | |
</div> |
This file contains 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 "src/graphics/window.h" | |
#include "src/graphics/shader.h" | |
#include "src/maths/maths.h" | |
#include "src/graphics/buffers/buffer.h" | |
#include "src/graphics/buffers/indexbuffer.h" | |
#include "src/graphics/buffers/vertexarray.h" | |
int main() | |
{ |
This file contains 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(f, g) { | |
function Pa() { | |
ja = !0; | |
xa(); | |
setInterval(xa, 18E4); | |
A = ka = document.getElementById("canvas"); | |
e = A.getContext("2d"); | |
A.onmousedown = function(a) { | |
if (ya) { | |
var b = a.clientX - (5 + p / 5 / 2), |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Example script</title> | |
</head> | |
<body> | |
<h1>Hi! :)</h1> | |
<script src="yourscript.js"></script> |
This file contains 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
Show hidden characters
{ | |
"auto_complete_selector": "source, text", | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"font_face": "Fira Code", | |
"font_size": 15, | |
"ignored_packages": | |
[ | |
], | |
"line_numbers": false, | |
"line_padding_bottom": 8, |
This file contains 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
# -*- coding: utf-8 -*- | |
import requests | |
import json | |
def main(): | |
app_id = raw_input('App id: ') | |
app_secret = raw_input('App secret: ') | |
short_lived_access_token = raw_input('Short lived access token (obtained by using Graph API): ') | |
long_lived_access_token = extend_short_lived_access_token(app_id, app_secret, short_lived_access_token) |