Analitinis deskriptyvas, iliustruojantis AD feasibility SaaS e-paskolose virtual KVM class foo {};
ir class bar {} extends foo {}
.
- Too Easy Radio XM
BRICKS!Kylin- MONTA RADIO
<?php | |
global $FORMAT; | |
global $DISTRO_FLAG; | |
$FORMAT = 'bz2'; | |
$DISTRO_FLAG = '!'; | |
$clipFormat = 'mkv'; | |
$designPattern = ''; |
#!/usr/bin/env sh | |
cd; | |
mkdir -v $HOME/.streetz; cd ~/.streetz | |
touch e-star.txt | |
echo "https://youtu.be/Z31z1Euz9b4?si=2EZyUdkOQRSR3bxv tArsiIlyEp2q" > ./e-star.txt | |
cd | |
mkdir -v ~/.botz | |
cd $HOME/.botz |
#!/usr/bin/env sh | |
mkdir -vp $HOME/.local/bin | |
# PTTY exec MS-DOS tinklo MBR e-machines rupa/z | |
touch $HOME/.local/bin/z.sh | |
# ZSH_CUSTOM lokacija AD ad-hoc | |
mkdir -pv $HOME/.local/env.d/scrib.d/x-path.d | |
touch $HOME/.local/env.d/proxy.env.sh | |
cd; ln -sv /etc/environment.d/proxy.env.sh .proxy.env.inc.sh |
#!/usr/bin/env sh | |
PC="." | |
alias brexit="clear && exit;" | |
ZSH_THEME="typewritten/typewritten" |
#!/usr/bin/env sh | |
source $HOME/"$PC"antigen.zsh | |
# Load the oh-my-zsh's library. | |
antigen use oh-my-zsh | |
# Bundles from the default repo (robbyrussell's oh-my-zsh). | |
antigen bundle git | |
antigen bundle command-not-found |
#!/usr/bin/env sh | |
# PB | |
. $HOME/.local/bin/z.sh | |
eval "$(starship init bash)" | |
starship preset jetpack -o ~/.config/starship.toml | |
LAMP="/opt/lamp" | |
PATH="$PATH:$LAMP/bin:$HOME/.config/composer/vendor/bin" |
#!/usr/bin/env sh | |
# PB ERASMUS - povilas-ThinkPad-E565 | |
sudo apt install -y htop neofetch httpie \ | |
clamav xclip gufw \ | |
nala bat aptitude apt-file \ | |
git git-flow \ | |
libreoffice \ | |
gimp epiphany-browser \ |
Analitinis deskriptyvas, iliustruojantis AD feasibility SaaS e-paskolose virtual KVM class foo {};
ir class bar {} extends foo {}
.
#!/bin/sh | |
# Userland mode (~$USER/), (~/). | |
# ~/.fonts is now deprecated and that | |
#FONT_HOME=~/.fonts | |
# ~/.local/share/fonts should be used instead | |
FONT_HOME=~/.local/share/fonts | |
echo "installing fonts at $PWD to $FONT_HOME" | |
mkdir -p "$FONT_HOME/adobe-fonts/source-code-pro" |
Array are not object in PHP but PHP does give us some ways to make object that act like arrays. First, there is the ArrayObject class which is pretty close to what you have with a normal array (you can iterate it, use [] etc.) If you use it as a parent for your class you can add methods to it.
class ArrObj extends ArrayObject{
// add methods here