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
| [ | |
| { | |
| "arguments": [ | |
| "c++", | |
| "-c", | |
| "-DHAVE_CONFIG_H", | |
| "-I.", | |
| "-I../..", | |
| "-Wall", | |
| "-fno-strict-overflow", |
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
| var jq = document.createElement('script'); | |
| jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"; | |
| document.getElementsByTagName('head')[0].appendChild(jq); | |
| (function defer() { | |
| if (window.jQuery) { |
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
| class Steem < Formula | |
| desc "Proof of Work blockchain with an unproven consensus algorithm." | |
| homepage "https://steemit.com/" | |
| url "https://github.com/steemit/steem.git", | |
| :tag => "v0.19.0" | |
| depends_on :macos => [:yosemite, :el_capitan, :sierra] | |
| depends_on "cmake" => :build | |
| depends_on "autoconf" => :build |
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
| /* | |
| * throwable | |
| * JQuery plugin | |
| */ | |
| /**------------------------------------**/ | |
| // CREDITS | |
| /**------------------------------------**/ | |
| /* | |
| - Mr. Doobs :: http://mrdoob.com/92/Google_Gravity |
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
| /** | |
| * ScrollBar.as | |
| * Keith Peters | |
| * version 0.9.10 | |
| * | |
| * Base class for HScrollBar and VScrollBar | |
| * | |
| * Copyright (c) 2011 Keith Peters | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy |
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
| #!/usr/bin/perl | |
| # | |
| use integer; | |
| use Cwd qw(getcwd abs_path); | |
| use Getopt::Std; | |
| use File::Basename; | |
| use File::Find; | |
| $Getopt::Std::STANDARD_HELP_VERSION=1; | |
| $idesettings{'PREFIX'}="/usr/local"; |
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
| /* | |
| Copyright Alex Leone, David Nufer, David Truong, 2011-03-11. kathack.com | |
| javascript:var i,s,ss=['http://kathack.com/js/kh.js','http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js'];for(i=0;i!=ss.length;i++){s=document.createElement('script');s.src=ss[i];document.body.appendChild(s);}void(0); | |
| */ | |
| var BORDER_STYLE = "1px solid #bbb", | |
| CSS_TRANSFORM = null, | |
| CSS_TRANSFORM_ORIGIN = null, | |
| POSSIBLE_TRANSFORM_PREFIXES = ['-webkit-', '-moz-', '-o-', '-ms-', ''], |
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
| cmake_minimum_required(VERSION 3.5) | |
| set(CMAKE_C_STANDARD 11) | |
| set(CMAKE_CXX_STANDARD 11) | |
| add_executable(stelenet stelnet.c) | |
| target_link_libraries(stelenet -lnx ) |
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
| // ArrowKeyStringConstruction.cpp : Defines the entry point for the console application. | |
| // | |
| //#pragma warning(disable : 4996) | |
| // System headers | |
| #include <switch.h> | |
| //#include <conio.h> |
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
| #!/usr/bin/python3 | |
| """ | |
| WARNING: The code you are about to view is DISGUSTING | |
| I wrote most of it months ago, so don't ask me what it's doing, or why. | |
| """ | |
| import struct | |
| import sys |