- Adicionar uma entrada a lista de chamadas do sistema, nos arquivos
/usr/src/include/minix/callnr.h
#define SEM_GET 114
// Scans an object for WSH-Panel callbacks, and registers them. | |
function registerFooCallbacks(obj) | |
{ | |
if(!(obj instanceof Object)) | |
return false; | |
// grab a reference to the global context | |
var global = (function() { return this; })(); | |
for(var attr in obj) { |
/* Keymap for ABNT-2 Brazilian Portuguese - David Augusto / Daniel Miranda 2012 */ | |
/* scan-code !Shift Shift Alt1 Alt2 Alt+Sh Ctrl */ | |
/* ==================================================================== */ | |
/* 00 - none */ 0, 0, 0, 0, 0, 0, | |
/* 01 - ESC */ C('['), C('['), CA('['),CA('['),CA('['),C('['), | |
/* 02 - '1' */ '1', '!', A('1'), A('1'), A('!'), C('A'), | |
/* 03 - '2' */ '2', '@', A('2'), A('2'), A('@'), C('@'), | |
/* 04 - '3' */ '3', '#', A('3'), A('3'), A('#'), C('C'), | |
/* 05 - '4' */ '4', '$', A('4'), A('4'), A('$'), C('D'), |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Monokai</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> |
1a) s3 -> s4 -> s3 -> ... | |
falsa | |
1b) s3 -> s4 | |
falsa | |
1c) s3 -> s4 -> s3 |
char buf[10]; | |
if(fgets(buf, sizeof(buf), stdin) != NULL) | |
// blah |
// Author: pcsmith | |
// Modifications: danielkza ([email protected]) | |
// License: GPLv3 https://www.gnu.org/licenses/gpl.html | |
// More info: http://rsmods.oakey-dev.eu/index.php?title=Savegame_Transfer | |
// | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> |
<# | |
.SYNOPSIS | |
Automatic NVIDIA memory clock tester | |
.DESCRIPTION | |
Using MemTestG80 and MSI Afterburner, this program automatically tests | |
memory clocks to find the highest stable clock possible. | |
MSI Afterburner must be running, and a driver supporting CUDA must be | |
installed (any recent driver should be fine). |
import os | |
import shutil | |
rootDir = 'G:/testasd/' | |
print('[',rootDir,']') | |
for (dirPath, dirNames, fileNames) in os.walk(rootDir): | |
for file in fileNames: | |
root, ext = os.path.splitext(file) | |
if ext not in ('.mp3', '.flac', '.m4a'): |
#!/bin/bash | |
SSH=$(which ssh) | |
hosts=() | |
params=() | |
sep_found=0 | |
for arg in "$@" | |
do |