Burluk

Burluk (Russian: Бурлук) is a rural locality (a selo) and the administrative center of Burlukskoye Rural Settlement, Kotovsky District, Volgograd Oblast, Russia. The population was 711 as of 2010.[2] There are 12 streets.

Burluk

Бурлук
Selo
Burluk
Burluk
Coordinates: 50°33′N 44°31′E[1]
CountryRussia
RegionVolgograd Oblast
DistrictKotovsky District
Time zoneUTC+4:00

Geography

The village is located in steppe, on Volga Upland, on the right bank of the Burluk River, 280 km from Volgograd, 63 km from Kotovo.

gollark: Unrelated: slowly, my reactor efficiency goes up... soon, it shall reach a slightly higher percentage.
gollark: It simulates injuries to individual bodyparts.
gollark: Dwarf Fortress!
gollark: We need some sort of Rust-based RPG, because Rust is good, all Hail Rust Rust Rust, Rust Rust, Rust... Rust.
gollark: ```rustuse wasm_bindgen::prelude::*;#[derive(Default)]pub struct Counter { value: i32,}pub enum Message { Increment, Decrement, Reset,}impl draco::App for Counter { type Message = Message; fn update(&mut self, _: &draco::Mailbox<Message>, message: Self::Message) { use self::Message::*; match message { Increment => self.value += 1, Decrement => self.value -= 1, Reset => self.value = 0, } } fn render(&self) -> draco::Node<Self::Message> { use draco::html as h; h::div() .push(h::button().push("-").on("click", |_| Message::Decrement)) .push(self.value) .push(h::button().push("+").on("click", |_| Message::Increment)) .push(h::button().push("Reset").on("click", |_| Message::Reset)) .into() }}#[wasm_bindgen]pub fn start() { draco::start( Counter::default(), draco::select("main").expect("main").into(), );}pub fn main() {}```RUSTRUSTRUSTRUST

References

  1. Карта Котовского района Волгоградской области
  2. Всероссийская перепись населения 2010 года. Численность населения городских округов, муниципальных районов, городских и сельских поселений, городских и сельских населённых пунктов Волгоградской области


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.