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 std::{ | |
path::Path, | |
process::{Command, Stdio}, | |
}; | |
use async_trait::async_trait; | |
use downloader::download_files; | |
use downloader::Asset; | |
use extract::{ExtractInput, Extractor}; | |
use libs::owo_colors::{colors, OwoColorize}; |
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 futures::stream::StreamExt; | |
use reqwest::Client; | |
use serde::Deserialize; | |
use std::fs; | |
use std::io::prelude::*; | |
use std::path::Path; | |
use std::time::Duration; | |
use anyhow::Context; | |
use std::fs::{create_dir_all, File}; |
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
SUCCESS |
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
SUCCESS |
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 NODEJS_ENV_DEV = typeof module !== 'undefined' && module.exports; | |
const DEV_SETTINGS = { | |
WORLD_SIZE : 2000, | |
MAX_BOTS : 25, | |
FOOD_DENSITY : 40, | |
INITIAL_PLAYER_RADIUS : 5, | |
FOOD_VALUE : 0.5, | |
DEBUG : true, | |
HEARTBEAT_ENABLE : false, |
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
#!/bin/bash | |
while [ 1 ]; do shutter -f -e -o './%y-%m-%d-%T.png'; sleep 20; done |
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
# The instructions for ios-webkit-debug-proxy are for ubuntu, here are the packages for fedora. | |
# https://github.com/google/ios-webkit-debug-proxy | |
dnf install autoconf automake libusb-devel libusbx-devel libplist-devel libplist-devel usbmuxd libtool libimobiledevice-devel |
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
https://github.com/phw/peek | |
vala | |
vala-devel | |
gtk+ | |
gtk+-devel | |
gtk3 | |
gtk3-devel | |
keybinder3 | |
keybinder3-devel |
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
SUCCESS |