- Open group info
- Click more to show all group members
- Open Javascript console
- Paste the code
- Admins aren't exported
- Users without image cannot be exported
namespace :spork do | |
SPORK_PORT = (ENV['SPORK_PORT'] || 8988).to_i | |
FRAMEWORKS = %w[testunit rspec cucumber] | |
desc "Start all Spork frameworks" | |
task 'start' => FRAMEWORKS.map{ |f| "spork:#{f}:start" } | |
desc "Stop all Spork frameworks" | |
task 'stop' => FRAMEWORKS.map{ |f| "spork:#{f}:stop" } |
#!/usr/bin/env ruby | |
# | |
# https://gist.github.com/brauliobo/5512890 | |
# Authors: Bráulio Bhavamitra <[email protected]> and Hugo Melo <[email protected]> | |
# License: GPLv3 | |
# | |
# A script to convert your source code`s calls to _() (gettext) to t() (ruby i18n). | |
# | |
# Convert text string to a key along with the file path. Example: | |
# Call _('Name') into source views/profile/index.index output into config/locales/en.yml: |
# based on http://sounoob.com.br/consultar-frete-utilizando-webservice-dos-correios-php/ | |
require 'rubygems' | |
require 'uri' | |
require 'net/http' | |
require 'active_support/all' | |
require 'nokogiri' | |
Pac = 41106 |
RailsRoot = File.expand_path "#{File.dirname __FILE__}/.." | |
PidsDir = "#{RailsRoot}/tmp/pids" | |
OldPidFile = "#{PidsDir}/unicorn.pid.oldbin" | |
ListenAddress = "127.0.0.1" | |
ListenPort = 50000 | |
UnixListen = "tmp/unicorn.sock" | |
Backlog = 2048 | |
Workers = 4 |
<html> | |
<head> | |
<style> | |
body { | |
margin: 0; //overwrite browser | |
height: 100%; | |
} | |
.header { | |
background-color: #D0D0D0; |
#!/bin/bash | |
# Check if a value exists in an array | |
# @param $1 mixed Needle | |
# @param $2 array Haystack | |
# @return Success (0) if value exists, Failure (1) otherwise | |
# Usage: in_array "$needle" "${haystack[@]}" | |
# See: http://fvue.nl/wiki/Bash:_Check_if_array_element_exists | |
in_array() { | |
local hay needle=$1 |
08-13 18:30:43.017 2553 2553 D boot : cbd: get_cmdline_str: find str androidboot.debug_level=0x4f4c form /proc/cmdline | |
08-13 18:30:43.017 2553 2553 D boot : cbd: check_debug_level: androidboot.debug_level=0x4f4c, 0 | |
08-13 18:30:43.017 2553 2553 D boot : cbd: check_debug_level: debug level=0, cp_debug=0 | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: Daemon Mode | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: SS310 modem | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: boot SHMEM link | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: main SHMEM link | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: partition number : platform/13540000.dwmmc0/by-name/RADIO | |
08-13 18:30:43.017 2553 2553 D boot : cbd: main: partition path : /dev/block/platform/13540000.dwmmc0/by-name/RADIO | |
08-13 18:30:43.017 2553 2553 I chatty : uid=1001(radio) /sbin/cbd expire 25 lines |
# begin build properties | |
# autogenerated by buildinfo.sh | |
ro.build.id=NJH47F | |
ro.build.display.id=lineage_a5y17lte-userdebug 7.1.2 NJH47F dbd9ed3594 test-keys | |
ro.build.version.incremental=dbd9ed3594 | |
ro.build.version.sdk=25 | |
ro.build.version.preview_sdk=0 | |
ro.build.version.codename=REL | |
ro.build.version.all_codenames=REL |
//var bkg = chrome.extension.getBackgroundPage(); | |
var calls = {}; | |
// Shows settings on install. | |
chrome.runtime.onInstalled.addListener(function(details) { | |
if(details.reason && (details.reason === 'install') || (details.reason === 'update')){ | |
chrome.tabs.create({url: "options.html"}); | |
} | |
}); | |
// Show settings when clicking on the icon. |