다시보기 HD는 고화질 영상으로 넘버원 을 언제 어디서나 편리하게 시청할 수 있는 서비스입니다. 끊김 없는 스트리밍과 선명한 화질을 제공하여 [장르], [출연진], [플랫폼명]의 다양한 콘텐츠를 최적의 환경에서 다시 즐길 수 있습니다. 모바일과 PC 모두 지원합니다.
Discover gists
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
| <!DOCTYPE html> | |
| <html lang="fa" dir="rtl"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
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
| const axios = require('axios') | |
| const CryptoJS = require('crypto-js') | |
| const fs = require('fs') | |
| const aeskey = 'ai-enhancer-web__aes-key' | |
| const aesiv = 'aienhancer-aesiv' | |
| function encrypt(obj) { | |
| return CryptoJS.AES.encrypt( | |
| JSON.stringify(obj), |
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
| Product Overview | |
| Swobby is a battery-swapping marketplace mobile application that enables users to rent portable batteries from physical stations, similar to how Lime/Bird work for scooters. | |
| Core Value Proposition | |
| Users find nearby battery stations on a map | |
| Reserve and pay for battery rental |
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
| openapi: 3.1.0 | |
| info: | |
| title: Makeswift API | |
| description: Documentation for the Makeswift public REST API. | |
| version: '1.0' | |
| servers: | |
| - url: 'https://api.makeswift.com' | |
| description: Production server | |
| paths: | |
| /v1/workspaces: |
다시보기 HD는 고화질 영상으로 넘버원 을 언제 어디서나 편리하게 시청할 수 있는 서비스입니다. 끊김 없는 스트리밍과 선명한 화질을 제공하여 [장르], [출연진], [플랫폼명]의 다양한 콘텐츠를 최적의 환경에서 다시 즐길 수 있습니다. 모바일과 PC 모두 지원합니다.
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
| du -h folder | |
| With 's' for compact result |
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
| app.use((err, req, res, next) => { | |
| console.error(err.stack); | |
| res.status(500).send('Something broke!'); | |
| }); |
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 { Command } from '../lib/index.js'; | |
| let games = {}; | |
| const PATH = [[6,0],[6,1],[6,2],[6,3],[6,4],[6,5],[5,6],[4,6],[3,6],[2,6],[1,6],[0,6],[0,7],[0,8],[1,8],[2,8],[3,8],[4,8],[5,8],[6,9],[6,10],[6,11],[6,12],[6,13],[6,14],[7,14],[8,14],[8,13],[8,12],[8,11],[8,10],[8,9],[9,8],[10,8],[11,8],[12,8],[13,8],[14,8],[14,7],[14,6],[13,6],[12,6],[11,6],[10,6],[9,6],[8,5],[8,4],[8,3],[8,2],[8,1],[8,0],[7,0]]; | |
| const BASES = { | |
| '🟢': [[2,2],[2,3],[3,2],[3,3]], |
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
| # frozen_string_literal: true | |
| # Manual Group Properties Cleanup Script | |
| # Run with: rails runner cleanup_group_properties_manual.rb | |
| # | |
| # Author: AbhimanyuVashisht | |
| # Date: 2025-11-12 | |
| # Records to process: ~42,018 | |
| # | |
| # USAGE: | |
| # 1. Run script to generate analysis |
