Bakaniya

Bakaniya is a village in the Bhopal district of Madhya Pradesh, India. It is located in the Huzur tehsil and the Phanda block.[1] The Bakanian Bhaunr Railway Station is located nearby.

Bakaniya
village
Bakaniya
Bakaniya
Coordinates: 23.267123°N 77.244025°E / 23.267123; 77.244025
CountryIndia
StateMadhya Pradesh
DistrictBhopal
TehsilHuzur
Population
 (2011)
  Total1,593
Time zoneUTC+5:30 (IST)
ISO 3166 codeMP-IN
Census code482478

Demographics

According to the 2011 census of India, Bakaniya has 329 households. The effective literacy rate (i.e. the literacy rate of population excluding children aged 6 and below) is 75.29%.[2]

Demographics (2011 Census)[2]
TotalMaleFemale
Population1593817776
Children aged below 6 years221104117
Scheduled caste245121124
Scheduled tribe1046
Literates1033623410
Workers (all)664429235
Main workers (total)41237339
Main workers: Cultivators1561479
Main workers: Agricultural labourers15913425
Main workers: Household industry workers110
Main workers: Other96915
Marginal workers (total)25256196
Marginal workers: Cultivators17611
Marginal workers: Agricultural labourers21239173
Marginal workers: Household industry workers211
Marginal workers: Others211011
Non-workers929388541
gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?

References

  1. "RFP Document for Establishing Operating and Maintaining Lok Seva Kendra" (PDF). E-Governance Society Bhopal District. Archived from the original (PDF) on 4 March 2016. Retrieved 25 July 2015.
  2. "District Census Handbook - Bhopal" (PDF). 2011 Census of India. Directorate of Census Operations, Madhya Pradesh. Retrieved 20 July 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.