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
//productPhotosUrls:string[], | |
const cProductPhotosUrl = []; | |
document.querySelectorAll("body > div.list_box > div.list_right_ > div.product_4 > div.product_view4 > div.spec-scroll > div > ul > li").forEach(c=>{ | |
const imgTag = c.querySelector("span > img"); | |
cProductPhotosUrl.push({smallImage: imgTag.src, largeImage: imgTag.getAttribute("bimg")}); | |
}); |
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
export const listOfAllCitiesAndDistricts: CityDistricts[] = [ | |
{ | |
city: "Nicosia", | |
districts: [ | |
"Akıncılar", | |
"Alayköy", | |
"Balıkesir", | |
"Beyköy", | |
"Cihangir", | |
"Çağlayan", |
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 'dart:async'; | |
import 'package:bloc/bloc.dart'; | |
import 'package:equatable/equatable.dart'; | |
import 'package:flutter_download/download_service.dart'; | |
import 'package:meta/meta.dart'; | |
part 'download_event.dart'; | |
part 'download_state.dart'; |
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
#!/usr/bin/env bash | |
set -x | |
NS="ns1" | |
VETH="veth1" | |
VPEER="vpeer1" | |
VETH_ADDR="10.200.1.1" | |
VPEER_ADDR="10.200.1.2" |