-
LED:
- Liberty
- Equality
- Democracy
-
Patriot Act (2001)
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <errno.h> | |
| #include <string.h> | |
| #include <sys/types.h> | |
| #ifdef WIN32 | |
| #include <winsock2.h> | |
| #include <windows.h> | |
| #else | |
| #include <netdb.h> |
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
| sed -i "s/=__PAYMENTGATEWAY_USER.*/=vccportal/g" $1 | |
| sed -i "s/=__PAYMENTGATEWAY_PWD.*/=vccportal111/g" $1 | |
| sed -i "s/=__PAYMENTGATEWAY_VENDOR_VRSN_US_*/=tstvscerts/g" $1 | |
| sed -i "s/=__PAYMENTGATEWAY_VENDOR_VRSN_US_AUTOPAY.*/=tstvscertsrb/g" $1 | |
| sed -i "s/=__PAYMENTGATEWAY_VENDOR_VRSN_FR_*/=tstvschcerts/g" $1 | |
| sed -i "s/=__PAYMENTGATEWAY_VENDOR_VRSN_FR_AUTOPAY.*/=tstvschcertsrb/g" $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
| import java.util.ArrayList; | |
| public class BaseConversion { | |
| public static void main(String...z) { | |
| if (z.length !=2) { | |
| System.out.printf("Usage: java BaseConversion <integer> <base>\n"); | |
| System.exit(1); | |
| } | |
| ArrayList<Integer> result = new ArrayList<Integer>(); |
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 Formatting ======================== | |
| \lstset{ % | |
| language=Java, % the language of the code | |
| basicstyle=\footnotesize\ttfamily, % the size of the fonts that are used for the code | |
| numbers=left, % where to put the line-numbers | |
| numberstyle=\tiny, % the style that is used for the line-numbers | |
| stepnumber=1, % the step between two line-numbers. If it's 1, each line | |
| % will be numbered | |
| numbersep=5pt, % how far the line-numbers are from the code |
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 os | |
| import re | |
| import zipfile | |
| import smtplib | |
| import sys | |
| from email.MIMEMultipart import MIMEMultipart | |
| from email.MIMEBase import MIMEBase | |
| from email import Encoders | |