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
;; 4k, k being boltzmann's constant. See 'u v' to see defined units and constants. | |
3: 4 k ;; ' 4 k | |
2: 5.5226016e-20 g m^2 / K s^2 ;; u b | |
1: 5.5226016e-20 ;; u r |
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
Simple mixer control 'Master',0 | |
Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum | |
Playback channels: Mono | |
Limits: Playback 0 - 64 | |
Mono: Playback 52 [81%] [-12.00dB] [on] | |
Simple mixer control 'Headphone',0 | |
Capabilities: pvolume pswitch penum | |
Playback channels: Front Left - Front Right | |
Limits: Playback 0 - 64 | |
Mono: |
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
Simple mixer control 'Master',0 | |
Capabilities: pvolume pvolume-joined pswitch pswitch-joined penum | |
Playback channels: Mono | |
Limits: Playback 0 - 64 | |
Mono: Playback 64 [100%] [0.00dB] [on] | |
Simple mixer control 'Headphone',0 | |
Capabilities: pvolume pswitch penum | |
Playback channels: Front Left - Front Right | |
Limits: Playback 0 - 64 | |
Mono: |
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
(defun isearch-find-grep () | |
"Call `find-grep' with the last search string." | |
(interactive) | |
(grep-compute-defaults) | |
(let ((grep-host-defaults-alist) | |
(grep-find-command | |
(cons (replace-regexp-in-string " {}" | |
(concat isearch-string " {}") | |
(car grep-find-command)) | |
(cdr grep-find-command)))) |
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
gc.authenticate_local_user(function (error) | |
if (not error) then | |
klog.info ("Game Center authentication OK!") | |
rr_gc.user_authenticated = gc.local_user_id() | |
-- uncomment the next line to reset GC achievements on launch | |
-- gc.reset_achievements(function () print "achievements reset ok!" end) | |
else | |
rr_gc.user_authenticated = false | |
klog.warning("Game Center authentication failed: "..error) | |
end |
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
Module Size Used by | |
usbhid 36110 0 | |
hid 67032 1 usbhid | |
softdog 3109 1 | |
autofs4 22715 2 | |
binfmt_misc 6587 1 | |
lp 7028 0 | |
dm_crypt 11331 0 | |
snd_hda_codec_realtek 203168 1 | |
snd_hda_intel 21877 0 |
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
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |
; Clocks ; | |
+---------------------------------------------------+-----------+----------+-----------+-------+----------+------------+-----------+-------------+-------+--------+-----------+------------+----------+--------+-----------------------------------------------------+-------------------------------------------------------+ | |
; Clock Name ; Type ; |
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
-- from GCController.h | |
ffi.cdef "typedef signed char BOOL;" -- from objc.h | |
ffi.cdef "void klua_gc_auth_local_user();" | |
ffi.cdef "void klua_gc_submit_achievement(const char *achievement_id, double progress, BOOL completion_banner);" | |
ffi.cdef "void klua_gc_reset_achievements();" |
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
# | |
# postprocesador de i2c logger | |
# | |
# funciones: | |
# parse_i2c_log_messages {bytes} | |
# pretty_print_i2c_log {messages filename} | |
# | |
# (ver ejemplo de uso al final) | |
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
objc = require("tlc") | |
ffi= require "ffi" | |
-- objc.loadFramework("AppKit") | |
-- objc.loadFramework("CoreFoundation") | |
-- objc.loadFramework("Foundation") | |
-- objc.loadFramework("Carbon") | |
pool = objc.NSAutoreleasePool:new() | |
aUrl = objc.NSURL:URLWithString(objc.NSStr("http://10.10.10.1/")) |