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 <amxmodx> | |
#include <amxmisc> | |
#include <engine> | |
#include <fun> | |
#include <fakemeta> | |
new plyRadio[32]; | |
new Float:plyRadioOrigin[32][3]; | |
public plugin_init() { |
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
<html> | |
<body> | |
<script type="text/javascript"> | |
var images = ['lorem','ipsum','dolor','sit','amet']; | |
function selectImage(url) { | |
var before, after; | |
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
/* | |
* Updates the database with local variables. The design implies that only | |
* these two vars, lastposition and state, need to be updated, as everything | |
* else is done directly into the database and then refreshed into the script | |
* This will later serve for the live server preview | |
*/ | |
public AMS_UpdatePlayerPos() { | |
// Create some control/storage variables | |
new plyOrigin[3], plyOriginString[256]; // lNull[1]; |
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
<html> | |
<head> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
</head> | |
<body style="overflow: hidden; margin: 0;"> | |
<div id="portfolio" style="width: 2000px; position: relative; border: 3px solid red; background: #eee; left: 0;">asdf asdf asdf asf asdf asdf asdf sfdg fghfgh jhgj hjkjlh fb vc bxcvb xcb etr 43g545i45hghw3 083wh 0f89wh3 9f8wh349f8w3hf9 8hf9 8w3h4f9 8w3h4f9 8w3h4f 9w83hf 9w34f 09w384hf 9w348f hw34hf ow3ih f9w384 fh9w348fy w93 fw34n fiuhiefundriugshr98</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
function validate_form(fields, invalidCallback, validCallback) { | |
if(!fields) { | |
invalidCallback(); | |
return false; | |
} | |
invalid = []; | |
for(var i in fields) { | |
f = fields[i]; |
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 fields = [ | |
{id: 'input_name', label: 'Nome', mode: 'string', min: 3, max: 128}, | |
{id: 'input_lastName', label: 'Sobrenome', mode: 'string', min: 3, max: 128}, | |
{id: 'input_email', label: 'E-mail', mode: 'string', min: 5, max: 128}, | |
{id: 'input_password', label: 'Senha', mode: 'password', match: 'input_confirmPassword', min: 6}, | |
{id: 'input_birthCity_cityID', label: 'Cidade onde nasceu', mode: 'number', incorrect: 0}, | |
{id: 'input_livingCity_cityID', label: 'Cidade onde vive', mode: 'number', incorrect: 0}, | |
{id: 'recaptcha_response_field', label: 'Palavras de segurança', mode: 'string', min: 1} | |
]; |
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
Blue: | |
Very dark: #165c92 | |
Dark: #2979a5 | |
Medium: #0e7cb6 | |
Light: #97ceed |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using BallisticSimulationDLL; | |
namespace BallisticSimulationDLL_Tester { | |
class Program { | |
static void Main(string[] args) { |
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(){var r=0,mr=360;setInterval(function(){(r<mr)?r++:r=0;document.body.style['-webkit-transform']='rotate('+r+'deg)';}, 1);})(); |
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 | |
try { | |
$client = new SoapClient("http://localhost/labs/soap/AccedoService.wsdl"); | |
var_dump($client); | |
var_dump($client->__getFunctions()); | |
var_dump($client->authenticationByCodeId(1)); | |
} catch (Exception $ex) { |
OlderNewer