「swipe」を含む日記 RSS

はてなキーワード: swipeとは

2023-12-31

anond:20231230140436

米国ラッパー「イェーイェー私のオマンコはびしょ濡れ。オマンオマンコ」→大ヒット4億再生

https://www.youtube.com/watch?v=hsm4poTWjMs

歌詞

Whores in this house

There’s some whores in this house

There’s some whores in this house

There’s some whores in this house

ビッチがいるぞ

この家にはビッチがいる

この家にはビッチがいる

この家にはビッチがいる

I said certified freak, sevendays a week

Wet and gushy, make that pullout game weak, woo

イカれた女って認められてるの 週7日稼働してる

濡れたマンコ あなたは抜くのも嫌になるわ

Yeah, you dealin’ with some wet and gushy

Bring a bucket and a mop for this wet and gushy

Give me everything you got for this wet and gushy

あなたはびしょ濡れのマンコに入れたいのよね

バケツとモップを持ってきてよ

マンコのためなら何でもくれるよね

Beat it up, baby, catch a charge

Extra large and extra hard

Put this cookie right in your face

Swipe your nose like a credit card

Hop on top, I wanna ride

I do a kegel, I’m kinda wild

Look at my mouth, look at my thighs

This water is wet, come take a dive

激しく突いて 違法なくらいに

大きさも硬さも普通じゃないわね

マンコをあなたの顔へ乗せたら

あなたの鼻をクレジットカードみたいにスワイプして

上に乗ってあげる

中に入れてる時は ケーゲル体操するの

口に唾を吐いて 私を見つめて

マンコは濡れてるからダイブしてよ

2022-04-13

anond:20220413110249

米国ラッパー「イェーイェー私のオマンコはびしょ濡れ。オマンオマンコ」→大ヒット4億再生

https://www.youtube.com/watch?v=hsm4poTWjMs



歌詞

Whores in this house

There’s some whores in this house

There’s some whores in this house

There’s some whores in this house

ビッチがいるぞ

この家にはビッチがいる

この家にはビッチがいる

この家にはビッチがいる

I said certified freak, sevendays a week

Wet and gushy, make that pullout game weak, woo

イカれた女って認められてるの 週7日稼働してる

濡れたマンコ あなたは抜くのも嫌になるわ

Yeah, you dealin’ with some wet and gushy

Bring a bucket and a mop for this wet and gushy

Give me everything you got for this wet and gushy

あなたはびしょ濡れのマンコに入れたいのよね

バケツとモップを持ってきてよ

マンコのためなら何でもくれるよね

Beat it up, baby, catch a charge

Extra large and extra hard

Put this cookie right in your face

Swipe your nose like a credit card

Hop on top, I wanna ride

I do a kegel, I’m kinda wild

Look at my mouth, look at my thighs

This water is wet, come take a dive

激しく突いて 違法なくらいに

大きさも硬さも普通じゃないわね

マンコをあなたの顔へ乗せたら

あなたの鼻をクレジットカードみたいにスワイプして

上に乗ってあげる

中に入れてる時は ケーゲル体操するの

口に唾を吐いて 私を見つめて

マンコは濡れてるからダイブしてよ

2020-04-05

[][][]VORZE A10サイクロンSA遠隔操作するアプリを作った

内容が内容なので匿名ダイアリーに投げ捨てる。

Bluetooth端末で動作する。(CC0 License)

<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>A10 Cyclone SA easy controller</title>
</head>

<body>
  <span id="status">initializing...</span>
  <script>
    let status = document.querySelector('span#status');
    let device, characteristic;
    const connect = async _ => {
      try {
        device = await navigator.bluetooth.requestDevice({
          filters: [{ services: ['40ee1111-63ec-4b7f-8ce7-712efd55b90e'] }],
        });
        status.textContent = 'connecting...';
        let server = await device.gatt.connect();
        let service = await server.getPrimaryService('40ee1111-63ec-4b7f-8ce7-712efd55b90e');
        characteristic = await service.getCharacteristic('40ee2222-63ec-4b7f-8ce7-712efd55b90e');
      } catch (e) {
        status.textContent = `failed to connect: ${e.message}`;
        return;
      }

      document.addEventListener('pointermove', evt => {
        evt.preventDefault();
        let y = evt.y / innerHeight * 2 - 1;
        let data = Math.abs(y) * 0x7f | (y < 0 ? 0x80 : 0x00);
        characteristic.writeValue(new Int8Array([0x01, 0x01, data]));
      });
      status.textContent = 'swipe up and down to move';
      document.removeEventListener('click', connect);
    }
    document.addEventListener('click', connect);
    status.textContent = 'tap screen to connect';
  </script>
</body>

</html>

2017-11-05

iOS進化の無さにがっかりした

脱獄済みiOS9 をずっと使っていたのだが、iOS10以降じゃないと対応していないアプリがあったり、

Suica使いたかったりしたのでiPhone Xに変更した。

FaceIDは初代TouchID並には便利だが最新TouchIDと比べると正しく認識されないことも多く不便だなと感じたが、

それは想定内なので良い。

それ以上に問題だったのがiOS進化の無さであった。

大画面化しているのにフォルダ開いたときアイコン数が3×3だったり、脱獄アプリパクリ複数アイコン移動のインタフェースゴミだったり、

未だに柔軟に設定できないActivatorもどきだったり (上からSwipeはNotificationとContorolCenterで左右違うのに、下からSwipeを左右分けられていないのは何故!?)

細かなところではあるんだけど何かがっかりだった。

 
ログイン ユーザー登録
ようこそ ゲスト さん