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/bash | |
find ~/$1 -name '*'$2'*' | |
find ~/$1 f ! -name '*'$2'*' -delete |
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/bash | |
cd $1 | |
shopt -s nulglob | |
for f in * ; do | |
if [[ $f == *"$2"* ]] ; then | |
echo $f in $PWD ; | |
fi | |
done |
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
import numpy as np | |
import time | |
from tqdm import tnrange, tqdm | |
from bokeh.plotting import figure, output_notebook, show | |
def solve(a): | |
diag = np.diag(np.fliplr(a)) # n + log(n) | |
min_elem_index = diag.argmin() # n^2 | |
avrg_sum = a[a < 0].mean() # nlog(n) | |
min_elem_row, min_elem_columns = min_elem_index, a.shape[1] - min_elem_index - 1 # 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
CREATE USER van_user1 | |
IDENTIFIED BY pass; | |
CREATE USER van_user2 | |
IDENTIFIED BY word; | |
CREATE ROLE van_role; | |
GRANT van_role TO van_user1, van_user2; | |
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
public sealed class DBConnection | |
{ | |
private static SqlConnection instance = null; | |
private static readonly object padlock = new object(); | |
private DBConnection() | |
{ | |
} | |
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
#include <stdio.h> | |
#include <stdlib.h> // For exit() | |
int main() | |
{ | |
FILE* fptr; | |
char filename[100], c; | |
printf("Enter the filename to open \n"); |
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
{ | |
"danceability" : 0.428, | |
"energy" : 0.701, | |
"key" : 11, | |
"loudness" : -6.670, | |
"mode" : 0, | |
"speechiness" : 0.0352, | |
"acousticness" : 0.425, | |
"instrumentalness" : 0.00000161, | |
"liveness" : 0.102, |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace constr_PO_laba7 | |
{ | |
abstract class Mediator | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace constr_PO_laba8 | |
{ | |
abstract class AbstractFactory | |
{ |
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
from nltk.stem.snowball import SnowballStemmer | |
from nltk.tokenize import word_tokenize | |
import io | |
from functools import reduce | |
from pprint import pprint as pp | |
from glob import glob | |
def parse_texts(fileglob='*.txt'): | |
stemmer = SnowballStemmer("russian") |
OlderNewer