
Mass Immigration - Destroying Irish Culture
Mass Immigration - Creating a Housing Crisis
Globalist Politician - Ignoring Irish Voices, Kneeling to the EU
Crime - Increasing for all cities and towns
NEW THREAT - Censorship from the EU
Have information on the anti-Irish work of Harris, Simon, McEntee, Richmond and other Gombeen EU Overlords from working in the Garda, the Irish Govt or elsewhere.
Send a CONFIDENTIAL EMAIL TO [email protected]
ALL INFORMATION IS CONFIDENTIAL.
CREATE AND SEND YOUR EMAIL FROM A NEW EMAIL ACCOUNT (like Gmail)
KEEP THIS ACCOUNT TO YOURSELF AND READY TO DELETE IT.
THE EU HATE SPEECH LAW MEANS LESS FREEDOM FOR IRISH CITIZENS.


I found this website which seems neutral on its explanations called Redistrictingdatahub.com
Redistricting is the process of redrawing electoral boundaries. It occurs for all levels of representative government, including the US House of Representatives, state legislatures, county and city government, schools districts, and more. These boundaries define the constituency that will be represented in government and the district in which a candidate for office runs.
I actually asked Grok about how to create a neutral unbiased Redistricting map. Here's the explanation:
To achieve truly random redistricting across all 50 U.S. states every two years (e.g., aligned with federal election cycles or census updates), you can leverage geographic information systems (GIS), computational geometry, and randomization algorithms. The core idea is to overlay a fine-grained grid on each state's geometry, then use a cryptographically secure random process to aggregate grid cells into districts of equal population. This ensures compactness, contiguity, and population equality while eliminating human bias.Below is a step-by-step technical framework using open-source tools (like Python with libraries such as GeoPandas, Shapely, and NumPy) that could be scaled nationally via cloud computing. This can be automated to run biennially with updated Census data.1. Data Preparation (One-Time Setup per Cycle)
Obtain State Boundaries and Population Data:
Download state shapefiles from the U.S. Census Bureau TIGER/Line database (free, updated post-decennial census or annually for estimates).
Use block-level population data (smallest unit, ~100 people per block) from the Census API or PL 94-171 redistricting files.
Preprocess:
For each state, clip population blocks to the state boundary.
Project everything to a equal-area CRS (e.g., Albers Equal Area Conic for the U.S.: EPSG:5070) to preserve area/population accuracy.
2. Overlay a Randomized Grid
Grid Generation:
Define a fine grid resolution based on state size and desired district count. For example:
Grid cell size: 500m × 500m (adjustable; finer for precision, coarser for speed).
Use GeoPandas to create a fishnet grid over the state's bounding box.
Randomize the Grid Origin (to prevent fixed patterns):
Generate a cryptographically secure random offset (x, y) within one cell's dimensions using secrets module or /dev/urandom.
Shift the entire grid by this offset. This ensures the grid doesn't align predictably with geography or demographics.
Assign Population to Grid Cells:
Spatially join Census blocks to grid cells.
Apportion block population to intersecting cells proportionally by area (using Shapely's intersection and area).
Python Snippet Example (for one state; loop over all 50):
python
import geopandas as gpd
import numpy as np
from shapely.geometry import Polygon
import secrets
# Load state boundary and blocksstate = gpd.read_file('tl_2020_us_state.shp').query("NAME == 'California'").to_crs(epsg=5070)blocks = gpd.read_file('tl_2020_06_tabblock20.shp').to_crs(epsg=5070)# CA example
# Random grid offset (0 to cell_size)cell_size =500# metersrand_x = secrets.randbelow(cell_size)rand_y = secrets.randbelow(cell_size)
# Create shifted gridxmin, ymin, xmax, ymax = state.total_bounds
x_coords = np.arange(xmin + rand_x, xmax, cell_size)y_coords = np.arange(ymin + rand_y, ymax, cell_size)grid_cells =[Polygon([(x,y),(x+cell_size,y),(x+cell_size,y+cell_size),(x,y+cell_size)])for x in x_coords for y in y_coords]grid = gpd.GeoDataFrame(geometry=grid_cells, crs=state.crs)grid = grid[grid.intersects(state.unary_union)]# Clip to state
# Assign population (simplified)grid['population']=0for idx, block in blocks.iterrows(): intersecting = grid[grid.intersects(block.geometry)]for g_idx, cell in intersecting.iterrows(): inter_area = cell.geometry.intersection(block.geometry).area
prop = inter_area / block.geometry.area
grid.at[g_idx,'population']+= block['POP20']* prop3. Random District Formation
Determine District Count and Target Population:
Districts per state: Based on congressional seats (from latest Census apportionment) + state legislative districts if needed.
Target pop per district: Total state pop / districts (allow ±1% deviation for integers).
Aggregation Algorithm (Random Seed-and-Grow):
Use a randomized flood-fill or hierarchical clustering to group contiguous grid cells.
Steps:
Randomly select seed cells (one per district) using weighted random sampling by population (higher-pop cells more likely as seeds).
Grow districts iteratively: Assign unassigned contiguous cells to the nearest district (by centroid distance) until population targets are met.
Enforce contiguity with union-find or BFS/DFS on grid adjacency graph.
If population imbalance >1%, perturb by swapping border cells randomly and recheck.
For true randomness: Seed the RNG with a public, verifiable source (e.g., NIST beacon or blockchain hash from the cycle's start date).
Alternative Algorithms for Variety:
Voronoi Partitioning: Generate random points (Poisson disk sampling for even spread), compute Voronoi diagram clipped to state, adjust points iteratively for pop equality.
Genetic Algorithm: Evolve random partitions, scoring on compactness (Polsby-Popper) and pop equality; select fittest.
4. Automation and Scaling for All States Every 2 Years
Pipeline Orchestration:
Use AWS/GCP batch jobs or Apache Airflow to run per-state in parallel.
Trigger biennially: Cron job pulls latest Census estimates (API: api.census.gov), runs on Feb 1 of even years post-elections.
Output: GeoJSON/Shapefiles of districts, uploaded to a public portal (e.g., GitHub or state election site).
Verification and Transparency:
Publish RNG seed (e.g., hash of prior election results) for reproducibility.
Run 100+ simulations per state; select one randomly or by neutrality metric (e.g., minimal efficiency gap).
Open-source the code (e.g., on GitHub under MIT license) for audits.
5. Challenges and Mitigations
Population Equality: Use optimization (e.g., PuLP linear programming) to fine-tune after random aggregation.
Compactness/Contiguity: Post-process with smoothing (e.g., convex hull) or reject non-compact runs.
VRA Compliance: If required, add constraints (e.g., preserve majority-minority areas via seeded protection); otherwise, pure randomness may violate—hybrid with human review.
Compute: ~1-2 hours per large state on a modern CPU; parallelize across 50 states in <1 day.
Legality: This would require constitutional amendments or state laws; tech alone can't enforce.
This system produces verifiable, bias-free maps. Tools like Dave's Redistricting App or Districtr already prototype similar ideas—extend them nationally with the above randomization. For a proof-of-concept, start with one state in Jupyter Notebook.
Nick Delehanty
Eddie Hobbs


Garden of Remembrance
Demonstrations are organizing.

https://www.youtube.com/watch?v=eZFH_zFy2kgIndependent media is an essential part of any free society, and is vital for keeping the political establishment in check. But how can journalists hold government politicians to account, when they’re all in bed together - sometimes literally? Ben Scallan investigates.

Senator Keogan speaks on the massive 110,000 person rally held in Dublin on April 26th to keep Irelad for the Irish. The Dail (Parliament) has completely ignored the issue of immigrationn and the voices of the Irish people.
Senator Keogan takes them to task!

Watch this video. A young Irish man, maybe in County Tipperary, is pushed around and beaten by aother man. Who is he? Did the police (Garda) investigae or ignore it? What about the media?
We believe that both might do NOTHING.
Contribute clues and notes on X now and help.

Learn about the problem to help fight for the Solution.
Globalists like Micheal Martin and others are kowtowing to the EU and allowing massive immigration - illegal and legal - into Ireland. With no vetting of the immigration. Crime rates have gone way up. The charming streets of Dublin are no more. The Irish government ignores the Irish people's concerns and voices - imposing IPAS immigration centers of hundreds into small towns in Ireland. The result: Devastation of the Irish people and its culture.
Take Action! Public pressure to Irish American politicians who recognize the Globalist threat to the Irish culture and Irish people can help. Support Irish politicians in Ireland. Support Irish media (not RTE!) and fight for the Irish people. We have a list! We are working on action points too that you could undertake to help the good For the Irish politicians and other activists.
Globalists in Irish government include many officials who disdain or outright hate the concept of Irish sovereignty and nationhood. Ireland fought repression and genocide for 800 years and its people are not going to surrender to the EU crowd. Prominent globalists Irish politicians (we have a list!) are Micheal Martin, Simon Harris, Helen McEntee, Neale Richmond and more. They are gombeens, an Irish word for a greedy person who looks out for themselves to make money. And the Irish illegal and legal immigration industry is full of these gombeens.
Ireland and the Irish culture will be gone. Some projections indicate, with unchecked immigration, that the native Irish people will be a minority in their own country in 10 years. When your grandchildren want to hear the story of how you helped save Ireland, have something to tell them!
X