I hereby claim:
- I am 0xf6 on github.
- I am ivysola (https://keybase.io/ivysola) on keybase.
- I have a public key ASCfQSPaCC6X4o6E4p_PVTgzGYygbGE5UjriKcaP_1qhNgo
To claim this, I am signing this object:
| namespace Calculator | |
| { | |
| using static System.Console; | |
| using Sprache; | |
| using System.Linq; | |
| internal class Program | |
| { | |
| public static void Main(string[] args) | |
| { |
| // Open stickers preview and run this code in console | |
| $(".im_stickerpack_preview").each(function (index, value) { | |
| var url = $(value).children().attr("src"); | |
| console.log(url); | |
| }); | |
| // copy links and replace -128 end in sticker id to -512 | |
| var urls = new[] { "https://vk.com/sticker/1-12467-512","https://vk.com/sticker/1-12468-512", ... }; |
| // ==UserScript== | |
| // @name Disable VK Repost | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @author Yuuki Wesp | |
| // @match https://vk.com/* | |
| // @match http://vk.com/* | |
| // @grant none | |
| // @require https://code.jquery.com/jquery-3.3.1.min.js | |
| // @require https://code.jquery.com/ui/1.12.1/jquery-ui.min.js |
| // ==UserScript== | |
| // @name Yandex Block | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.3 | |
| // @author Yuuki Wesp <[email protected]> | |
| // @match https://yandex.ru/* | |
| // @grant none | |
| // @require https://code.jquery.com/jquery-3.3.1.min.js | |
| // @require https://code.jquery.com/ui/1.12.1/jquery-ui.min.js | |
| // ==/UserScript== |
| namespace ConsoleApp9 | |
| { | |
| using System; | |
| using Pixie; | |
| using Pixie.Code; | |
| using Pixie.Markup; | |
| using Pixie.Terminal; | |
| using Pixie.Terminal.Render; | |
| using Pixie.Transforms; |
I hereby claim:
To claim this, I am signing this object:
| HTML 14 mins βββββββββββββββββββββ 79.0% | |
| JSON 3 mins βββββββββββββββββββββ 20.9% | |
| Other 0 secs βββββββββββββββββββββ 0.1% | |
| Git Config 0 secs βββββββββββββββββββββ 0.1% |
| #include "Arduino.h" | |
| #include "TM74.h" | |
| #define DIO 5 | |
| #define RCLK 6 | |
| #define SCLK 7 | |
| #define ALARM 10 | |
| TM74 display(SCLK, RCLK, DIO); |
| double Divide(BigInteger x, BigInteger y) | |
| => Math.Exp(BigInteger.Log(x) - BigInteger.Log(y)); |
| #pragma once | |
| #if defined(__GNUC__) || (defined(__ICC) && (__ICC >= 600)) | |
| #define G_FUNCTION_NAME __PRETTY_FUNCTION__ | |
| #elif defined(__FUNCSIG__) | |
| #define G_FUNCTION_NAME __FUNCSIG__ | |
| #elif (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 600)) | |
| #define G_FUNCTION_NAME __FUNCTION__ | |
| #elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901) | |
| #define G_FUNCTION_NAME __func__ |