Backstory: I decided to crowdsource static site generator recommendations, so the following are actual real world suggested-to-me results. I then took those and sorted them by language/server and, just for a decent relative metric, their Github Watcher count. If you want a heap of other projects (including other languages like Haskell and Python) Nanoc has the mother of all site generator lists. If you recommend another one, by all means add a comment.
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/python3 | |
def mapReduceTR(f, combine, zero, a, b): | |
def loop(a, acc): | |
if (a > b): | |
return acc | |
else: | |
return loop(a + 1, combine(f(a), acc)) | |
return loop(a, zero) |
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
# Cache and logs (Symfony2) | |
/app/cache/* | |
/app/logs/* | |
!app/cache/.gitkeep | |
!app/logs/.gitkeep | |
# Cache and logs (Symfony3) | |
/var/cache/* | |
/var/logs/* | |
!var/cache/.gitkeep |
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
<?xml version='1.0'?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<match target="pattern"> | |
<!-- La rasterizzazione dei caratteri converte i dati vettoriali dei font | |
in immagini bitmap, così da poter essere visualizzati sullo schermo. | |
Il risultato può apparire frastagliato per via dell'aliasing. | |
L'anti-aliasing aumenta il dettaglio visivo dei bordi dei caratteri. --> | |
<edit mode="append" name="antialias"> |
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
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
# Set swedish keymap |
Public releases are all root nodes.
Incremental version bumps that were not released publicly are nested where appropriate.
P.S. If there is a standard (popular) changelog format, please let me know.
- 0.5.0 : 2016.01.17
- Bug fixes
- Removed FezVrasta/bootstrap-material-design (no more needed)
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
CREATE OR REPLACE FUNCTION anonymous_easter(xyear integer) RETURNS date AS $$ | |
DECLARE | |
a int; | |
b int; | |
c int; | |
d int; | |
e int; | |
f int; | |
g int; |
- Web framework: Play
- Actors: akka
- Authentication: ?
- Authorization: ?
- ORM: doobie (for PostgreSQL)
- Evolutions: flyaway
- I/O: better-files
- JSON: circe + play-circe
- Follow the installation guide reported here: https://symfony.com/doc/master/bundles/StofDoctrineExtensionsBundle/index.html
- Further information about the installation of the base library (Gedmo) https://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/symfony2.md
- Configuring the Translatable extension: https://github.com/Atlantic18/DoctrineExtensions/blob/master/doc/translatable.md
And then you need to configure per bundle extension adding the neeeded schema on database as reported in create_ext_translations_postgres.sql
.