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
Imports System.Data | |
Imports System.Data.SqlClient | |
Imports System.Math | |
Imports System.IO | |
Imports System.Data.OleDb | |
Imports System.Data.Odbc | |
Imports System | |
Public Class Form1 | |
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click |
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 <SFML/Graphics.hpp> | |
#include <SFML/Window.hpp> | |
#include <list> | |
#include <math.h> | |
const int screenSize = 800; | |
float length(sf::Vector2f vector) { | |
return sqrtf(vector.x * vector.x + vector.y * vector.y); | |
} |
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.Net.Sockets; | |
using System.IO; | |
using System.Text; | |
namespace Com.CodeGame.CodeRacing2015.DevKit.CSharpCgdk { | |
public struct Debug { | |
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 _0x4db0 = ["", "\x6C\x65\x6E\x67\x74\x68", "\x30", "\x72\x65\x70\x6C\x61\x63\x65", "\x23\x24\x31\x24\x31\x24\x32\x24\x32\x24\x33\x24\x33", "\x72\x6F\x75\x6E\x64", "\x6D\x61\x74\x63\x68", "\x73\x70\x6C\x69\x74", "\x2C", "\x72\x67\x62", "\x61", "\x28", "\x6D\x61\x78", "\x6D\x69\x6E", "\x2C\x20", "\x29", "\x6A\x6F\x69\x6E", "\x23", "\x72\x67\x62\x61\x28\x38\x30\x2C\x20\x37\x35\x2C\x20\x35\x32\x2C\x20\x2E\x35\x29", "\x74\x6F\x75\x63\x68", "\x73\x75\x70\x70\x6F\x72\x74", "\x6F\x6E\x74\x6F\x75\x63\x68\x73\x74\x61\x72\x74", "\x44\x6F\x63\x75\x6D\x65\x6E\x74\x54\x6F\x75\x63\x68", "\x20", "\x63\x6C\x69\x65\x6E\x74\x58\x20\x63\x6C\x69\x65\x6E\x74\x59\x20\x73\x63\x72\x65\x65\x6E\x58\x20\x73\x63\x72\x65\x65\x6E\x59\x20\x70\x61\x67\x65\x58\x20\x70\x61\x67\x65\x59", "\x6F\x72\x69\x67\x69\x6E\x61\x6C\x45\x76\x65\x6E\x74", "\x63\x68\x61\x6E\x67\x65\x64\x54\x6F\x75\x63\x68\x65\x73", "\x74\x79\x70\x65", "\x69\x73\x45\x6E\x61\x62\x6C\x65\x64", "\x74\x6F\x75\x63\x68\x63\x61\x6E\x63\x65\x6C\x2E\x5F\x74\x61\x70", "\x6F\x6E\x54 |
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
module.exports = function(app) { | |
var express = require('express'); | |
var tasksRouter = express.Router(); | |
var tasks = [ | |
{ | |
id: 0, | |
description: "kokoko" | |
}, | |
{ |
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
proc get_timestamp uses bx cx dx | |
mov ah, 2ch | |
int 21h | |
mov ah, 0 | |
mov al, cl | |
mov bx, 60 | |
push dx | |
mul bx | |
pop dx |
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
2211d2210 | |
< [email protected] | |
2397d2395 | |
< info@a_pro.spb.ru | |
2400d2397 | |
< [email protected] | |
2413d2409 | |
< [email protected] | |
2423d2418 | |
< info@a_pro.spb.ru |
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
39a40,61 | |
> [email protected] | |
> [email protected] | |
> [email protected] | |
> [email protected] | |
> [email protected] | |
> [email protected] | |
> [email protected] | |
> [email protected] | |
> [email protected] |
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
org 100h | |
jmp init | |
resident_begin: | |
handler_09: | |
pusha | |
push ds |
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 <iostream> | |
using namespace std; | |
int main() { | |
int n; | |
cin >> n; | |
int* arr = new int[n]; |
NewerOlder