First install the required gems:
gem install octokit awesomeprint rainbow
Then run it to extract all of your open GitHub issues into files (with comments).
ruby my-gh-issues.rb
api_id = 0 | |
api_hash = "" | |
botToken = "" | |
from telethon import TelegramClient, events | |
import mods | |
bot = TelegramClient('bot', api_id, api_hash) | |
bot.start(bot_token=botToken) |
#include <iostream> | |
#include "borrow_checker.hpp" | |
int main() | |
{ | |
auto i = 42; | |
// borrow `i` under name `ref` | |
borrow_var(ref, i) |
import json | |
import googletrans | |
import os | |
from googletrans import Translator | |
def translateString(data, destLangCode): | |
global translator |
# Version: 0.3.0 | |
# Rewrite: Incomplete | |
import re | |
import mpf # post file support | |
import utils | |
import enum | |
import jnet | |
import json |
// Based on https://github.com/llir/grammar/blob/6cb09c87c6e434310b41d3c5b2b3d59c94f986c4/ll.bnf | |
// ### [ Lexical part ] ######################################################## | |
_ascii_letter_upper | |
: 'A' - 'Z' | |
; | |
_ascii_letter_lower | |
: 'a' - 'z' |
-- Mountains | |
-- Simple endless runner game by West | |
-- taking inspiration from "Alto's adventure" for the Mountain backdrop and day to night cycle | |
-- Use this function to perform your initial setup | |
function setup() | |
--get rid of the sidebar | |
displayMode(FULLSCREEN) | |
-- define 3 the three game states for the finite state machine game engine and initialise gamestate variable | |
READY=1 | |
GAMEOVER=2 |
//Onkar J Sathe | |
#include <bits/stdc++.h> | |
#include <graphics.h> | |
using namespace std; | |
#define Mx getmaxx() | |
#define My getmaxy() | |
#include <dos.h> | |
#include <windows.h> | |
int main() |
package main | |
import ( | |
"github.com/banthar/Go-SDL/sdl" | |
) | |
const ( | |
SCREEN_WIDTH int = 640 | |
SCREEN_HEIGHT int = 480 | |
SCREEN_BPP int = 32 |
/* | |
Wrap long lines on rough column boundaries at spaces | |
Working example: https://play.golang.org/p/3u0X6NyMua | |
Based on algo from RosettaCode, which is nifty | |
https://www.rosettacode.org/wiki/Word_wrap#Go | |
*/ | |
package main | |
import ( |
First install the required gems:
gem install octokit awesomeprint rainbow
Then run it to extract all of your open GitHub issues into files (with comments).
ruby my-gh-issues.rb