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
<?php | |
$stacks = | |
[ | |
'edi' => 0x0, | |
'ecx' => 0x0, | |
'ebp' => [], | |
'eax' => 0x0, | |
'cl' => 0x0 | |
]; |
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
clear; | |
close all; | |
clc; | |
a = -10; | |
b = 10; | |
n = 14; | |
j = a:0.2:b; |
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
#ifndef STRING_H | |
#define STRING_H | |
#define _CRT_SECURE_NO_WARNINGS | |
#define CAPACITY_CONSTANT 1.7 | |
#include <iostream> | |
#include <gtest\gtest.h> | |
class String |
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 "..\String.h" | |
#include <gtest\gtest.h> | |
TEST(StringTest, InsertTest) | |
{ | |
String s("Far Eastern"); | |
s.insert(4, "1337 "); | |
EXPECT_EQ(s, "Far 1337 Eastern"); | |
} |
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
<?php | |
ini_set('memory_limit', '-1'); | |
require 'vendor/autoload.php'; | |
use Moor\TokenFileCache; | |
use GuzzleHttp\Pool; | |
use GuzzleHttp\Promise; | |
use Moor\UserVotes; |
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
<?php | |
date_default_timezone_set('Asia/Vladivostok'); | |
$_config = (object)[ | |
'username' => 'getjump', | |
'password' => 'pw', | |
'forum' => 'http://www.sythe.org/', | |
'thread_id' => '1824569', | |
'message' => 'Or add on steam: jerbos41', |
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
clear | |
echo ************LAN CFG by GetJump v0.01 LOADED SUCESSFULLY************ | |
echo ************Uparrow - Buy deagle*********************************** | |
echo *************Leftarrow - Buy full grenade complect***************** | |
echo **************Downarrow - Buy AWP********************************** | |
echo ***************Rightarrow - Buy ak47/m4a1************************** | |
echo ****************NUM 4 - leftarrow - Drop*************************** | |
echo ****************NUM 2 - downarrow - say Fast A********************* | |
echo ****************NUM 8 - uparrow - say Fast B*********************** | |
echo ****************NUM 6 - rightarrow - say Drop********************** |
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
# Load DSL and set up stages | |
require 'capistrano/setup' | |
# Include default deployment tasks | |
require 'capistrano/deploy' | |
require 'capistrano/unicorn_nginx' | |
require 'rvm1/capistrano3' | |
require 'capistrano/bundler' | |
require 'capistrano/rails/assets' | |
require 'capistrano/rails/migrations' |
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
FROM ruby:2.2.0 | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev | |
RUN mkdir /myapp | |
WORKDIR /myapp | |
ADD Gemfile /myapp/Gemfile | |
RUN bundle install | |
ADD . /myapp |
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
var gulp, sass, sourcemaps, browserify, coffeeify, source, util, watchify, _, livereload, notify, browserSync; | |
gulp = require('gulp'); | |
util = require('gulp-util'); | |
watchify = require('watchify'); | |
sass = require('gulp-sass'); | |
sourcemaps = require('gulp-sourcemaps'); | |
browserify = require('browserify'); | |
coffeeify = require('coffeeify'); | |
source = require('vinyl-source-stream'); |
OlderNewer