Skip to content

Instantly share code, notes, and snippets.

@abkumbar
abkumbar / Wayback_scraper.py
Last active October 1, 2022 13:59
Wayback news scraper gist
## Creating a loop to scrape from all pages
news_title = []
news_source = []
news_link = []
#pages = [str(i) for i in range(1,371)]
reqs = 0
@Bulat-Ziganshin
Bulat-Ziganshin / cuda+multi-gpu+openmp.cu
Created May 24, 2016 16:26
Example of using CUDA with Multi-GPU+OpenMP (compile with -Xcompiler /openmp)
#include<stdio.h>
#include<stdlib.h>
#include <cuda.h>
#include<omp.h>
#include <helper_functions.h>
#include <helper_cuda.h>
#include <cuda_runtime.h>
void fill_matrix(int *A, int fac, int m, int n)
{
@bkaradzic
bkaradzic / orthodoxc++.md
Last active November 3, 2025 04:11
Orthodox C++

Orthodox C++

This article has been updated and is available here.