Skip to content

Instantly share code, notes, and snippets.

View Blackburn29's full-sized avatar
:octocat:

Blake LaFleur Blackburn29

:octocat:
  • Texas
View GitHub Profile
@Blackburn29
Blackburn29 / BaseHTTPHandler.py
Last active February 24, 2022 23:07
FB OAuth samples
class HTTPServerHandler(BaseHTTPRequestHandler):
"""
HTTP Server callbacks to handle Facebook OAuth redirects
"""
def __init__(self, request, address, server):
super().__init__(request, address, server)
def do_GET(self):
self.send_response(200)
#include<stdio.h>
void datRecursionDoe(int num, int count) {
if(num > 9) {
return;
}
printf("%d", num);
if(num == count){
printf("\n");
datRecursionDoe(num + 1, 1);
#include<stdio.h>
main()
{
int i,j;