Original by watti.
- しらす 1パック
- ベーコン それなり
Original by watti.
// ==UserScript== | |
// @name fucker | |
// @namespace net.ghippos.fucker | |
// @description yep, im page fucker. | |
// @include * | |
// @version 1 | |
// ==/UserScript== | |
(function() { | |
//<br> |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Data; | |
using System.Windows.Documents; |
using System; | |
namespace Omanko_ | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
string[] omanko = { "お", "ま", "ん", "こ" }; | |
string iku = "おぉぉお゛~っ!!イグゥウ!!イッグゥウウ!!"; |
!() | | |
user.name contains "まとめ" | | |
user.name contains "速報" | | |
user.name contains "情報" | | |
user.name contains "攻略" | | |
via contains "auto" | | |
(via contains "bot" & !(via contains "tweetbot")) | | |
via contains "robo" | |
public static void RegisterEvent(BackstageEventBase ev) | |
{ | |
System.Diagnostics.Debug.WriteLine("EVENT: " + ev.Title + " - " + ev.Detail); | |
EventRegistered.SafeInvoke(ev); | |
var tev = ev as TwitterEventBase; | |
if (tev == null) return; | |
lock (_twitterEvents.SyncRoot) | |
{ | |
_twitterEvents.Insert(0, tev); | |
if (_twitterEvents.Count > TwitterEventMaxHoldCount) |
using System; | |
namespace example_covlangAPI | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
string uri = "http://api.ghippos.net/covlang/"; |
# coding: utf-8 | |
require 'net/http' | |
require 'uri' | |
response = Net::HTTP.post_form(URI.parse('http://api.ghippos.net/covlang/'), | |
{'ja_JP'=> 'ここに原文を入力すると、こふ語になります。'}) | |
puts response.body |
/// <summary> | |
/// 方向を返します | |
/// </summary> | |
/// <returns>0.0〜3.5までで表される方向</returns> | |
/// <param name="dx">x軸方向の移動量(右が正)</param> | |
/// <param name="dy">y軸方向の移動量(下が正)</param> | |
static double ReturnDirection(int dx, int dy) | |
{ | |
if (dx == 0 && dy == 0) // 移動してないなら | |
{ |