I hereby claim:
- I am aldo-f on github.
- I am aldof (https://keybase.io/aldof) on keybase.
- I have a public key ASA8SgAEs2HT-SELClBDPVgcYUnXTg3AMWKSXfJjt1uAowo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* | |
* OnClickListener will store the name as entered in the EditText view, in a String, | |
* then it will send the string to the next Activity for further use. | |
* | |
* Player won't proceed without entering a name; | |
* */ | |
namesField.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View v) { |
0x11425fb924c0e20CBc412a72255D7BaA04D405C4 |
#main { | |
.overview-menu { | |
.node-block.block {display: inline-block; width: 100%;} | |
} | |
} |
#C:\Windows\System32\drivers\etc\hosts | |
0.0.0.0 market.moonicorn.network |
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
didReceiveAttrs() { | |
//debugger; | |
this._super(...arguments); | |
} | |
}); |
# Lando version is at least +3.0 | |
name: drupal-nine | |
recipe: drupal9 | |
services: | |
appserver: | |
webroot: web | |
xdebug: debug | |
config: | |
php: .vscode/php.ini |
#!/bin/bash | |
# Switch Xdebug state for different PHP configurations | |
PHP_VERSIONS=($(ls /etc/php/ | grep -E '^[0-9]+\.[0-9]+$')) | |
PHP_SAPI=("cli" "fpm") # Add more SAPIs if needed | |
APACHE_RESTART_COMMAND="sudo /etc/init.d/apache2 restart" | |
# Determine the initial Xdebug state based on the first loop | |
for version in "${PHP_VERSIONS[@]}"; do |
#!/bin/bash | |
# Update package lists | |
sudo apt-get update | |
# Upgrade installed packages | |
sudo apt-get upgrade -y | |
# Fetch all installed PHP versions | |
php_versions=$(ls /etc/php) |