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
| Name: librockchip-mpp | |
| Version: 1.0.11 | |
| Release: 1%{?dist} | |
| Summary: Rockchip Media Process Platform | |
| Group: Development/Libraries | |
| License: Proprietary | |
| URL: http://www.rock-chips.com | |
| Source0: mpp-%{version}.tar.gz | |
| BuildRequires: cmake, gcc, g++, make, libtool, pkgconfig |
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
| console.log("codigo ejecuta"); | |
| setTimeout(() => { | |
| console.log("codigo entra"); | |
| document.querySelectorAll('pre code').forEach((block) => { | |
| hljs.highlightBlock(block); | |
| console.log("codigo formateado"); | |
| }); | |
| }, 1000); |
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 router = { | |
| user: "vodafone", | |
| pass: "", | |
| ip: "192.168.0.1" | |
| }; | |
| const request = require('request'); | |
| const user_agent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36"; |
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
| version: '3' | |
| services: | |
| bot: | |
| image: reimashi/salien-bot:latest | |
| restart: always | |
| volumes: | |
| - ./gettoken.json:/app/gettoken.json | |
| labels: | |
| com.centurylinklabs.watchtower.enable: "true" | |
| updater: |
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
| PACKAGE_NAME="e1000e" | |
| PACKAGE_VERSION="3.4.0.2" | |
| BUILT_MODULE_NAME[0]="e1000e" | |
| DEST_MODULE_NAME[0]="e1000e" | |
| MAKE="'make' default" | |
| CLEAN="'make' clean" | |
| DEST_MODULE_LOCATION[0]="/kernel/drivers/net/ethernet/intel/e1000e/" | |
| AUTOINSTALL="yes" |
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
| FROM php:7.2-apache | |
| # System Dependencies. | |
| RUN apt update && \ | |
| apt upgrade -y && \ | |
| apt install -y unzip | |
| # Copy grav to docker | |
| COPY grav-v1.3.8.zip /tmp/ | |
| RUN cd /tmp && \ |
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 | |
| nasm -f bin -o os.bin src/os.asm | |
| dd if=/dev/zero of=floppy.img bs=1024 count=1440 | |
| dd if=os.bin of=floppy.img seek=0 count=1 conv=notrunc | |
| rm os.bin | |
| mkdir iso | |
| cp floppy.img dist/floppy.img |
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 | |
| # Select the modules to install with true/false | |
| INSTALL_AQUARIUS=false | |
| INSTALL_AVHHR=false | |
| INSTALL_CZCS=false | |
| INSTALL_GOCI=false | |
| INSTALL_HICO=false | |
| INSTALL_MERIS=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
| public class Caballo | |
| { | |
| public static final int FILAS = 8; | |
| public static final int COLUMNAS = 8; | |
| protected int tabla[][] = new int[FILAS][COLUMNAS]; | |
| protected int desplaz_fil[] = {1, 2, -1, -2, 1, 2, -1, -2}; | |
| protected int desplaz_col[] = {2, 1, -2, -1, -2, -1, 2, 1}; | |
| /* Constructor que inicializa la propiedad con ceros */ |
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
| local tr = aegisub.gettext | |
| script_name = tr"Clean ABC Error" | |
| script_description = tr"Clean ABC error created when demux .mkv files." | |
| script_author = "Aitor González" | |
| script_version = "0.1" | |
| script_modified = "18/11/2012" | |
| function clean_abc(subtitles) | |
| startvar = 1 |
NewerOlder