I hereby claim:
- I am sudoankit on github.
- I am sudoankit (https://keybase.io/sudoankit) on keybase.
- I have a public key whose fingerprint is 743D AA67 1B6A 98CD EF36 FE6F BA90 CC4F 13B2 E43D
To claim this, I am signing this object:
#include<iostream> | |
using namespace std; | |
void insertion_sort(int A[],int n){ | |
for(int i = 0 ; i < n ;i++){ | |
int j,key; // I have taken hole as j. It's sounds better, anyways. | |
key = A[i]; | |
j = i; | |
while(j > 0 && A[j-1] > key ){ | |
A[j] = A[j-1]; //left shift |
class npyExampleTestSuite : public Test::Suite | |
{ | |
public: | |
npyExampleTestSuite() | |
{ | |
TEST_ADD(ExampleTestSuite::f_test) | |
TEST_ADD(ExampleTestSuite::s_test) | |
} | |
private: |
/* | |
* Note: This template uses some c++11 functions , so you have to compile it with c++11 flag. | |
* Example:- $ g++ -std=c++11 c++Template.cpp | |
* | |
* Author : Akshay Pratap Singh | |
* Handle: code_crack_01 | |
* | |
*/ | |
/******** All Required Header Files ********/ |
I hereby claim:
To claim this, I am signing this object:
g++ `pkg-config --cflags --libs opencv` $1 -o $2 `pkg-config --cflags --libs opencv` | |
# $1 = yourprogram.cpp | |
# $2 = executable output name; yourprogram | |
# save the file in your directory | |
# $chmod +x cv-compile.sh | |
# $sh cv-compile $1 $2 | |
# Caveats |
brew install opencv3 --with-contrib --with-python3 --c++11 --with-examples --with-ffmpeg --with-gphoto2 --with-gstreamer --with-jasper --with-java --with-opengl --with-qt5 --with-quicktime --with-vtk --with-tbb --HEAD |
#!/bin/bash | |
for i in *.djvu; | |
do ddjvu -format=pdf "$i" "${i/%.djvu/}.pdf" && rm $i | |
done |
MIT/GNU Scheme running under OS X | |
Copyright (C) 2014 Massachusetts Institute of Technology | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
Image saved on Friday September 28, 2018 at 5:08:35 PM | |
Release 9.2 || Microcode 15.3 || Runtime 15.7 || SF 4.41 || LIAR/C 4.118 | |
Edwin 3.116 | |
;; Write the expression in prefix form. | |
;; | |
;; 5 + 4 + ( 2 - ( 3 - ( 6 + 4/5 ) ) ) | |
;; ------------------------------------- | |
;; 3 * ( 6 - 2 ) * (2 - 7 ) | |
;; | |
;; A: | |
;; ( / ( + 5 4 (- 2 (- 3 (+ 6 (/ 4 5 ) ) ) ) ) | |
;; ( * 3 (- 6 2 ) (- 2 7 ) ) ) | |
;; |