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
$ ulimit -a | |
core file size (blocks, -c) 0 | |
data seg size (kbytes, -d) unlimited | |
scheduling priority (-e) 0 | |
file size (blocks, -f) unlimited | |
pending signals (-i) 63933 | |
max locked memory (kbytes, -l) 64 | |
max memory size (kbytes, -m) unlimited | |
open files (-n) 1024 | |
pipe size (512 bytes, -p) 8 |
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
myuser: | |
user: | |
- present | |
- uid: 1234 | |
- gid: 1234 | |
- remove_groups: False | |
- password: $6$asdfasdfasdfasdfasdfasdfasdfasdfasdfasdf | |
- shell: /bin/bash | |
- home: /home/myuser | |
- require: |
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
#!/bin/sh | |
# | |
# � 2010 Western Digital Technologies, Inc. All rights reserved. | |
# | |
# monitorVolume.sh | |
# Note: this is called by cron | |
# | |
# | |
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin |
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
public class DrawingPanel extends SurfaceView implements SurfaceHolder.Callback { | |
private final Drawable mCustomImage; | |
@Override | |
public void onDraw(Canvas canvas) { | |
super.onDraw(canvas); | |
mCustomImage.setBounds(new Rect(0, 0, 50, 50)); | |
mCustomImage.draw(canvas); |
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
#!/usr/bin/env python2 | |
# python2 bulk_register.py < accounts.txt > registered.txt | |
# format accounts.txt like 'username:password:email' | |
import requests | |
import sys | |
accounts = [a.split(":") for a in sys.stdin.read().split("\n") if a.strip() != ""] | |
base = "https://feelinsonice.appspot.com" | |
for account in accounts: |
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
package com.garagze; | |
import android.app.Activity; | |
import android.app.Fragment; | |
import android.app.FragmentManager; | |
import android.os.Bundle; | |
import android.view.LayoutInflater; | |
import android.view.Menu; | |
import android.view.MenuItem; | |
import android.view.View; |
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
SimpleGit: checking out | |
Clear Workspace enabled: deleting contents of /jenkins/workspace/Commit_pr. | |
- Executing: `/usr/bin/git clone git+ssh://[email protected]/attask .` | |
hudson.util.IOException2: remote file operation failed: /jenkins/workspace/Commit_pr at hudson.remoting.Channel@4274d50:commit-853 | |
at hudson.FilePath.act(FilePath.java:901) | |
at hudson.FilePath.act(FilePath.java:878) | |
at com.joelj.jenkins.Git.executeCommand(Git.java:69) | |
at com.joelj.jenkins.Git.cloneRepo(Git.java:61) | |
at com.joelj.jenkins.SimpleGitScm.checkout(SimpleGitScm.java:88) | |
at hudson.model.AbstractProject.checkout(AbstractProject.java:1369) |
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
Status Code: 500 | |
Exception: java.lang.NullPointerException | |
Stacktrace: | |
javax.servlet.ServletException: java.lang.NullPointerException | |
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:719) | |
at org.kohsuke.stapler.Stapler.invoke(Stapler.java:770) | |
at org.kohsuke.stapler.MetaClass$6.doDispatch(MetaClass.java:241) | |
at org.kohsuke.stapler.NameBasedDispatcher.dispatch(NameBasedDispatcher.java:53) | |
at org.kohsuke.stapler.Stapler.tryInvoke(Stapler.java:677) |
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
wget http://nodejs.org/dist/node-latest.tar.gz | |
tar zxvf node-latest.tar.gz | |
cd node-v0.10.18/ | |
./configure | |
make | |
make install |
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
<?php | |
$ua = $_SERVER["HTTP_USER_AGENT"]; | |
/* | |
if(strpos($_SERVER["HTTP_HOST"],"kmobs")) { | |
header('Location: kmobsmod/index.php'); | |
} | |
else */ | |
if (strpos($ua,"Android")) { | |
header ('Location: index_android.php'); |