This file contains hidden or 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/local/bin/python3 | |
import urllib.request | |
urlfmt = "http://www.tbs.co.jp/anime/urara/special/img/stamp_{0:02d}/{1:02d}.png" | |
fnfmt = "{0:02d}_{1:02d}.png" | |
for di in range(1, 13): | |
for fi in range(1, 100): | |
try: | |
url = urlfmt.format(di, fi) |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Runtime.CompilerServices; | |
using System.Text; | |
namespace Cadena.Meteor | |
{ | |
public static class MeteorJson | |
{ |
This file contains hidden or 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
using System; | |
namespace Cadena.Meteor | |
{ | |
internal static class MeteorJsonHelper | |
{ | |
public static unsafe string UnsafeUnescape(string jsonString, int decodedLength) | |
{ | |
var len = jsonString.Length; | |
var buf = new char[decodedLength]; |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Cadena.Engine._Internals | |
{ | |
public sealed class TaskFactoryDistrict | |
{ |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
config = { | |
"consumer": { | |
"key": "********", | |
"secret": "********", | |
}, | |
"token": { | |
"key": "********", |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
import sys | |
import io | |
import re | |
import threading | |
import time | |
from twitter import * |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
import sys | |
from twitter import * | |
from config import * | |
def switch_profile(key: str): | |
api = Twitter(auth=OAuth( |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
config = { | |
"consumer": { | |
"key": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", | |
"secret": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", | |
}, | |
"token": { | |
"key": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
import sys | |
from twitter import * | |
from config import * | |
def main(arg: str): |
This file contains hidden or 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
using (var reader = new CancellableStreamReader(stream)) | |
{ | |
while (true) | |
{ | |
cancellationToken.ThrowIfCancellationRequested(); | |
// create timeout cancellation token source | |
using (var timeoutTokenSource = new CancellationTokenSource(readTimeout)) | |
using (var compositeTokenSource = CancellationTokenSource.CreateLinkedTokenSource( | |
cancellationToken, timeoutTokenSource.Token)) |