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
<HTML> | |
<HEAD> | |
<SCRIPT LANGUAGE="JavaScript">alert(document.flag)</SCRIPT> | |
</HEAD> | |
<BODY> | |
</BODY> | |
</HTML> |
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 warnings; | |
use strict; | |
use utf8; | |
my @x1 = ('BAŞ'); | |
my @x2 = @ARGV; # BAŞ | |
my @y = ('basari', 'başarı'); |
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
#based on nikhil's code | |
import mnist_loader | |
import random | |
import time | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import matplotlib.cm as cm |
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
import numpy as np | |
import scipy | |
from matplotlib import pyplot as plt | |
import timeit | |
#Brute Force Inversion Counting | |
def brute_count(A): | |
count=0 | |
for i in range(0,len(A)): | |
for j in range(i,len(A)): |
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
/* This is a linker parameter file for the MC9S12DG128B */ | |
NAMES END /* CodeWarrior will pass all the needed files to the linker by command line. But here you may add your own files too. */ | |
SEGMENTS /* Here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */ | |
/* Register space */ | |
/* IO_SEG = PAGED 0x0000 TO 0x03FF; intentionally not defined */ | |
/* RAM */ | |
RAM = READ_WRITE 0x0400 TO 0x1FFF; |
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
/* This is a linker parameter file for the MC9S12DG128B */ | |
NAMES END /* CodeWarrior will pass all the needed files to the linker by command line. But here you may add your own files too. */ | |
SEGMENTS /* Here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */ | |
/* Register space */ | |
/* IO_SEG = PAGED 0x0000 TO 0x03FF; intentionally not defined */ | |
/* RAM */ | |
RAM = READ_WRITE 0x0400 TO 0x1FFF; |