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
#!/bin/bash | |
# | |
# ========================================================================= | |
# Copyright 2014 Rado Buransky, Dominion Marine Media | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
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
#!/bin/bash | |
rm build -R | |
npm install | |
#node ./Makefile.dryice.js full | |
node ./Makefile.dryice.js | |
rm -R /home/canakoglu/Documents/IdeaProjects/GMQL/GMQL-WEB/public/ace/src | |
mv build/src/ ~/Documents/IdeaProjects/GMQL/GMQL-WEB/public/ace/ |
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 java.io._ | |
import play.api.libs.iteratee.{Enumerator, Iteratee} | |
import scala.concurrent.{ExecutionContext, Future} | |
import ExecutionContext.Implicits.global | |
/** | |
* Created by canakoglu on /28/317. |
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
<?xml version="1.0" encoding="ISO-8859-1" ?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="reservation_list"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="reservation" minOccurs="0" maxOccurs="unbounded"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="customer"> | |
<xs:complexType> |
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 sys | |
from os import walk | |
import tqdm | |
from collections import defaultdict | |
from multiprocessing import Pool, Lock, Process | |
import os | |
import multiprocessing | |
import time | |
# defintions |
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
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=2.9a |
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
Open file below, tested with the version 4.17 and 4.18: | |
/Applications/pgAdmin\ 4.app/Contents/Resources/web/config.py | |
and then find the line contains: "MASTER_PASSWORD_REQUIRED" and change the parameter into "False" | |
Note: The folder location for Windows is in the comments. |
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
conda create -n vcm python=3.7 | |
conda activate vcm | |
pip install ipykernel | |
python -m ipykernel install --user --name vcm |
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
# create env | |
conda create -n agent python=3.7 | |
# goto directory | |
cd ~/Prj/GecoBot | |
# installation of all the requirements, I have rasa==1.9.6,rasa-sdk==1.9.0 and their dependencies. | |
pip install -r requirements.txt | |
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
-- DROP MATERIALIZED VIEW all_flatten_view; | |
CREATE MATERIALIZED VIEW all_flatten_view | |
WITH (FILLFACTOR = 100) | |
AS | |
SELECT sequence_id, accession_id, strain_name, is_reference, is_complete, strand, length, gc_percentage, n_percentage, sequencing_technology, assembly_method, coverage, sequencing_lab, submission_date, bioproject_id, database_source, taxon_id, taxon_name, species, host_taxon_name, collection_date, isolation_source, geo_group, country, region, gender, age, nucleotide_sequence, lineage, clade, host_taxon_id, originating_lab, genus, sub_family, family, equivalent_list, molecule_type, is_single_stranded, is_positive_stranded | |
FROM virus | |
NATURAL JOIN sequence | |
NATURAL JOIN host_sample | |
NATURAL JOIN host_specie | |
NATURAL JOIN experiment_type |