sudo apt-get install virtualbox
#include<iostream> | |
#include "mergesort.c" | |
using namespace std; | |
int main(int argc, char** argv) { | |
int num; | |
cout << "How many numbers do you want to sort: "; | |
cin >> num; | |
int a[num]; | |
for (int i = 0; i < num; i++) { |
PAGE 62,132 | |
TITLE _HLV_ | |
SUBTTL Layout (C) 1990 164A12565AA18213165556D3125C4B962712 | |
.RADIX 16 | |
.LALL | |
TRUE EQU 1 | |
FALSE EQU 0 | |
MONTH EQU 9D |
<?php | |
$ip = '127.0.0.1'; | |
$port = '9051'; | |
$auth = 'PASSWORD'; | |
$command = 'signal NEWNYM'; | |
$fp = fsockopen($ip,$port,$error_number,$err_string,10); | |
if(!$fp) { echo "ERROR: $error_number : $err_string"; | |
return false; |
// USAGE: ascman [WIDTH] | |
// Where WIDTH is the output width in characters. | |
// Default width is 60. | |
/* Sample output of width 30: | |
..................:-%......... | |
.................:-@-......... | |
................:-@@#:........ | |
..............:--=@@+-::...... |
I took this list from What CS majors should know.
I think it is fun to list things I don't know so I did it =D. I actually found it to be a cool exercise -- maybe I should do a fun graphics project and learn about Open GL!
i wrote this because, while i think the things on this list are potentially worth knowing, and I actually think it's an awesome list of project ideas as well as good food for thought for people developing CS curricula (many of the things I don't know are great exercises!) -- I thought it was really weird to say that every CS student should know all of them. I have a CS degree and I learned very few of the things I do know inside my degree.
I classify "do know" as anything that I have a reasonable grasp of or at least some basic experience with -- the kind of experience I'd expect a CS student to be able to get. If I say I don't know something, it means either I know pretty much nothing about it (for "gr
In this tutorial, I will be explaining how to set up a simple webhook to relay your tweets to a Discord channel
- Go to https://zapier.com/ and create an account (if you don't already have one).
- Find the Discord channel in which you would like to send Tweets
""" | |
This script removes stray lines from images using image processing techniques with OpenCV library. | |
All credit where it's due - https://stackoverflow.com/a/45563349/4411757. Simon Mourier created a script in C# which I | |
have ported to python. Tested with python 3.5 and opencv-python==3.4.2.17. Shoot your suggestions/improvements in the | |
comments. Cheers! | |
""" | |
def clean_image(img): | |
height, width = img.shape[:2] |
# Standard SSH configuration by hartek from Follow the White Rabbit (https://www.fwhibbit.es) | |
# Network configuration | |
Port 22 # Change this maybe | |
AddressFamily inet | |
ListenAddress 0.0.0.0 | |
#ListenAddress :: | |
# Authentication | |
LoginGraceTime 10 |