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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| // needed for dll use | |
| using System.Runtime.InteropServices; | |
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
| { | |
| "color_scheme": "Packages/Sail Color Scheme/Sail.tmTheme", | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "tab_size": 4, | |
| "theme": "Watson.sublime-theme", | |
| "translate_tabs_to_spaces": true | |
| } |
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
| 2c2 | |
| < # qmake configuration for building with arm-xilinx-linux-gnueabi-g++ | |
| --- | |
| > # qmake configuration for building with arm-none-linux-gnueabi-g++ | |
| 11,14c11,14 | |
| < QMAKE_CC = arm-xilinx-linux-gnueabi-gcc | |
| < QMAKE_CXX = arm-xilinx-linux-gnueabi-g++ | |
| < QMAKE_LINK = arm-xilinx-linux-gnueabi-g++ | |
| < QMAKE_LINK_SHLIB = arm-xilinx-linux-gnueabi-g++ | |
| --- |
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
| Lillian Schwartz (considered a pioneer of computer-mediated art) | |
| Sophie Wilson (builder of instruction set of the ARM processor) | |
| Grace Murray Hopper (builder of cobol, first compiler for a computer programming language) | |
| Joyce Reynolds (RFC writer) | |
| Ginny Strazisar (First gateway) | |
| Kay McNulty } | |
| Betty Snyder } | |
| Marlyn Wescoff } Eniac | |
| Ruth Lichterman } Programmers | |
| Betty Jennings } |
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
| // | |
| // main.c | |
| // skyjack | |
| // | |
| // Created by Mahmut Bulut on 23/11/14. | |
| // Copyright (c) 2014 Mahmut Bulut. All rights reserved. | |
| // | |
| // Disable ASLR: | |
| // echo 0 > /proc/sys/kernel/randomize_va_space | |
| // |
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 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
| ;; ========== CODE AID ========== | |
| ;; Company mode | |
| (add-hook 'after-init-hook 'global-company-mode) | |
| (global-set-key (kbd "C-s-SPC") 'company-complete) | |
| ;; Auto complete mode | |
| ;; (global-auto-complete-mode t) | |
| ;; Semantics and Navigation | |
| (semantic-mode 1) |
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
| int gcd( int a, int b) | |
| { | |
| int temp; | |
| while(b>0) | |
| { | |
| if(a>b) | |
| {temp=a; | |
| a=b; | |
| b=temp;} |
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
| function interpolation(x,y) | |
| boyut = length(x); | |
| for i=1:boyut | |
| for j=1:boyut | |
| if( j==1) mat(i,j) = 1; | |
| continue; |
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
| function y = distance(a,b) | |
| if length(a) == length(b) | |
| size = length(a); | |
| if size < 2 | |
| error('The vectors size must greater than one'); | |
| end; | |
| else |
OlderNewer