- Twitter: @jarkko
- Website or Blog: http://jlaine.net
- Company: Bear Metal OÜ http://bearmetal.eu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module MetroUi.Widgets.Accordion exposing ( Model | |
, defaultAccordion | |
, update | |
, view ) | |
import Html | |
import Html.App | |
import Html.Attributes as Attr | |
import MetroUi.Widgets.Frame as Frame |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.SplitPointController = Ember.ObjectController.extend( | |
actions: { | |
recordSplit: -> | |
split = @store.createRecord('splitTime', | |
timestamp: new Date | |
splitPoint: @get('model') | |
) | |
@get('model').get('splitTimes').addObject( | |
split.save() |
I hereby claim:
- I am jarkko on github.
- I am jarkko (https://keybase.io/jarkko) on keybase.
- I have a public key whose fingerprint is 953F 35EE 6327 BD0F 3958 2BAA 74A6 11CD C6E7 8E69
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
irb(main):004:0> a = Event.limit(5) | |
Event Load (0.4ms) SELECT `events`.* FROM `events` LIMIT 5 | |
=> […] | |
irb(main):006:0> a.map(&:id) | |
=> [1, 2, 3, 4, 5] | |
irb(main):008:0> a.reject!{|i| i.id == 1} | |
=> […] | |
irb(main):010:0> a.map(&:id) | |
=> [2, 3, 4, 5] | |
irb(main):011:0> |
- AntiSec hackers leak 1,000,001 Apple device IDs allegedly obtained from FBI breach
- “During the second week of March 2012, a Dell Vostro notebook, used by Supervisor Special Agent Christopher K. Stangl from FBI Regional Cyber Action Team and New York FBI Office Evidence Response Team was breached using the AtomicReferenceArray vulnerability on Java, during the shell session some files were downloaded from his Desktop folder one of them with the name of ”NCFTA_iOS_devices_intel.csv” turned to be a list of 12,367,232 Apple iOS devices including Unique Device Identifiers (UDID), user names, name of device, type of device, Apple Push Notification Service tokens, zipcodes, cellphone numbers, addresses, etc. the personal details fields referring to people appears many times empty leaving the whole list incompleted on many parts. no other file on the same folder makes mention about
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.date { | |
font-family: "rock salt", serif; | |
position: relative; | |
top: 10em; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.9.3p125 :003 > Time.zone = "Pacific Time (US & Canada)" | |
=> "Pacific Time (US & Canada)" | |
1.9.3p125 :004 > Time.zone | |
=> (GMT-08:00) Pacific Time (US & Canada) | |
1.9.3p125 :005 > Time.zone.parse("2012-03-25 03:29") | |
=> Sun, 25 Mar 2012 04:29:00 PDT -07:00 | |
1.9.3p125 :006 > Time.zone.parse("2012-03-24 03:29") | |
=> Sat, 24 Mar 2012 03:29:00 PDT -07:00 | |
1.9.3p125 :007 > Time.zone = "UTC" | |
=> "UTC" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# An example hook script to verify what is about to be committed. | |
# Called by git-commit with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. | |
# | |
# To enable this hook, make this file executable. | |
# This is slightly modified from Andrew Morton's Perfect Patch. |
NewerOlder