create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
<?php | |
namespace App\Http\Requests; | |
use Illuminate\Foundation\Http\FormRequest; | |
class EmailRequest extends FormRequest | |
{ | |
/** | |
* Determine if the user is authorized to make this request. |
Mi lista de repos flatpak | |
Flathub: | |
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
Gnome Stable: | |
flatpak remote-add --if-not-exists gnome https://sdk.gnome.org/gnome.flatpakrepo | |
flatpak remote-add gnome-apps https://sdk.gnome.org/gnome-apps.flatpakrepo |
import sys | |
from gi.repository import Granite | |
from gi.repository import Gtk | |
from gi.repository import Gio | |
class LightWindow(Gtk.Dialog): | |
def __init__(self): | |
super(LightWindow, self).__init__() |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#!/bin/bash | |
SWAP_SIZE_MEGABYTES=$1 | |
if [ $SWAP_SIZE_MEGABYTES -eq 0 ];then | |
echo No swap size given, skipping. | |
else | |
if [ -e /swapfile ];then | |
echo /swapfile already exists, skiping. | |
else | |
echo Creating /swapfile of $SWAP_SIZE_MEGABYTES Megabytes | |
dd if=/dev/zero of=/swapfile bs=1024 count=$(($SWAP_SIZE_MEGABYTES*1024)) |