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
#!/bin/sh | |
set -eu | |
argv0="$0" | |
usage() { | |
printf 'usage: %s [-s] [-m] [-h] [package...]\n' "$argv0" | |
} |
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
adobe-flash-plugin-ppapi | |
CLion | |
DataGrip | |
GoLand | |
JAI | |
MultiMC | |
PhpStorm | |
ReDoomEd.app | |
RubyMine | |
tarsnap |
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
id | author | text | date | |
---|---|---|---|---|
1 | Ты не становишься моложе, Марк. Мир меняется. Музыка меняется, даже наркотики меняются. Нельзя же сидеть целыми днями дома и мечтать о героине и Зигги Попе. | |||
2 | Марк | Игги Поп. | ||
3 | Без разницы. Все равно он уже умер. | |||
4 | Марк | Игги Поп не умер, в прошлом году Томми ходил на его концерт. | ||
5 | Ты должен найти для себя что-то новое. |
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
{ | |
"messages": [ | |
{ | |
"id": "message-1", | |
"date": "2012-04-23T18:25:43.511Z", | |
"author": "client", | |
"text": "Привет, а в каком формате загружать диалоги?" | |
}, | |
{ | |
"id": "message-2", |
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
// basic file operations | ||
---|---|---|
#include <iostream> | ||
#include <fstream> | ||
using namespace std; | ||
int main () { | ||
ofstream myfile; | ||
myfile.open ("example.txt"); | ||
myfile << "Writing this to a file.\n"; | ||
myfile.close(); |
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
dialogId | message | initiator | |
---|---|---|---|
1 | вы продоёте рыбов | cat | |
1 | нет просто показываю | seller | |
1 | красивое... | cat |
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
{ | |
"image1": "https://upload.wikimedia.org/wikipedia/ru/c/cb/AmazingSpiderMan50.jpg", | |
"image2": "https://upload.wikimedia.org/wikipedia/ru/7/75/Ant-Man_poster.jpg" | |
} |
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
<h1 id="sample-markdown">Sample Markdown</h1> | |
<p>This is some basic, sample markdown.</p> | |
<h2 id="second-heading">Second Heading</h2> | |
<ul> | |
<li>Unordered lists, and:<ol> | |
<li>One</li> | |
<li>Two</li> | |
<li>Three</li> | |
</ol> | |
</li> |
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
{ | |
"messages": [ | |
{ | |
"id": "message-1", | |
"date": "2012-04-23T18:25:43.511Z", | |
"author": "client", | |
"text": "Привет, а в каком формате загружать диалоги?" | |
}, | |
{ | |
"id": "message-2", |
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
package main | |
import ( | |
"fmt" | |
"os" | |
"os/signal" | |
"time" | |
) | |
func main() { |
NewerOlder