I hereby claim:
- I am jevonearth on github.
- I am jevonearth (https://keybase.io/jevonearth) on keybase.
- I have a public key whose fingerprint is 88FE 080E 83BC 3BC4 DFF6 9F2F 9781 93B0 7444 B3BF
To claim this, I am signing this object:
roo | |
project --topLevelPackage org.ecad.threed --projectName 3drfq --java 6 --packaging JAR | |
persistence setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY | |
entity jpa --class ~.domain.Rfq --activeRecord false --testAutomatically | |
field string --class ~.domain.Rfq --fieldName firstName --notNull | |
field string --class ~.domain.Rfq --fieldName surname --notNull | |
field string --class ~.domain.Rfq --fieldName email --notNull | |
repository jpa --interface ~.repository.RfqRepository --entity ~.domain.Rfq | |
json add --class ~.domain.Rfq | |
web mvc json setup |
<init-param> | |
<param-name>spring.profiles.active</param-name> | |
<param-value>dev</param-value> | |
<!-- <param-value>prod</param-value> --> | |
</init-param> |
<beans profile="dev"> | |
<mvc:resources location="/angulardevapp/app/" mapping="**" cache-period="0"/> | |
</beans> | |
<beans profile="prod"> | |
<mvc:resources location="/angularprodapp/" mapping="**" cache-period="0"/> | |
</beans> |
/* | |
The CRUD methods in ForceApi all take java objects, and de-serializes them to json internally. | |
I do not want to annotate my domain objects specifically for sobjects, instead I would like to manage my own serialization. | |
Perhaps we could add an additional method per CRUD method which takes a json string instead of a Object, allowing the client more control of how it manages its domain model. | |
*/ | |
public String createSObject(String type, Object sObject) { | |
return createSObject(type, jsonMapper.writeValueAsBytes(sObject)); | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<Response> | |
<Dial> | |
<Sip> | |
sip:[email protected] | |
</Sip> | |
</Dial> | |
</Response> |
# Maintainer: CYB3R <[email protected]> | |
# Contributor: Sarkasper <[email protected]> | |
# Contributor: Scias <[email protected]> | |
# Contributor: darzki <[email protected]> | |
# Contributor: N30N <[email protected]> | |
pkgname=("lwks") | |
provides=("lightworks") | |
pkgver=11.5.B | |
pkgrel=1 |
========================================== ========================================== | |
TMUX COMMAND WINDOW (TAB) | |
========================================== ========================================== | |
List tmux ls List ^b w | |
New -s <session> Create ^b c | |
Attach att -t <session> Rename ^b , <name> | |
Rename rename-session -t <old> <new> Last ^b l (lower-L) | |
Kill kill-session -t <session> Close ^b & |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
delay=0.2 | |
title='default' | |
count=0 | |
loop=1 #0 for infinite loop | |
# Set if you want to skip mouse selection | |
if [[ $# -eq 6 ]] | |
then |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../chart-js/chart-js.html"> | |
<link rel="import" href="../smoothie-chart/smoothie-chart.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |