F1 Archive | DPRK | Nuke Fun | Mirrors | Sec | Google
var work_in_progress = [
{
title: "WiFi SD Netowrk Tester",
info: "Simple network analysis tool based on Transcend WiFi SD Card",
skills: ['Custom Kernel Images', 'Python', 'Ruby', 'Bash', 'ARM5L', 'KeyASIC Ka2000',
'Linux Cross Compilation'],
current: false,
},
{
title: "RPi Netowrk Tester",
info: "WiFi, GSM and Ethernet Network analysis tool",
skills: ['Ruby', 'Bash', 'ARM7', 'Linux Cross Compilation'],
current: false
},
{
title: "Android WiFi Autologin",
info: "Autologin for all types of WiFi networks. - curl was easier",
skills: ['Java', 'HTML', 'SQLite3'],
current: false
},
];
function getCurrentProjects() {
var current = [];
for(i in work_in_progress) {
if(work_in_progress[i].current === true) current.push(work_in_progress[i]);
}
return current;
}
console.log(getCurrentProjects());
started_at = [
2009,
2006,
2005
]
job_positions = [
'IT Consultant',
'IT Systems Administrator',
'Small Systems Management and Support'
]
working_as = [
'Aerospace Simulation Engineer, Programmer, System Automation, Information Security Engineer.',
'System Administrator, Network Management.',
'Linux Administration, Network Administration.'
]
zip(started_at, job_positions, working_as)
<training>
<course year="2000" trainer="intertubes">
Spent a few weekends taking computers apart and messing around with scripting languages
</course>
</courses>
<schools>
<school start="2001" end="2009" loc="Germany">REDACTED</schools>
<school start="1995" end="2001" loc="Estonia">Vanalinna Haridus Kollegium</schools>
</schools>
class Contact {
public $email = "plutoisneverforgotten@gmail.com";
protected $address = array(
"street" => NULL,
"city" => "Munich",
"country" => "Germany"
);
public $links = array(
''
);
public function send_message($subject, $message) {
mail($this->email, $subject, $message);
}
}
$foo = new Contact;
$foo->send_message('Job offer', 'Come, invent with us!');