Translate EVM bytecode into opcodes using pure Regex :)
Demo: https://twitter.com/0x796/status/1608039943582142464
Try here: https://regex101.com/
Use PCRE2 (Perl compatible) Regex flavor.
Search:
Translate EVM bytecode into opcodes using pure Regex :)
Demo: https://twitter.com/0x796/status/1608039943582142464
Try here: https://regex101.com/
Use PCRE2 (Perl compatible) Regex flavor.
Search:
<?php | |
function reporte() { | |
$this->layout = 'control_panel'; | |
$query1 = " | |
SELECT name as label, (SELECT extract(hour from SUM(end_date-init_date)) as value FROM service_orders) | |
FROM contacts; | |
"; | |
$rows = []; |
<?php | |
$a = array(); | |
$b = array(); | |
for ($i = 0; $i <50; $i+=1) { | |
$a[$i] = $i; | |
$b[] = $i; | |
} |
Utilizo esse codigo: | |
<label> | |
<span>E-mail:</span> | |
<input type="email" name="email" value="<?php if(empty($cad['email'])) echo $cad['email'];?>" /> | |
OR | |
<input type="email" name="email" value="<?=empty($cad['email']) ? '' : $cad['email']?>" /> | |
</label> | |
#!/bin/bash -x | |
# crodas | |
# get code from git | |
if [[ ! -d node ]] | |
then | |
git clone git://github.com/joyent/node | |
fi | |
cd node/ |