France as a cultural idea is interesting because few countries have so deliberately constructed and maintained a national identity. At its core, the French cultural project is built around a few key pillars. There's laïcité — a strict form of secularism that goes beyond separation of church and state into an active insistence that public life be non-religious. There's the French language itself, which the state has actively policed and promoted through institutions like the Académie française since the 17th century. And there's a self-conscious claim to universalism — the idea that French values (liberty, equality, fraternity) aren't just French but are human values, a legacy of the Revolution. This creates some real tensions. France simultaneously insists on cultural unity (the "one and indivisible Republic") while being home to enormous diversity — Breton, Basque, Occitan, Corsican cultures, plus large immigrant communities from North Africa, West Africa, and Southeast Asia. The official stance has histor
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
| <div id="errors" style=" | |
| background: #c00; | |
| color: #fff; | |
| display: none; | |
| margin: -20px -20px 20px; | |
| padding: 20px; | |
| white-space: pre-wrap; | |
| "></div> | |
| <div id="root"></div> | |
| <script> |
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
| # Just trying to cheat at the Benchmarks Game | |
| # https://benchmarksgame-team.pages.debian.net/benchmarksgame/description/nbody.html | |
| def wrapper(n): | |
| def combinations(l): | |
| result = [] | |
| for x in range(len(l) - 1): | |
| ls = l[x+1:] | |
| for y in ls: |
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
| <script> | |
| import { Modal, modalStore } from '@skeletonlabs/skeleton'; | |
| function triggerAlert() { | |
| const alert = { | |
| type: 'alert', | |
| title: 'Example Alert', | |
| body: `<div class = "pb-12 h-60 overflow-auto">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at mauris ut nisl molestie eleifend ac a neque. Nunc sit amet malesuada orci. Sed id consequat neque. Pellentesque vel urna varius, fringilla odio et, congue diam. Nulla facilisi. Donec gravida, erat nec pharetra placerat, metus neque tincidunt tortor, feugiat luctus mauris ligula molestie purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras condimentum hendrerit erat at egestas. Quisque porta diam ante, vitae mollis lorem tristique in. In vel dolor auctor nunc interdum laoreet vel sed nisi. Aliquam tincidunt tempus ornare. Nunc nisl libero, ornare id augue ac, molestie pulvinar nibh. Quisque diam purus, sodales nec erat ut, varius porttitor nulla. <br /><br /><a href="https://google.co |
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 open from 'open' | |
| import { apps } from 'open' | |
| import express from 'express' | |
| import { html } from 'lit-html/static.js' | |
| import { render } from '@lit-labs/ssr' | |
| import { collectResultSync } from '@lit-labs/ssr/lib/render-result.js' | |
| const render2 = x => collectResultSync(render(x)) | |
| const app = express() |
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
| """Stuff.""" | |
| from collections.abc import Callable | |
| from inspect import BoundArguments | |
| import cyclopts | |
| from cyclopts.exceptions import CycloptsError | |
| from cyclopts.help import format_doc, resolve_help_format | |
| from textual.app import App, ComposeResult | |
| from textual.widgets import Button, Input, Label, RichLog |