๐
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
| CC=gcc | |
| LDFLAGS=-lusb-1.0 | |
| CFLAGS=-c -Wall | |
| SRC=test_iso.c | |
| OBJ=$(SRC:.c=.o) | |
| EXEC=iso | |
| .PHONY: all clean | |
| .SECONDARY: main-build |
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
| import sys | |
| import time | |
| import os | |
| import serial | |
| import argparse | |
| import math | |
| flasher = None | |
| file = None | |
| isPython2 = sys.hexversion < 0x3000000 | |
| ## ---------------------- Function 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
| clc; close all; clear; | |
| LIMIT = 500; | |
| N_CHANNEL = 6; | |
| % clear opened usb port | |
| if ~isempty(instrfind) | |
| fclose(instrfind); | |
| delete(instrfind); | |
| 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
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: rbnb | |
| # Required-Start: $local_fs $remote_fs $network $syslog $named | |
| # Required-Stop: $local_fs $remote_fs $network $syslog $named | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts the dataturbine rbnb server | |
| # Description: starts rbnb using start-stop-daemon |
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 chardet.universaldetector import UniversalDetector | |
| import os, sys | |
| pwd = os.getcwd() | |
| files = [] | |
| if len(sys.argv) == 1: | |
| for (dirpath, dirname, filenames) in os.walk(pwd): | |
| files.extend(filenames) | |
| break | |
| else: |
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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <gdipp> | |
| <version>0.9.1</version> | |
| <gdimm> | |
| <process name="(eclipse|notepad.+)\.exe"> | |
| <freetype> | |
| <cache_max_faces>32</cache_max_faces> | |
| <cache_max_sizes>32</cache_max_sizes> | |
| <cache_max_bytes>4194304</cache_max_bytes> |
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
| var list = document.getElementById('entrylist') , data=[]; | |
| if(list.children[0] && list.children[0].children[0] && list.children[0].children[0].children[1]) | |
| list = list.children[0].children[0].children[1].children; | |
| for(i=0, len=list.length; i<len; i++) { | |
| var date = list[i].children[1].innerHTML.split('.').join('/') | |
| ,title = list[i].children[2].innerHTML | |
| ,directory = list[i].children[3].innerHTML | |
| ,category = list[i].children[4].innerHTML |
NewerOlder