This file contains 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
function AutoPXLS(images){ | |
// | |
function shuffle(array) { | |
var currentIndex = array.length, temporaryValue, randomIndex; | |
// While there remain elements to shuffle... |
This file contains 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
{ | |
"type": "playlist", | |
"ownerId": 196090362, | |
"id": 3, | |
"isOfficial": 0, | |
"title": "HOME Discographic", | |
"subTitle": null, | |
"description": "", | |
"rawDescription": "", | |
"authorLine": "", |
This file contains 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
#EXTINF:-1,HOME - Way, Shape, And Form (320) | |
https://psv4.vkuseraudio.net/c611125/u50907945/audios/e1e1efc8b125.mp3?extra=i3JOb-K0EOSjI_uAuPhyzYurh4NOU_Ooxifxy0dLK62nNX74NQjHVfoc8Uo2lK2l_GAUP3rEhowG83ElJBUs4Vs7IxXU5m_TP5L_pOPWDaDnXg7nFKi5KLdRNh1hf38W1c-jiX8uQrnFXlV_ | |
#EXTINF:-1,HOME - Resonance (320) | |
https://cs1-74v4.vkuseraudio.net/p16/737228d2dd2989.mp3?extra=FSKOveHJzZlSNyQbr56sSNEVzPeOXdFkPiVXIfyly0bgN_HEY-MKqeJHRf3U-XOFsJfvXiVabn7HzNUBaIjq4dJQoXHqMYwKkslIEGZYaBg8caTG0IGT6FYIs0dpinTWNrrgX-VVp2kQbXtn | |
#EXTINF:-1,HOME - Windows (320) | |
https://cs1-73v4.vkuseraudio.net/p8/b1acb7c746b44e.mp3?extra=a8c7iSaXCqMYoNziEGFHlV2W6dikP8figwpLtaI1kLw8n2WAx2kJ3M2ZnF1t_swYOJ8oawciHo9K6Ktf-kXSA7ZSJhwBVbgfM6a7ttEGJbZ6bGqJaCp0xeE_DuHMiKFcOHSPxgmJ7dMEBV_f | |
#EXTINF:-1,HOME - Decay (320) | |
https://cs1-42v4.vkuseraudio.net/p9/8af25b9a231ddb.mp3?extra=kjZJIuO6qbLPG7K1vkI1p4B71zg-cvNpT76zHws302EeJDscy0_B7p6LpT1UG7DIHNHyZD81a3CY3gY4tfm5RFjHRh9ZeHx9eOLem9rtmkcSawZLMdBG1BW8LnUAuIf6RaH-x5JJIZUOsw_g | |
#EXTINF:-1,HOME - Hold (320) | |
https://cs1-7 |
This file contains 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
package ru.cmtt.osnova.sdk.methods; | |
import com.facebook.appevents.internal.ViewHierarchyConstants; | |
import com.facebook.internal.NativeProtocol; | |
import com.google.android.exoplayer2.text.ttml.TtmlNode; | |
import com.google.android.gms.actions.SearchIntents; | |
import com.google.firebase.analytics.FirebaseAnalytics; | |
import com.google.firebase.remoteconfig.FirebaseRemoteConfig; | |
import com.google.gson.JsonArray; | |
import com.google.gson.JsonElement; |
This file contains 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
package ru.cmtt.osnova.sdk.methods; | |
import com.facebook.share.internal.ShareConstants; | |
import com.google.android.gms.actions.SearchIntents; | |
import com.google.firebase.analytics.FirebaseAnalytics; | |
import com.google.gson.JsonElement; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.util.List; | |
import kotlin.Metadata; |
This file contains 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
import random | |
import string | |
word_list = ['python', 'java', 'kotlin', 'javascript'] | |
class GameState: | |
def __init__(self): | |
self.turns = 8 | |
self.alive = True |
This file contains 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
from http.server import BaseHTTPRequestHandler | |
from http.server import ThreadingHTTPServer | |
from typing import Dict | |
from uuid import uuid4 | |
import json | |
database: Dict[str, str] = dict() | |
class HttpGetHandler(BaseHTTPRequestHandler): | |
def _set_headers(self, status: int = 200, c_type: str = "text/html"): |
This file contains 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
from enum import Enum, auto | |
from itertools import cycle | |
from typing import Counter, List, Tuple | |
import random | |
class GameState(Enum): | |
INIT = auto() | |
RUN = auto() |
This file contains 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
#include <iostream> | |
#include <list> | |
// std::list with iterator pointing to the middle of the list | |
int main() { | |
std::list<int> lst{}; | |
size_t N; | |
char op; | |
int i; |
This file contains 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
#include <iostream> | |
struct Node { | |
Node* next; | |
int value; | |
}; | |
struct List | |
{ | |
Node* first; |
OlderNewer