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 python3 | |
# -*- coding: utf-8 -*- | |
import sys | |
from PyQt5.QtCore import pyqtSignal, pyqtSlot, QProcess, QTextCodec | |
from PyQt5.QtGui import QTextCursor | |
from PyQt5.QtWidgets import QApplication, QPlainTextEdit | |
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 python3 | |
# There was no noticable difference at the time of testing: | |
# | |
# Testing string regex ... took 10.5 seconds | |
# Verification: good texts: 93307 bad texts: 6693 | |
# Testing compiled regex ... took 10.5 seconds | |
# Verification: good texts: 93307 bad texts: 6693 | |
import random |
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
import socket | |
import requests | |
import time | |
import urllib | |
sms_password = "Password123" | |
sms_username = "jhon" | |
nick = "smsbot" |
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
class Loop { | |
public static void main(String[] args) { | |
sweepLinear(1.5, 2.5, 2); | |
System.out.println(); | |
sweepLinear(1.5, 2.5, 10); | |
} | |
private static void doSomethingWithValue(double value) { |
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
private static void sweepLinear(double min, double max, int num_intervals) { | |
double step = (max - min) / num_intervals; | |
double value = min; | |
while (value <= max) { | |
doSomethingWithValue(value); | |
value += step; | |
} | |
} |
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
private static void sweepLinear(double min, double max, int num_intervals) { | |
double step = (max - min) / num_intervals; | |
double value = min; | |
for (int i = 0; i <= num_intervals; i++) { | |
doSomethingWithValue(value); | |
value += step; | |
} | |
} |
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
private static void sweepLinear(double min, double max, int num_intervals) { | |
for (int i = 0; i <= num_intervals; i++) { | |
double p = (double)i / (double)num_intervals; | |
double q = 1.0 - p; | |
double value = max * p + min * q; | |
doSomethingWithValue(value); | |
} | |
} |
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
private static void sweepLinear(double min, double max, int num_intervals) { | |
for (int i = 0; i <= num_intervals; i++) { | |
int j = num_intervals - i; | |
double value = (max * i + min * j) / num_intervals; | |
doSomethingWithValue(value); | |
} | |
} | |
/* Output: |
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 python3 | |
import base64 | |
import pickle | |
import sys | |
from binascii import crc32 | |
from datetime import timezone | |
import pathvalidate |
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
#include <cstdint> | |
#include <cstdlib> | |
#include <iomanip> | |
#include <iostream> | |
#include <sstream> | |
#include <string> | |
#include <typeinfo> | |
#include <cxxabi.h> |