An implementation of http://www.google.com/design/spec/components/pickers.html in AngularJS and some bootstrap just for helper classes (just the button classes).
Work in progress.
An implementation of http://www.google.com/design/spec/components/pickers.html in AngularJS and some bootstrap just for helper classes (just the button classes).
Work in progress.
| /* | |
| gcc -Wall -pedantic -std=c99 -O2 -o timegm timegm.c | |
| Test manual epoch calculation with tm_yday vs TZ+mktime. | |
| On Linux, gcc 4.4.7, the manual method is ~5x faster. | |
| Usage: | |
| ./timegm | |
| <ctrl-C> to quit |
| /* | |
| L.EditableCircleMarker is a marker with a radius | |
| The marker can be moved and the radius can be changed | |
| */ | |
| L.EditableCircleMarker = L.Class.extend({ | |
| includes: L.Mixin.Events, | |
| options: { | |
| weight: 1, |
| .leaflet-div-icon { | |
| background: transparent; | |
| border: none; | |
| } | |
| .leaflet-marker-icon .number{ | |
| position: relative; | |
| top: -37px; | |
| font-size: 12px; | |
| width: 25px; |
| /* | |
| * Copyright 2012 David Cesarino de Sousa | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| import com.sun.tools.attach.VirtualMachine; | |
| import com.sun.tools.attach.VirtualMachineDescriptor; | |
| import java.util.List; | |
| public class ListVM{ | |
| public static void main(String[] args){ | |
| List<VirtualMachineDescriptor> vmList = VirtualMachine.list(); | |
| for(VirtualMachineDescriptor vm : vmList){ | |
| System.out.println("name: " + vm.displayName() + " id :" + vm.id()); | |
| try{ |
System directories
| Method | Result |
|---|---|
| Environment.getDataDirectory() | /data |
| Environment.getDownloadCacheDirectory() | /cache |
| Environment.getRootDirectory() | /system |
External storage directories
| public class FragAccordion extends FragmentActivity { | |
| @Override | |
| protected void onCreate(Bundle arg0) { | |
| super.onCreate(arg0); | |
| setContentView(R.layout.frag_fragaccordion); | |
| getSupportFragmentManager().beginTransaction() | |
| .add(R.id.menuPlace, new Fragment0()).commit(); | |
| } |
| package org.example | |
| package auth | |
| import org.scalatra.auth.ScentryStrategy | |
| import org.scalatra.{CookieSupport, ScalatraBase} | |
| trait RedisClient { | |
| def get(key: String): Option[String] | |
| } |