-- creating a selection Query [30 minutes]
-- make a query which will display all related vendors per transpoort item
-- (referenced by commodities [which referenced by transport_item_commodities to transport items]),
-- resulting selection output should present 2 columns only ->
-- 1. "transport_number" -
-- 2. "related_vendor_names" - calculated value of all vendors per row of
-- single transport item (without duplication of vendor's name).
-- fetch the collection of related vendors in comma seperated value format./*
below there is a data collection of transport items objects.
inside the data collection there are random transport items.
some of the transports has other related transport items,
each transport item data object has amount of cargo items and price.
solve the following 2 tasks.
any web page on the internet can be used as helping reference for these tasks.
main objective is to supply a working solution !
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
| You have two options to resolve the conflict: | |
| 1) Resolve them without a pull request. | |
| To do this, you would checkout the master branch, and then pull in the release branch. This is effectively the solution that Bitbucket Server give you when you ask for more information on how to solve the conflict. | |
| $ git checkout master | |
| $ git pull origin release/2 | |
| <resolve merge conflicts and commit> |
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 multiprocessing as multi | |
| def chunks(n, page_list): | |
| """Splits the list into n chunks""" | |
| return np.array_split(page_list,n) | |
| cpus = multi.cpu_count() | |
| workers = [] | |
| page_list = ['www.website.com/page1.html', 'www.website.com/page2.html' |
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
| 0-00.usa.cc | |
| 0-mail.com | |
| 001.igg.biz | |
| 027168.com | |
| 0815.ru | |
| 0815.ry | |
| 0815.su | |
| 0845.ru | |
| 0box.eu | |
| 0clickemail.com |
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
| // | |
| // AppStatusNoty.swift | |
| // DeliveryCustomerApp | |
| // | |
| // Created by Admin on 7/24/17. | |
| // Copyright © 2017 HC. All rights reserved. | |
| // | |
| // | |
| // LoadingStatus.swift | |
| // hkg328 |
NewerOlder