This file contains 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
find Original -type d | sed 's/^Original/Resized/' | tr '\n' '\0' | xargs -0 mkdir -p | |
for f in (find Original -type f -name '*.png'); convert "$f" -resize 'x256>' (string replace Original Resized "$f"); end | |
# images need to be inside folder called Original, they will be sized to be 256 wide |
This file contains 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
xxx |
This file contains 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
not really |
This file contains 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
const express = require('express') | |
const cors = require('cors') | |
const bodyParser = require('body-parser') | |
const session = require('express-session') | |
const redis = require('redis') | |
const RedisStore = require('connect-redis')(session) | |
const axios = require('axios') | |
const csurf = require('csurf') | |
const cookieParser = require('cookie-parser') | |
const listEndpoints = require('express-list-endpoints') |
This file contains 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
<?php | |
namespace k1; | |
class ViteAsset { | |
public $file = null; | |
public $src = null; | |
public $isEntry = false; | |
public $isDynamicEntry = false; |
OlderNewer