This file contains hidden or 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
" if you don't start your own .vimrc you probably haven't understand why you should use vim at all..... | |
" start it and enter :help <RET> |
This file contains hidden or 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
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'> | |
<article> | |
<h1>Andre Bossard</h1> | |
<p> | |
<label class="tags">Likes:</label> | |
<span class="tag">Programming</span> | |
<span class="tag">Coaching</span> | |
<span class="tag">Java</span> |
This file contains hidden or 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
/** | |
* Autodo ME/US | |
*/ | |
background: #f06; | |
background: linear-gradient(45deg, #f06, yellow); | |
min-height: 100%; |
This file contains hidden or 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
<div id="layout"> | |
<div id="header">HEADER</div> | |
<div class="side"> | |
<p>SIDE</p> | |
</div> | |
<div class="other side"> | |
<p>SIDE 2</p> | |
</div> | |
<div id="content"> |
This file contains hidden or 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
RuntimeError at /de-ch/admin/cms/page/67/copy-page/ | |
maximum recursion depth exceeded | |
Request Method: POST | |
Request URL: http://cms.myproject.com/de-ch/admin/cms/page/67/copy-page/ | |
Django Version: 1.5.5 | |
Python Executable: /home/mycompany/myproject_cms/bin/python | |
Python Version: 2.7.3 | |
Python Path: ['/home/mycompany/myproject_cms', '/home/mycompany/myproject_cms/local/lib/python2.7/site-packages/distribute-0.6.24-py2.7.egg', '/home/mycompany/myproject_cms/local/lib/python2.7/site-packages/pip-1.1-py2.7.egg', '/home/mycompany/django-myproject_cms', '/home/mycompany/myproject_cms/lib/python2.7', '/home/mycompany/myproject_cms/lib/python2.7/plat-linux2', '/home/mycompany/myproject_cms/lib/python2.7/lib-tk', '/home/mycompany/myproject_cms/lib/python2.7/lib-old', '/home/mycompany/myproject_cms/lib/python2.7/lib-dynload', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-linux2', '/usr/lib/python2.7/lib-tk', '/home/mycompany/myproject_cms/local/lib/python2.7/site-packages'] | |
Server time: Di, 17 Dez 2013 08:16:41 +0000 |
This file contains hidden or 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
input { | |
stdin { | |
type => "stdin-type" | |
} | |
syslog { | |
type => syslog | |
port => 514 | |
} | |
file { | |
type => "syslog" |
This file contains hidden or 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
// Based on Swift 1.2, ObjectMapper 0.15, RealmSwift 0.94.1 | |
// Author: Timo Wälisch <[email protected]> | |
import UIKit | |
import RealmSwift | |
import ObjectMapper | |
import SwiftyJSON | |
class ArrayTransform<T:RealmSwift.Object where T:Mappable> : TransformType { | |
typealias Object = List<T> |
This file contains hidden or 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
const R = require('ramda'); | |
const azure = require('azure-storage'); | |
const retryOperations = new azure.ExponentialRetryPolicyFilter(); | |
const tableSvc = azure.createTableService().withFilter(retryOperations); | |
const data = 'Z'.repeat(64 * 100) | |
const tableName = 'shibbydatalist' | |
const defaultEntity = R.range(1, 30).reduce(function (result, bucketNumber) { | |
result['T' + bucketNumber] = data | |
return result; | |
}, {}); |
This file contains hidden or 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
open FSharp.Data | |
type Product = { id: string; name: string } | |
let products = | |
[ { id = "785446600000" | |
name = "XBox Series X" } | |
{ id = "785445800000" | |
name = "PlayStation 5 Digital Edition" } | |
{ id = "785445700000" |
This file contains hidden or 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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: myapp | |
spec: | |
replicas: 3 | |
selector: | |
matchLabels: | |
app: myapp | |
template: |
OlderNewer