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
#!/usr/bin/env python | |
"""\ | |
pdfnot input.pdf output.pdf bos.pdf | |
input'un her sayfasinin ardina bos'u ekleyerek output'u elde et | |
""" | |
import sys | |
import os | |
from pyPdf import PdfFileWriter, PdfFileReader |
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
#!/usr/bin/env python | |
"""\ | |
pdfnot input.pdf output.pdf bos.pdf | |
input'un her sayfasinin ardina bos'u ekleyerek output'u elde et | |
""" | |
import sys | |
import os | |
from pyPdf import PdfFileWriter, PdfFileReader |
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
#!/usr/bin/env python | |
"""\ | |
pdfnot input.pdf output.pdf bos.pdf | |
input'un her sayfasinin ardina bos'u ekleyerek output'u elde et | |
""" | |
import sys | |
import os | |
from pyPdf import PdfFileWriter, PdfFileReader |
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
syntax on | |
" paragraph reformating | |
imap <F6> <esc>{!}par<enter><insert> | |
map <F6> {!}par<enter> | |
" rest | |
" @h ardından "=","-", yaz | |
let @h = "yypVr" |
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
syntax on | |
" paragraph reformating | |
imap <F6> <esc>{!}par<enter><insert> | |
map <F6> {!}par<enter> | |
" rest | |
" @h ardından "=","-", yaz | |
let @h = "yypVr" |
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
syntax on | |
" paragraph reformating | |
imap <F6> <esc>{!}par<enter><insert> | |
map <F6> {!}par<enter> | |
" rest | |
" @h ardından "=","-", yaz | |
let @h = "yypVr" |
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
syntax on | |
" paragraph reformating | |
imap <F6> <esc>{!}par<enter><insert> | |
map <F6> {!}par<enter> | |
" rest | |
" @h ardından "=","-", yaz | |
let @h = "yypVr" |
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
syntax on | |
" paragraph reformating | |
imap <F6> <esc>{!}par<enter><insert> | |
map <F6> {!}par<enter> | |
" rest | |
" @h ardından "=","-", yaz | |
let @h = "yypVr" |
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
if score >= 90: | |
print 'A' | |
elif score >= 80: | |
print 'B' | |
elif score >= 60: | |
print 'D' | |
else: | |
print 'F' | |
if n < 0: |
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 | |
// basic sequence with LDAP is connect, bind, search, interpret search | |
// result, close connection | |
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3); | |
echo "<h3>LDAP query test</h3>"; | |
echo "Connecting ..."; | |
$ds = ldap_connect("192.168.56.102", "389"); // must be a valid LDAP server! | |
echo "connect result is " . $ds . "<br />"; |
OlderNewer