Find system naming:
uname # os
uuname -l # short
uname -a # detailed
import React, { useState, useEffect } from 'react' | |
//i'm using react-bootstrap for UI elements | |
import { Table, Button, ButtonGroup } from "react-bootstrap"; | |
//firebase config | |
import firebase from './../../Firebase' | |
export default function App() { | |
const [list, setList] = useState([]); | |
const [page, setPage] = useState(1); |
#!/bin/bash | |
# MIT License | |
# Copyright (c) 2024 Gustavo A. Valverde | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
#!/bin/bash | |
# btrfs-undelete | |
# Copyright (C) 2013 Jörg Walter <[email protected]> | |
# This program is free software; you can redistribute it and/or modify it under | |
# the term of the GNU General Public License as published by the Free Software | |
# Foundation; either version 2 of the License, or any later version. | |
if [ ! -b "$1" -o -z "$2" -o -z "$3" ]; then | |
echo "Usage: $0 <dev> <file/dir> <dest>" 1>&2 | |
echo |
This page has been updated a lot in the past 3 years. Older revisions you might like more than this one:
Additional Resources
#!/usr/bin/env bash | |
######################################################################## | |
## | |
## Project name: Wine launch wrapper | |
## Version: 1.3.14 | |
## Author: Kron4ek | |
## Contact emails: [email protected], [email protected] | |
## My GitHub profile: https://github.com/Kron4ek | |
## |
/* | |
** Copyright (c) 2012, Romain Dura [email protected] | |
** | |
** Permission to use, copy, modify, and/or distribute this software for any | |
** purpose with or without fee is hereby granted, provided that the above | |
** copyright notice and this permission notice appear in all copies. | |
** | |
** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
** WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
** MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
- alias: Extend TV dev mode every night | |
trigger: | |
# Run this automation every night at 4 AM. | |
- platform: time | |
at: 04:00:00 | |
condition: | |
# Run only if TV is off. | |
- condition: template | |
value_template: '{{ is_state("media_player.webos_tv", "off") }}' | |
action: |