Skip to content

Instantly share code, notes, and snippets.

View JKetelaar's full-sized avatar
Loading...

Jeroen Ketelaar JKetelaar

Loading...
View GitHub Profile
#!/bin/bash
rsync -avzhe "ssh $3 $4" $9@$5:$1 $2
diff --git a/etc/adminhtml/system.xml b/etc/adminhtml/system.xml
index b84e89e..5c46379 100755
--- a/etc/adminhtml/system.xml
+++ b/etc/adminhtml/system.xml
@@ -89,12 +89,6 @@
<field id="evening_title" translate="label comment" type="text" sortOrder="228" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Evening title</label>
</field>
- <field id="mailbox_title" translate="label comment" type="text" sortOrder="229" showInDefault="1" showInWebsite="1" showInStore="1">
- <label>Mailbox title</label>

Keybase proof

I hereby claim:

  • I am jketelaar on github.
  • I am jketelaar (https://keybase.io/jketelaar) on keybase.
  • I have a public key ASDmNG3_q0ugV8cDrecRnVc6kOg0hcBzY1I3qFMZ8lroEgo

To claim this, I am signing this object:

-- List all tracks that are longer than the most purchased track and their lengths (in seconds;
-- 1 second = 1000 ms), ordered from shortest to longest. If there is a tie for most purchased
-- track, use the longest (in milliseconds) most purchased track. Your query should list the
-- output columns as TrackName and Seconds in that order. (query34.sql)
SELECT
t.Name AS TrackName,
(t.Milliseconds / 1000) AS Seconds
FROM
Track AS t
WHERE
SELECT
t.Name AS TrackName,
(t.Milliseconds / 1000) AS Seconds
FROM
Track AS t
WHERE Milliseconds > (
SELECT
Milliseconds
FROM
Invoice
<injector>
<interfaces>
<add>
<classname>com/dreamscape/b/a/a</classname>
<interface>Node</interface>
</add>
<add>
<classname>com/dreamscape/o</classname>
<interface>CollisionMap</interface>
</add>
/**
* Displays User Dashboard
*
* @param Request $request
* @return \Symfony\Component\HttpFoundation\Response
*
* @Route("/")
*/
public function indexAction(Request $request)
{
{% for appointment in appointments %}
{% if appointment.inactive %}
var color = '#FF0000';
{% else %}
var color = '#' + ({{ appointment.user.id / 25000 }} * 0xFFFFFF << 0).toString(16);
{% endif %}
events.push(
{
id: '{{ appointment.id }}',
/**
* @return Appointment[]
*/
public function getDentistAppointments()
{
$appointments = [];
foreach($this->dentistAppointments as $appointment){
if ($appointment->isActive()){
$appointments[] = $appointment;
}