| id | DE38DEE7-10BB-43D4-B74F-CF47E30CE946 |
|---|---|
| name | Unslopify |
| icon | wand.and.stars |
| tooltip | Deep cleanup audit with safe implementation |
| description | Audit and clean code slop across focused lanes: dead code, weak types, cycles, error hiding, legacy paths, bad comments, and obvious duplication. |
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/env bash | |
| set -euo pipefail | |
| DOMAIN="${1:-example.com}" | |
| RELEASE="${CC_RELEASE:-cc-main-2026-jan-feb-mar}" | |
| CACHE="${HOME}/.cache/cc-backlinks/${RELEASE}" | |
| BASE="https://data.commoncrawl.org/projects/hyperlinkgraph/${RELEASE}/domain" | |
| VERTICES="${CACHE}/domain-vertices.txt.gz" | |
| EDGES="${CACHE}/domain-edges.txt.gz" |
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/env bash | |
| # Unified EA Plugins - Local CI Test Runner | |
| # Runs consistent checks across any EA plugin repository. | |
| # Usage: bash ./run-tests.sh [--fix] [--skip-js] [--skip-php] [--skip-security] | |
| # Exit codes: 0 = all pass (or skipped), 1 = one or more failures. | |
| set -Eeuo pipefail | |
| # ------------ Colors ------------ | |
| RED='\033[0;31m' |
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 os | |
| from pathlib import Path | |
| import logging | |
| import argparse | |
| from concurrent.futures import ThreadPoolExecutor, as_completed | |
| import pathspec | |
| from collections import defaultdict | |
| # Configure logging | |
| logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <?php get_header(); ?> | |
| <div id="sliderinfo"> | |
| <div id="newsslides"> | |
| <?php $news = new WP_Query('post_type=news&showposts=3'); ?> | |
| <?php if($news->have_posts()) : ?><?php while($news->have_posts()) : $news->the_post(); ?> | |
| <div class="newsitem"> | |
| <?php the_excerpt(); ?> | |
| <a class="details" href="<?php the_permalink(); ?>"></a> | |
| </div> |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| CC(target) Release/obj.target/libpng/gyp/third-party/libpng/pngwutil.o | |
| AR(target) Release/obj.target/gyp/gyp/png.a | |
| COPY Release/png.a | |
| CC(target) Release/obj.target/libjpeg-turbo/gyp/third-party/libjpeg-turbo/bmp.o | |
| In file included from ../gyp/third-party/libjpeg-turbo/cdjpeg.h:16:0, | |
| from ../gyp/third-party/libjpeg-turbo/bmp.c:33: | |
| ../gyp/third-party/libjpeg-turbo/jinclude.h:22:65: fatal error: jconfig.h: No such file or directory | |
| compilation terminated. | |
| gyp/gyp/libjpeg-turbo.target.mk:161: recipe for target 'Release/obj.target/libjpeg-turbo/gyp/third-party/libjpeg-turbo/bmp.o' failed | |
| make: *** [Release/obj.target/libjpeg-turbo/gyp/third-party/libjpeg-turbo/bmp.o] Error 1 |
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
| Web: /Movies/MoviePrePlay.xml | |
| error: uncaughtException: Can't load the addon. Issue to: https://github.com/PopcornTV/node-images/issues Error: Cannot find module './bindings/linux/arm/0.9.11/binding.node' | |
| at Function.Module._resolveFilename (module.js:338:15) | |
| at Function.Module._load (module.js:280:25) | |
| at Module.require (module.js:364:17) | |
| at require (module.js:380:17) | |
| at Object.<anonymous> (/home/pi/PopcornTV/node_modules/ptv-images/binding.js:52:34) | |
| at Module._compile (module.js:456:26) | |
| at Object.Module._extensions..js (module.js:474:10) | |
| at Module.load (module.js:356:32) |
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
| 2015-07-11T04:34:00.570Z - notice: Started logger in Debug mode! | |
| 2015-07-11T04:34:00.583Z - notice: Starting PopcornTV | |
| 2015-07-11T04:34:00.585Z - DNS: DnsProxy binding on 10.0.1.28:53 | |
| 2015-07-11T04:34:01.733Z - Web: listening on 10.0.1.28:80 | |
| 2015-07-11T04:34:01.739Z - Web: SSL Web: listening on 10.0.1.28:443 | |
| 2015-07-11T04:34:13.795Z - Debug: trailers.apple.com change to 10.0.1.28 | |
| 2015-07-11T04:34:13.828Z - Debug: Query: {} | |
| 2015-07-11T04:34:13.829Z - Web: templates/TVNav.xml | |
| 2015-07-11T04:34:13.927Z - Debug: Query: {} | |
| 2015-07-11T04:34:13.928Z - Web: /js/utils.js |
NewerOlder