Skip to content

Instantly share code, notes, and snippets.

View Bound3R's full-sized avatar

Daniel Naranjo Bound3R

View GitHub Profile
@HectorPulido
HectorPulido / docker-compose.yaml
Last active December 10, 2025 22:33
Jellyfin automation
services:
qbittorrent:
container_name: qbittorrent
image: lscr.io/linuxserver/qbittorrent:latest
networks:
- mynetwork
environment:
- PUID=1000
- PGID=1000
- TZ=America/Bogota
@Jossdz
Jossdz / check.md
Last active July 9, 2021 06:55
Revisión del Prework en español.
@lucky-c
lucky-c / app.js
Last active August 19, 2025 05:43
React Native: Expo video HLS streaming sample
import React from 'react';
import { StyleSheet, Text, View, Dimensions } from 'react-native';
import { Video } from 'expo';
export default class App extends React.Component {
render() {
// Set video dimension based on its width, so the video doesn't stretched on any devices.
// The video dimension ratio is 11 : 9 for width and height
let videoWidth = Dimensions.get('window').width;
@flexbox
flexbox / android.sh
Created July 2, 2018 13:54
React Native with expo SDK release script for android
#!/bin/sh
echo ''
echo '================'
echo 'Dependency check '
echo '================'
echo ''
yarn
echo ''
@pavsidhu
pavsidhu / form.jsx
Last active March 22, 2020 14:27
Validate.js with React Native Form Example
import React, {Component} from 'react'
import {View, Button} from 'react-native'
import TextField from 'textfield'
import validation from 'validation'
import validate from 'validation_wrapper'
export default class Form extends Component {
constructor(props) {
super(props)
@0xjac
0xjac / private_fork.md
Last active December 10, 2025 08:58
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare [email protected]:usi-systems/easytrace.git