Aktív témák
-
DrojDtroll
veterán
-
DrojDtroll
veterán
hi
-
DrojDtroll
veterán
@-moz-document domain(prohardver.hu) {
#thanks, #foot, #left{
display:none
}
#center, .msgblk{
width:550px;
}
#head, #shadow, #main{
width:760px;
}
#right{
float:left;
}
.social{
position: relative;
}
.msgblk .text, .msgblk .text p, .msgblk .text pre{
width: 425px;
}
}
@-moz-document domain(itcafe.hu) {
#thanks, #foot, #left{
display:none
}
#center, .msgblk{
width:550px;
}
#head, #shadow, #main{
width:760px;
}
#right{
float:left;
}
.social{
position: relative;
}
.msgblk .text, .msgblk .text p, .msgblk .text pre{
width: 425px;
}
}
@-moz-document domain(mobilarena.hu) {
#thanks, #foot, #left{
display:none
}
#center, .msgblk{
width:550px;
}
#head, #shadow, #main{
width:760px;
}
#right{
float:left;
}
.social{
position: relative;
}
.msgblk .text, .msgblk .text p, .msgblk .text pre{
width: 425px;
}
}
@-moz-document domain(gamepod.hu) {
#thanks, #foot, #left{
display:none
}
#center, .msgblk{
width:550px;
}
#head, #shadow, #main{
width:760px;
}
#right{
float:left;
}
.social{
position: relative;
}
.msgblk .text, .msgblk .text p, .msgblk .text pre{
width: 425px;
}
} -
DrojDtroll
veterán
// I don't remember where this came from, it was a direct copy/paste from someone else on the net.
// All credit goes to the author, whoever he or she is. I'm sorry :(
//
// NB: ALL NOTES DEFINED WITH STANDARD ENGLISH NAMES, EXCEPT FROM "A"
//THAT IS CALLED WITH THE ITALIAN NAME "LA" BECAUSE A0,A1...ARE THE ANALOG PINS ON ARDUINO.
// (Ab IS CALLED Ab AND NOT LAb)
#define C0 16.35
#define Db0 17.32
#define D0 18.35
#define Eb0 19.45
#define E0 20.60
#define F0 21.83
#define Gb0 23.12
#define G0 24.50
#define Ab0 25.96
#define LA0 27.50
#define Bb0 29.14
#define B0 30.87
#define C1 32.70
#define Db1 34.65
#define D1 36.71
#define Eb1 38.89
#define E1 41.20
#define F1 43.65
#define Gb1 46.25
#define G1 49.00
#define Ab1 51.91
#define LA1 55.00
#define Bb1 58.27
#define B1 61.74
#define C2 65.41
#define Db2 69.30
#define D2 73.42
#define Eb2 77.78
#define E2 82.41
#define F2 87.31
#define Gb2 92.50
#define G2 98.00
#define Ab2 103.83
#define LA2 110.00
#define Bb2 116.54
#define B2 123.47
#define C3 130.81
#define Db3 138.59
#define D3 146.83
#define Eb3 155.56
#define E3 164.81
#define F3 174.61
#define Gb3 185.00
#define G3 196.00
#define Ab3 207.65
#define LA3 220.00
#define Bb3 233.08
#define B3 246.94
#define C4 261.63
#define Db4 277.18
#define D4 293.66
#define Eb4 311.13
#define E4 329.63
#define F4 349.23
#define Gb4 369.99
#define G4 392.00
#define Ab4 415.30
#define LA4 440.00
#define Bb4 466.16
#define B4 493.88
#define C5 523.25
#define Db5 554.37
#define D5 587.33
#define Eb5 622.25
#define E5 659.26
#define F5 698.46
#define Gb5 739.99
#define G5 783.99
#define Ab5 830.61
#define LA5 880.00
#define Bb5 932.33
#define B5 987.77
#define C6 1046.50
#define Db6 1108.73
#define D6 1174.66
#define Eb6 1244.51
#define E6 1318.51
#define F6 1396.91
#define Gb6 1479.98
#define G6 1567.98
#define Ab6 1661.22
#define LA6 1760.00
#define Bb6 1864.66
#define B6 1975.53
#define C7 2093.00
#define Db7 2217.46
#define D7 2349.32
#define Eb7 2489.02
#define E7 2637.02
#define F7 2793.83
#define Gb7 2959.96
#define G7 3135.96
#define Ab7 3322.44
#define LA7 3520.01
#define Bb7 3729.31
#define B7 3951.07
#define C8 4186.01
#define Db8 4434.92
#define D8 4698.64
#define Eb8 4978.03
// DURATION OF THE NOTES
#define BPM 120 // you can change this value changing all the others
#define H 2*Q //half 2/4
#define Q 60000/BPM //quarter 1/4
#define E Q/2 //eighth 1/8
#define S Q/4 // sixteenth 1/16
#define W 4*Q // whole 4/4
#define pinOut 10
void setup() {
pinMode(8, OUTPUT);
pinMode(9, OUTPUT);
pinMode(10, OUTPUT);
digitalWrite(8,LOW);
digitalWrite(9,LOW);
}
// the loop routine runs over and over again forever:
void loop() {
//tone(pin, note, duration)
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
tone(pinOut,LA3,Q);
delay(5+Q); //delay duration should always be 1 ms more than the note in order to separate them.
tone(pinOut,LA3,Q);
delay(5+Q);
tone(pinOut,LA3,Q);
delay(5+Q);
tone(pinOut,F3,E+S);
delay(5+E+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,LA3,Q);
delay(5+Q);
tone(pinOut,F3,E+S);
delay(5+E+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,LA3,H);
delay(5+H);
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
tone(pinOut,E4,Q);
delay(5+Q);
tone(pinOut,E4,Q);
delay(5+Q);
tone(pinOut,E4,Q);
delay(5+Q);
tone(pinOut,F4,E+S);
delay(5+E+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,Ab3,Q);
delay(5+Q);
tone(pinOut,F3,E+S);
delay(5+E+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,LA3,H);
delay(5+H);
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
tone(pinOut,LA4,Q);
delay(5+Q);
tone(pinOut,LA3,E+S);
delay(5+E+S);
tone(pinOut,LA3,S);
delay(5+S);
tone(pinOut,LA4,Q);
delay(5+Q);
tone(pinOut,Ab4,E+S);
delay(5+E+S);
tone(pinOut,G4,S);
delay(5+S);
tone(pinOut,Gb4,S);
delay(5+S);
tone(pinOut,E4,S);
delay(5+S);
tone(pinOut,F4,E);
delay(5+E);
delay(5+E);//PAUSE
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
tone(pinOut,Bb3,E);
delay(5+E);
tone(pinOut,Eb4,Q);
delay(5+Q);
tone(pinOut,D4,E+S);
delay(5+E+S);
tone(pinOut,Db4,S);
delay(5+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,B3,S);
delay(5+S);
tone(pinOut,C4,E);
delay(5+E);
delay(5+E);//PAUSE QUASI FINE RIGA
tone(pinOut,F3,E);
delay(5+E);
tone(pinOut,Ab3,Q);
delay(5+Q);
tone(pinOut,F3,E+S);
delay(5+E+S);
tone(pinOut,LA3,S);
delay(5+S);
tone(pinOut,C4,Q);
delay(5+Q);
tone(pinOut,LA3,E+S);
delay(5+E+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,E4,H);
delay(5+H);
tone(pinOut,LA4,Q);
delay(5+Q);
tone(pinOut,LA3,E+S);
delay(5+E+S);
tone(pinOut,LA3,S);
delay(5+S);
tone(pinOut,LA4,Q);
delay(5+Q);
tone(pinOut,Ab4,E+S);
delay(5+E+S);
tone(pinOut,G4,S);
delay(5+S);
tone(pinOut,Gb4,S);
delay(5+S);
tone(pinOut,E4,S);
delay(5+S);
tone(pinOut,F4,E);
delay(5+E);
delay(5+E);//PAUSE
tone(pinOut,Bb3,E);
delay(5+E);
tone(pinOut,Eb4,Q);
delay(5+Q);
tone(pinOut,D4,E+S);
delay(5+E+S);
tone(pinOut,Db4,S);
delay(5+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,B3,S);
delay(5+S);
tone(pinOut,C4,E);
delay(5+E);
delay(5+E);//PAUSE QUASI FINE RIGA
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
digitalWrite(13,LOW);
delay(50);
digitalWrite(13,HIGH);
delay(50);
tone(pinOut,F3,E);
delay(5+E);
tone(pinOut,Ab3,Q);
delay(5+Q);
tone(pinOut,F3,E+S);
delay(5+E+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,LA3,Q);
delay(5+Q);
tone(pinOut,F3,E+S);
delay(5+E+S);
tone(pinOut,C4,S);
delay(5+S);
tone(pinOut,LA3,H);
delay(5+H);
delay(2*H);
} -
DrojDtroll
veterán
#thanks, #foot, #left{
display:none
}
#center, .msgblk{
width:550px;
}
#head, #shadow, #main{
width:760px;
}
#right{
float:left;
}
.social{
position: relative;
}
.msgblk .text, .msgblk .text p, .msgblk .text pre{
width: 425px;
} -
DrojDtroll
veterán
asdfgsdfgh
sdfg
dfs
gdfsfg
sdf
g
sdffd
gsdf
g
sdfg
sd
fg
sdf
g
dsf
g
sdf
g
sdfgdfskgnkjdsffffffffffffffffffffffffff -
DrojDtroll
veterán
const int dead_zone_size=150;
const int x_pos_start=512+dead_zone_size;
const int x_neg_start=512-dead_zone_size;
const int y_pos_start=512+dead_zone_size;
const int y_neg_start=512-dead_zone_size;
const int x_pin=A0;
const int y_pin=A1;
int divi=20;
int fader=20;
int val_x;
int val_y;
int temp;
int temp2=-1;
int pulsePIN=13;
int dirPIN=12;
int neg;
int motor_speed_x=0;
int ser_mot = 1;
int ser_temp = 0;
void setup(){
Serial.begin(9600);
pinMode(pulsePIN, OUTPUT);
pinMode(dirPIN, OUTPUT);
}
void loop(){
val_x=analogRead(x_pin);
/*val_y=analogRead(y_pin);*/
temp=0;
if(val_x<x_neg_start){
temp=map(val_x, x_neg_start, 0, 0, divi);
neg=0;
step();
}
if(val_x>x_pos_start){
neg=1;
temp=map(val_x, x_pos_start, 1023, 0, divi);
step();
}
if(is_in_deadzone()){
stop_motor();
}
}
void step(){
if(temp!=divi+1){ //impos
if(neg==0){
digitalWrite(dirPIN, LOW);
}else{
digitalWrite(dirPIN, HIGH);
}
if(ser_temp==1){
Serial.println(temp);
}
if(temp2>temp){ //lassit
while(temp*fader!=motor_speed_x){
motor_speed_x--;
if(ser_mot==1){
Serial.println(motor_speed_x);
}
}
}else{
if(temp2<temp){ //gyorsit
while(temp*fader!=motor_speed_x){
motor_speed_x++;
if(ser_mot==1){
Serial.println(motor_speed_x);
}
}
}
}
temp2=temp;
/*digitalWrite(13, HIGH);
delayMicroseconds((20-temp+1)*100);
digitalWrite(13, LOW);
delayMicroseconds(100);*/
}
}
void stop_motor(){
while(motor_speed_x!=0){
motor_speed_x--;
Serial.println(motor_speed_x);
}
}
int is_in_deadzone(){
if(val_x>x_neg_start && val_x<x_pos_start){
return 1;
}else{
return 0;
}
} -
DrojDtroll
veterán
https://github.com/joshvillbrandt/goprohero
gopro
hero
robot
python
ev3
ev3dev
linux
whatpythoncando -
DrojDtroll
veterán
https://m.prohardver.hu/tema/re_microsoft_lumia_640_es_640_xl_testverek_egymas/hsz_19118-19118.html
-
DrojDtroll
veterán
#!/bin/bash
xrandr --newmode "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
xrandr --addmode DVI-0 1440x900_59.90
xrandr --addmode DVI-1 1440x900_59.90
xrandr --output DVI-1 --mode 1440x900_59.90
xrandr --output DVI-0 --mode 1440x900_59.90
xrandr --auto --output DVI-0 --mode 1440x900_59.90 --left-of DVI-1 -
DrojDtroll
veterán
http://aktivitas-tiszk.hu/elearning/Obuch_Laszlo/Tervezesi_alapismeretek.pdf
-
DrojDtroll
veterán
http://techean.com/best-songs-listen-hackingcoding/
-
DrojDtroll
veterán
https://www.google.hu/url?sa=t&rct=j&q=&esrc=s&source=web&cd=3&cad=rja&uact=8&ved=0ahUKEwjZw5So0NTOAhXIvRQKHbJ6C38QFgg4MAI&url=http%3A%2F%2Fofalcao.pt%2Fblog%2F2016%2Fwedo-2-0-reverse-engineering&usg=AFQjCNELI1kVFJdTR5ly_DPMqacLezW5Cw
-
DrojDtroll
veterán
from ev3.lego import *
import time
p=0
f=1
r=2
l=3
b=4
left_motor=Motor(port=Motor.PORT.C)
right_motor=Motor(port=Motor.PORT.D)
us_right=UltrasonicSensor(2)
us_left=UltrasonicSensor(3)
us_back=UltrasonicSensor(4)
ir_front=InfraredSensor(1)
x=0
y=0
arena=[]
limit=15
def main():
count=0
walls=[]
left=[]
right=[]
front=[]
back=[]
pos=[]
pos.append(x)
pos.append(y)
print "started"
left.append(us_left.dist_cm<limit)
left.append(False)
right.append(us_right.dist_cm<limit)
right.append(False)
front.append(ir_front.prox<limit)
front.append(False)
back.append(False)
back.append(True)
walls.append(pos)
walls.append(front)
walls.append(right)
walls.append(back)
walls.append(left)
arena.append(walls)
while not end(count):
if arena[count][r][0] == False and arena[count][r][1] == False:
right_90()
elif arena[count][l][0] == False and arena[count][l][1] == False:
left_90()
elif arena[count][f][0] == False and arena[count][f][1] == False:
foward()
print "f:"+str(front)+" r:"+str(right)+" l:"+str(left)+" b:"+str(back)
time.sleep(1)
walls=[]
left=[]
right=[]
front=[]
back=[]
pos=[]
def end(count):
if count>-1:
return False
else:
return True
def right_90():
print "right turn"
def left_90():
print "left turn"
left_motor.run_position_limited(position_sp=360, speed_sp=800, stop_mode=Motor.STOP_MODE.BRAKE , ramp_up_sp=1000, ramp_down_sp=1000)
def foward():
print "foward"
if __name__ == "__main__":
main() -
DrojDtroll
veterán
from ev3.lego import *
import time
us_right=UltrasonicSensor(2)
us_left=UltrasonicSensor(3)
us_back=UltrasonicSensor(4)
ir_front=InfraredSensor(1)
x=0
y=0
arena=[]
limit=15
def main():
walls=[]
left=[]
right=[]
front=[]
back=[]
pos=[]
print "started"
left.append(us_left.dist_cm<limit)
left.append(False)
right.append(us_right.dist_cm<limit)
right.append(False)
front.append(ir_front.prox<limit)
right.append(False)
back.append(False)
back.append(True)
while not end():
print "f:"+str(front)+" r:"+str(right)+" l:"+str(left)+" b:"+str(back)
time.sleep(1)
def end():
return False
if __name__ == "__main__":
main() -
DrojDtroll
veterán
-
DrojDtroll
veterán
from subprocess import Popen, PIPE
from time import sleep
import os
import sys
address=sys.argv[1]
def main():
print batteryLevel()
star_wars()
def batteryLevel():
process = Popen(["gatttool", "-i", "hci0", "-b", address, "--char-read", "-a", "0x0048"], stdout=PIPE, stderr=PIPE)
stdout, stderr = process.communicate()
stdout=stdout.split("\n")
stdout.pop()
stdout[0]=stdout[0].split(" ")
bat_level=int(stdout[0][2], 16)
return bat_level
def star_wars():
sleeps=[500, 500, 500, 350, 150, 500, 350, 150, 1000, 500, 500, 500, 350, 150, 500, 350, 150, 1000, 500, 350, 150, 500, 250, 250, 125, 125, 250, 250, 250, 500, 250, 250, 125, 125, 250, 250, 125, 500, 375, 125, 500, 375, 125, 1000, 500, 350, 150, 500, 250, 250, 125, 125, 250, 250, 250, 500, 250, 250, 125, 125, 250, 250, 250, 500, 375, 125, 500, 375, 125, 1000 ]
values=["a" ,"a" ,"a" ,"f" ,"cH" ,"a" ,"f" ,"cH" ,"a" ,"eH" ,"eH" ,"eH" ,"fH" ,"cH" ,"gS" ,"f" ,"cH" ,"a" ,"aH" ,"a" ,"a" ,"aH" ,"gSH" ,"gH" ,"fSH" ,"fH" ,"fSH" ,"none" ,"aS" ,"dSH" ,"dH" ,"cSH" ,"cH" ,"b" ,"cH" ,"none" ,"f" ,"gS" ,"f" ,"a" ,"cH" ,"a" ,"cH" ,"eH" ,"aH" ,"a" ,"a" ,"aH" ,"gSH" ,"gH" ,"fSH" ,"fH" ,"fSH" ,"none" ,"aS" ,"dSH" ,"dH" ,"cSH" ,"cH" ,"b" ,"cH" ,"none" ,"f" ,"gS" ,"f" ,"cH" ,"a" ,"f" ,"c" ,"a"]
#print len(sleeps)
#print len(values)
for i in range(0, len(sleeps)):
beep(values[i], sleeps[i])
def beep(a, b):
#gatttool -i hci0 -b $ADDRESS --char-write-req -a 0x003d -n 050204B801F401
t=0.001*b
#print t
if a=='a':
msg="050204B801F401"
elif a == 'f':
msg="0502045D015E01"
elif a == "cH":
msg="0502040B029600"
elif a == "fH":
msg="050204BA025E01"
elif a == "eH":
msg="0502049302F401"
elif a == "gS":
msg="0502049F01F401"
elif a == "aH":
msg="0502047003F401"
elif a == "dH":
msg="0502044B02FA00"
elif a == "gH":
msg="0502043E03FA00"
elif a == "fSH":
msg="050204E4027D00"
elif a == "dSH":
msg="0502046E02F401"
elif a == "aS":
msg="050204C701FA00"
elif a == "gSH":
msg="0502043E03FA00"
elif a == "cSH":
msg="0502042A02FA00"
elif a == "b":
msg="050204D2017D00"
elif a == "c":
msg="05020405017D00"
if a == "none":
sleep(t)
else:
process = Popen(["gatttool", "-i", "hci0", "-b", address, "--char-write-req", "-a", "0x003d", "-n", msg ], stdout=PIPE, stderr=PIPE)
sleep(t)
if __name__ == "__main__":
main() -
DrojDtroll
veterán
char-read-hnd 0x048
-
DrojDtroll
veterán
sm_umc_vote_tieramount "6"
-
DrojDtroll
veterán
def main():
print "process the image"
f= open("color.txt", "r")
data=f.read()
f.close()
data=data.split('\n')
data.pop()
for i in range(0, len(data)):
data[i]=data[i].split(',')
for i in range(0, len(data)):
for j in range(0, len(data[i])):
data[i][j]=int(data[i][j])
print data
f2=open("reference.txt", "r")
reference=f2.read()
f2.close()
reference=reference.split("\n")
reference.pop()
reference=reference[0].split(",")
for i in range(0, len(reference)):
reference[i]=int(reference[i])
print reference
lab_data=[]
for i in data:
lab_data.append(convert(i))
print lab_data
def convert(color):
temp = []
xyz = []
ref = []
ref.append(95.047)
ref.append(100.000)
ref.append(108.883)
for i in color:
temp.append(float(float(i)/255))
for i in range(0, len(temp)):
if temp[i] > 0.04045:
temp[i] = pow(((temp[i]+0.055)/1.055), 2.4)
else:
temp[i]= temp[i] / 12.92
xyz.append(temp[0]*0.4124 + temp[1]*0.3576 + temp[2]*0.1805)
xyz.append(temp[0]*0.2126 + temp[1]*0.7152 + temp[2]*0.0722)
xyz.append(temp[0]*0.0193 + temp[1]*0.1192 + temp[2]*0.9505)
for i in range(0, len(ref)):
temp[i]=xyz[i]/ref[i]
if temp[i] > 0.008856:
temp[i]= pow(temp[i], (1.0 / 3.0))
else:
temp[i]=(7.787 * temp[i]) + (16.0 / 116.0)
lab = []
lab.append((116.0 * temp[1]) - 16.0)
lab.append(500.0*(temp[0]-temp[1]))
lab.append(200.0*(temp[1]-temp[2]))
return lab
if __name__ == "__main__":
main() -
DrojDtroll
veterán
#define lb 0
#define lf 1
#define rb 2
#define rf 3
#define leftfow 10
#define leftback 9
#define rightfow 6
#define rightback 5
#define trigPin 13
#define echoPin 12
#define led 11
#define led2 10
#define speed 255
#define speed_arc 100
int dist();
void foward();
void backward();
void rt();
void lt();
void rt_arc();
void lt_arc();
void stop();
void rot_and_move();
void setup() {
Serial.begin (9600);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
}
void loop() {
int i;
stop();
while(dist()<50 && dist()!=300){
delay(100);
}
delay(500);
foward();
delay(1000);
for(i=0;i<5;i++){
rot_and_move();
}
stop();
while(1){
}
}
int dist(){
long duration, distance;
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = (duration/2) / 29.1;
if (distance >= 200 || distance <= 0){
return 300;
}
else {
return distance;
}
}
void foward(){
analogWrite(rightfow, speed);
analogWrite(rightback, 0);
analogWrite(leftfow, speed);
analogWrite(leftback, 0);
}
void backward(){
analogWrite(rightfow, 0);
analogWrite(rightback, speed);
analogWrite(leftfow, 0);
analogWrite(leftback, speed);
}
void rt(){
analogWrite(rightfow, 0);
analogWrite(rightback, speed);
analogWrite(leftfow, speed);
analogWrite(leftback, 0);
}
void lt(){
analogWrite(rightfow, speed);
analogWrite(rightback, 0);
analogWrite(leftfow, 0);
analogWrite(leftback, speed);
}
void rt_arc(){
analogWrite(rightfow, speed);
analogWrite(rightback, 0);
analogWrite(leftfow, speed_arc);
analogWrite(leftback, 0);
}
void lt_arc(){
analogWrite(rightfow, speed_arc);
analogWrite(rightback, 0);
analogWrite(leftfow, speed);
analogWrite(leftback, 0);
}
void stop(){
analogWrite(rightfow, 0);
analogWrite(rightback, 0);
analogWrite(leftfow, 0);
analogWrite(leftback, 0);
}
void rot_and_move(){
rt();
delay(700);
foward();
delay(1000);
rt();
delay(700);
backward();
delay(1000);
} -
DrojDtroll
veterán
#!/bin/bash
export PYTHONPATH=/home/baratiistok3/Downloads/pynaoqi-python2.7-2.1.2.17-linux64/
arp-scan -q --interface=enx1216534d15ac --localnet | grep -E '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' > ip.txt
NAO_IP=`arp-scan -q --interface=wlp2s0 --localnet | grep 00:13:95:16:65:82 | grep -o -E '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}'`
HOST=`cut -f1 ip.txt`
while true;
do
scrot image.png
convert image.png -resize 1x1 avg.png
convert avg.png txt: | grep -i "(.*,.*,.*)" > color.txt
COLOR=`cat color.txt | grep -Eo "[0-9]{1,3},[0-9]{1,3},[0-9]{1,3}" | head -n1`
cat color.txt | grep -Eo "[0-9]{1,3},[0-9]{1,3},[0-9]{1,3}" | head -n1
python current.py $COLOR
if [ $COLOR = "8,26,27" ]; then
echo humaoid
pyton nao.py $NAO_IP
fi
MSG=`python current.py $COLOR`
python send.py $HOST $MSG
#sleep 1
done -
DrojDtroll
veterán
from naoqi import ALProxy
import sys
import os
import time
def main():
ip = sys.argv[1]
port = 9559
path = "/home/nao/"
file_name = "img"
ext="png"
print ip
videoProxy=ALProxy("ALVideoDevice", ip, port)
captureProxy=ALProxy("ALPhotoCapture", ip, port)
motionProxy=ALProxy("ALMotion", ip, port)
postureProxy=ALProxy("ALRobotPosture", ip, port)
active_cam=videoProxy.getActiveCamera()
motionProxy.setStiffnesses("Body", 1)
postureProxy.goToPosture("Stand", 1.0)
print active_cam
if active_cam == 1:
videoProxy.setActiveCamera(0)
captureProxy.setPictureFormat(ext)
captureProxy.takePicture(path, file_name)
send(ip, path, file_name, ext)
motionProxy.move(0, 0, 1)
time.sleep(3)
motionProxy.move(0, 0, 0)
time.sleep(3)
motionProxy.move(0, 0, -1)
time.sleep(3)
motionProxy.stopMove()
def send(ip, path, file_name, ext):
os.system("scp nao@"+ip+":"+path+file_name+"."+ext+" "+"/home/baratiistok3/robocup/img_rem.png " ) -
DrojDtroll
veterán
-
DrojDtroll
veterán
#define lb 0
#define lf 1
#define rb 2
#define rf 3
#define leftfow 10
#define leftback 9
#define rightfow 6
#define rightback 5
#define trigPin 13
#define echoPin 12
#define led 11
#define led2 10
#define speed 255
#define speed_arc 100
int dist();
void foward();
void backward();
void rt();
void lt();
void rt_arc();
void lt_arc();
void stop();
void setup() {
Serial.begin (9600);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
}
void loop() {
stop();
while(dist()<50 && dist()!=300){
delay(100);
}
delay(500);
}
int dist(){
long duration, distance;
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = (duration/2) / 29.1;
if (distance >= 200 || distance <= 0){
return 300;
}
else {
return distance;
}
}
void foward(){
analogWrite(rightfow, speed);
analogWrite(rightback, 0);
analogWrite(leftfow, speed);
analogWrite(leftback, 0);
}
void backward(){
analogWrite(rightfow, 0);
analogWrite(rightback, speed);
analogWrite(leftfow, 0);
analogWrite(leftback, speed);
}
void rt(){
analogWrite(rightfow, 0);
analogWrite(rightback, speed);
analogWrite(leftfow, speed);
analogWrite(leftback, 0);
}
void lt(){
analogWrite(rightfow, speed);
analogWrite(rightback, 0);
analogWrite(leftfow, 0);
analogWrite(leftback, speed);
}
void rt_arc(){
analogWrite(rightfow, speed);
analogWrite(rightback, 0);
analogWrite(leftfow, speed_arc);
analogWrite(leftback, 0);
}
void lt_arc(){
analogWrite(rightfow, speed_arc);
analogWrite(rightback, 0);
analogWrite(leftfow, speed);
analogWrite(leftback, 0);
}
void stop(){
analogWrite(rightfow, 0);
analogWrite(rightback, 0);
analogWrite(leftfow, 0);
analogWrite(leftback, 0);
} -
DrojDtroll
veterán
/*
HC-SR04 Ping distance sensor]
VCC to arduino 5v GND to arduino GND
Echo to Arduino pin 13 Trig to Arduino pin 12
Red POS to Arduino pin 11
Green POS to Arduino pin 10
560 ohm resistor to both LED NEG and GRD power rail
More info at: http://goo.gl/kJ8Gl
Original code improvements to the Ping sketch sourced from Trollmaker.com
Some code and wiring inspired by http://en.wikiversity.org/wiki/User:Dstaub/robotcar
*/
#define leftfow 10
#define leftback 9
#define rightfow 6
#define rightback 5
#define trigPin 13
#define echoPin 12
#define led 11
#define led2 10
void setup() {
Serial.begin (9600);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
}
void loop() {
analogWrite(rightfow, 0);
analogWrite(rightback, 255);
analogWrite(leftfow, 255);
analogWrite(leftback, 0);
long duration, distance;
digitalWrite(trigPin, LOW); // Added this line
delayMicroseconds(2); // Added this line
digitalWrite(trigPin, HIGH);
// delayMicroseconds(1000); - Removed this line
delayMicroseconds(10); // Added this line
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = (duration/2) / 29.1;
if (distance >= 200 || distance <= 0){
Serial.println("Out of range");
}
else {
}
delay(500);
} -
DrojDtroll
veterán
GNU nano 2.4.2 File: current.py
import sys
limit=5
colors=[(100, 100, 100), #ladybug
(120, 120, 120), #arm
(120, 120, 120), #arduino
(120, 120, 120), #humanoid
(150, 150, 150)] #star_wars
robots=["ladybug", "arm", "arduino", "humanoid", "star_wars"]
color = sys.argv[1].split(',')
color = map(int, color)
for i in range(0, len(colors)):
if colors[i] == color:
current=i
break
current=0
print robots[current] -
DrojDtroll
veterán
from ev3.lego import MediumMotor
from ev3.lego import LargeMotor
from ev3.ev3dev import Tone
import ev3.ev3dev
import socket
import sys
import time
def battery_warn():
print "Low battery level!!!"
beep= Tone()
beep.play(1000, 3000)
time.sleep(3)
beep.play(1000)
time.sleep(3)
beep.stop()
a = LargeMotor()
d = MediumMotor()
c = MediumMotor()
a.reset()
d.reset()
c.reset()
host = ''
port = 8888
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if ev3.ev3dev.get_battery_percentage()<20:
battery_warn()
else:
print "Battery is OK!"
try:
s.bind((host, port))
except socket.error:
print "bind fail"
s.listen(5)
while 1:
conn, addr = s.accept()
data=conn.recv(1024)
print data
conn.close()
if data == "ladybug":
d.run_position_limited(position_sp=200, speed_sp=250)
if data == "arm":
d.run_position_limited(position_sp=0, speed_sp=250)
if data == "arduino":
a.run_position_limited(position_sp=0, speed_sp=250)
if data == "humanoid":
print humanoid
if data == "star_wars":
d.run_position_limited(position_sp=0, speed_sp=250) -
DrojDtroll
veterán
from ev3.lego import MediumMotor
from ev3.lego import LargeMotor
import socket
import sys
a = LargeMotor()
d = MediumMotor()
c = MediumMotor()
a.reset()
d.reset()
c.reset()
host = ''
port = 8888
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
s.bind((host, port))
except socket.error:
print "bind fail"
s.listen(5)
while 1:
conn, addr = s.accept()
data=conn.recv(1024)
print data
conn.close()
if data == "ladybug":
d.run_position_limited(position_sp=200, speed_sp=250)
if data == "arm":
d.run_position_limited(position_sp=0, speed_sp=250)
if data == "arduino":
a.run_position_limited(position_sp=0, speed_sp=250)
if data == "humanoid":
print humanoid
if data == "star_wars":
d.run_position_limited(position_sp=0, speed_sp=250) -
DrojDtroll
veterán
import socket
import sys
host = ''
port = 8888
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
s.bind((host, port))
except socket.error:
print "bind fail"
s.listen(5)
while 1:
conn, addr = s.accept()
data=conn.recv(1024)
print data
conn.close() -
DrojDtroll
veterán
ssh-keygen -t rsa -b 2048
ssh-copy-id robot@ev3dev.local
ssh robot@ev3dev.local
-
DrojDtroll
veterán
import ev3.lego
workon ev3_py34
ssh robot@ev3dev.local
-
DrojDtroll
veterán
Kaptam egy Acer Iconia A1-810 tabletet, javításra, a probléma az, hogy indulásnál be jön az acer logó, majd erasing... töltőképernyő kis android figurával.
-
DrojDtroll
veterán
6.46903293005
-
DrojDtroll
veterán
http://www.thingiverse.com/thing:885708
-
DrojDtroll
veterán
http://www.thingiverse.com/thing:871852
-
DrojDtroll
veterán
http://prohardver.hu/tema/milyen_program_ami/hsz_37574-37574.html
-
DrojDtroll
veterán
Nagyon keveset ment. Megvette a gazdája, majd meghalt a gépe és laptopra váltott.
[L:http://prohardver.hu/tema/nyiregyhaza_hardverpiac_2_0/hsz_47080-47080.html][link][/L] -
DrojDtroll
veterán
válasz
DrojDtroll #50 üzenetére
felezőből ----> masik oldal alsó negyedelőpontjába
alsó rész
-
DrojDtroll
veterán
válasz
DrojDtroll #49 üzenetére
csak az alsó fele kell
-
DrojDtroll
veterán
válasz
DrojDtroll #48 üzenetére
csak alsó kétharmad kell
-
DrojDtroll
veterán
46.2888
15.9666jobb felső sarok
-
DrojDtroll
veterán
46.2888
17.1333fele
-
DrojDtroll
veterán
46.2888
18.3fele
-
DrojDtroll
veterán
46.2888
19.4666felső 1/5
-
DrojDtroll
veterán
46.2888
20.6333arad
bal felső
vágni sokat
-
DrojDtroll
veterán
47.4548
21.8szél
bal felső sarokvágni sokat
-
DrojDtroll
veterán
47.4548
20.6333gyula
-
DrojDtroll
veterán
47.4548
19.4666szolnok
-
DrojDtroll
veterán
47.4548
18.3duna
-
DrojDtroll
veterán
47.4548
17.1333balaton
-
DrojDtroll
veterán
47.4548
15.9666szombathely
-
DrojDtroll
veterán
48.6214
15.9666ország széle
-
DrojDtroll
veterán
48.6214
17.1333győr
-
DrojDtroll
veterán
48.6214
18.3budapest
-
DrojDtroll
veterán
48.6214
19.4666eger-hollókő
-
DrojDtroll
veterán
48.6214
20.6333nyiregyháza-miskolc
-
DrojDtroll
veterán
48.6214
21.8kisvárda
-
DrojDtroll
veterán
http://prezi.com/zhdmazk5mfsu/?utm_campaign=share&utm_medium=copy
-
DrojDtroll
veterán
http://www.freepik.com/popular-vectors
-
DrojDtroll
veterán
11101001011100110010000001100001001000000110001001100101011011010110010101101110011101000110010101101110001000000110001001100101011011001111110001101100001000000111001101100101011011010010000001101100011001010110100001100101011101000010000001101101011001010110011101100001011001000110111001101001001000000111001101101111011100100111010011110110011100101110100101110011011101000010110000100000011000010010000001110100111101100110001001100010011010010010000001101011011011110110111001110110011001010111001001110100011001010111001001101110111010010110110000100000011000010110110101101001011101000010000001110000011100101111001101100010111000010110110001110100011000010110110100100000011001010111101000100000011011010011111101101011111101100110010011110110011101000111010000100000
-
DrojDtroll
veterán
sudo airmon-ng start wlan0 1
sudo aireplay-ng --deauth 0 -e e8:94:f6:d1:35:d6 -a e8:94:f6:d1:35:d6 --ignore-negative-one mon1
-
DrojDtroll
veterán
wget -q -U Mozilla "http://translate.google.com/translate_tts?tl=hu&q=ő" -O hang.mp3
google text to speech
-
DrojDtroll
veterán
blender network render
1. lépés: egyedi live lemez készítése
virtualboxban lubuntu fel
konfigolás
live készítés
teszt -
DrojDtroll
veterán
válasz
DrojDtroll #37 üzenetére
sikeresen megépítve, és beüzemelve
-
DrojDtroll
veterán
gmail rpi led
-
DrojDtroll
veterán
iX
iX – A GNU/Linux Distribution for the Apple iPhone, based off Ubuntu Karmic and X11
August 1, 2010
Development image release.Hello again,
I’d like to start by apologising for the delay between my last post and now, but I can assure you we have been very busy getting the development image ready for release. First wifi needed to be set up and it will now connect quite happily to an open, wep secured and wpa secured network via the command line, this allowed an SSH connection to be opened up which proved very useful. There is also now a working touchscreen driver, which has made the development image a reality.
If you are going to download and try the image please bear in mind that it is very rough around the edges and is in no way intended to be a reliable or even usable replacement to iOs or Android, it is more of a proof of concept that will allow other people to play/develop with iX. Because of this, do not expect a lot of support to be given, help will be provided where possible but we will be busy preparing a pre-alpha for iX which should hopefully include some of the features I described in my first post. Inside the archive available below is a small readme on how to set-up/run iX using a tethered boot, the rootfs is on the iPhone itself but the ramdisk and kernel are loaded from your desktop/laptop to allow quick changes until the image is stable.
Finally, I forgot to add this in the readme and no longer have the bandwidth to make a change, you’re automatically logged on as root, the other user is ubuntu, both use the password 1111. These passwords are obviously unsecure to change them simply use passwd root or passwd ubuntu over ssh or from the command line on the iPhone.
James.
Download iXDevImage
The image is pulled for a couple of rectifications.
Posted in iX Development Comments (4)
July 18, 2010
First image running Ubuntu◄ Back
Next ►
Picture 1 of 1
Here’s an image of the iPhone running a lightweight xfce4 desktop on top of Ubuntu, hopefully this will cure some of the skepticism behind iX.Posted in iX Development Comments (9)
July 15, 2010
My first post, introducing iX.Hello
To start with I’d like to thank Martin from #iphonelinux for not only setting up our wordpress blog but also for sponsoring the domain. The purpose of this blog is to document the progress of building iX prior to it’s release.
iX in it’s current form is merely a basic port of Ubuntu to the armv6 architecture and uses xfce4 as it’s window manager, this is only a starting point to ensure that the hardware available in the iPhoneLinux kernel is used by iX. My long term plans are to create an X11 (or a similar alternative) based OS that can be used as a viable alternative to iOs or Android on the iPhone this will hopefully open up a whole new spectrum of oppurtunites for the device using packages available in Ubuntu’s ports.ubuntu.com repo and other sources that are compatible with ARM (the debian repositories for example).
In order to do this the OS will need to be suitable for the iPhone’s hardware the following will need to be done.
Add a mobile optimised window manager such as Matchbox used on Maemo and OpenMoko.
Add cellular capabilities, data would be my priority but phone functionality such as calls and sms would be ideal.
Strip the OS down and optimise for the hardware restrictions such as the lack of ram and cpu speed, this could be as simple as removing unneeded applications or replacing programs with more mobile friendly ones, my first thought is replacing X11 for a leightweight alternative such as tinyx.
Finally I’d like to explain the reasoning behind the name iX as some have criticised it’s over use of the i prefix.i = idevice (obviously) and X for X11, which up to now has not been released in an image for the iPhoneKernel.
Yes, it’s similar to iOs, I hope this doesn’t cause an issue.
Linux as we all know is an opensource form of Unix, un – iX
Finally, the moniker iX is short and simple, what I’d like the Os to eventually become.
A development image with xfce4 will be released as soon as the touch screen issues are resolved , a wiki is in the process of being set up to facilitate documentation.If you’d like to help, please contact me (James) via #iphonelinux on irc.osx86.hu
Thanks for reading this far.
Posted in iX Development Comments (8)
-
DrojDtroll
veterán
Overview
A GNU/Linux Distribution for the Apple iPhone, based off Ubuntu Karmic and X11
iX in it’s current form is merely a basic port of Ubuntu to the armv6 architecture and uses xfce4 as it’s window manager, this is only a starting point to ensure that the hardware available in the iPhoneLinux kernel is used by iX. My long term plans are to create an X11 (or a similar alternative) based OS that can be used as a viable alternative to iOs or Android on the iPhone this will hopefully open up a whole new spectrum of oppurtunites for the device using packages available in Ubuntu’s ports.ubuntu.com repo and other sources that are compatible with ARM (the debian repositories for example).
In order to do this the OS will need to be suitable for the iPhone’s hardware the following will need to be done.
Add a mobile optimised window manager such as Matchbox used on Maemo and OpenMoko.
Add cellular capabilities, data would be my priority but phone functionality such as calls and sms would be ideal.
Strip the OS down and optimise for the hardware restrictions such as the lack of ram and cpu speed, this could be as simple as removing unneeded applications or replacing programs with more mobile friendly ones, my first thought is replacing X11 for a leightweight alternative such as tinyx.
Finally I’d like to explain the reasoning behind the name iX as some have criticised it’s over use of the i prefix.i = idevice (obviously) and X for X11, which up to now has not been released in an image for the iPhoneKernel.
Yes, it’s similar to iOs, I hope this doesn’t cause an issue.
Linux as we all know is an opensource form of Unix, un – iX
Finally, the moniker iX is short and simple, what I’d like the Os to eventually become.Homepage: http://blog.ixproject.org/
-
DrojDtroll
veterán
Sign in
Register
Home
Projects
Help
Search:
iXOverview
Activity
Issues
News
Documents
Wiki
Unofficial Development GuideTechnical documentation
08/18/2010# Guide to configuring and installing iX.
# Anything that starts with # is a comment line
# You need an Ubuntu 9.10 install or virtual machine to complete this guide.
# You need the following zip file: www.jump.fm/YXJUF
# Written by Lopi##############################################################################################################################################
Compile Ubuntu from the armel Karmic repository. Insert the tar into an image. Run the image in qemu (arm emulator) to finish configuration.
############################################################################################################################################### Make a new directory on your Desktop called ubuntu. Change to the ubuntu directory.
mkdir ubuntu#Extract the contents of touch.zip to your Desktop
# Move the files from touch.zip into the ubuntu folder.
mv xorg.conf ~/Desktop/ubuntu/
mv xserver-xorg-input-evdev_2.3.2-5ubuntu1_armel.deb ~/Desktop/ubuntu# Install rootstock
sudo apt-get install rootstock# Generate armel tar for karmic
sudo rootstock --fqdn ix --login ix --password ix --dist karmic# Create an image file named iX.img
dd if=/dev/zero of=iX.img bs=1MB count=0 seek=1024# Make the iX.img filesystem ext2
mkfs.ext2 -F iX.img# Get the vmlinuz kernel to run iX.img in qemu
sudo wget http://ports.ubuntu.com/ubuntu-ports/dists/lucid/main/installer-armel/current/images/versatile/netboot/vmlinuz# Make a new directory called debmount. We will use this directory to mount iX.img.
mkdir debmount# Mount the iX.img to debmount
sudo mount -o loop iX.img debmount# Extract the contents of armel.tar to debmount
sudo tar -C debmount/ -zxf NameOfArmel.tar# Copy xorg.conf and xserver-xorg-input-evdev_2.3.2-5ubuntu1_armel.deb to /root/ of iX.img
cp -f xorg.conf debmount/root/
cp -f xserver-xorg-input-evdev_2.3.2-5ubuntu1_armel.deb debmount /root/# Unmount debmount
sudo umount debmount# Now that we have an image ready to configure. We will emulate the iPhone using qemu to further configure the image.
sudo qemu-system-arm -M versatilepb -cpu cortex-a8 -kernel ./vmlinuz -hda iX.img -net user -net nic -m 256 -append "root=/dev/sda mem=256M devtmpfs.mount=0 rw"# Once the image boots up. Login with ix:ix
# Use DHCP to connect to the network
sudo dhclient eth0# Install xorg
sudo apt-get install xorg# Install a window manager. Use xfce4 or icewm. I have been using xfce4.
sudo apt-get install xfce4# Install nano to edit configuration files
sudo apt-get install nano# Install cellwriter
sudo apt-get install cellwriter# Change the root password
sudo passwd root# Become root
su# Edit tty1.conf to automatically login.
nano /etc/init/tty1.conf
#Put the following at the end of the file:
exec /bin/login -f root < /dev/tty1 > /dev/tty1 2>&1
# Control + O saves the file. Enter confirms the filename. Control + X exits the file.
Press Control+O. Press Enter. Press Control+X.# Change to the root directory
cd /root# Edit .bashrc to make x start at boot
nano .bashrc
#Put the following at the end of the file
if [ $(tty) == "/dev/tty1" ]; then
startx
fi
# Control + O saves the file. Enter confirms the filename. Control + X exits the file.
Press Control+O. Press Enter. Press Control+X.# Install wireless-tools to use iwconfig
apt-get install wireless-tools# Install openssh-server
apt-get install openssh-server# Configure wifi interfaces file
sudo nano /etc/network/interfaces
# Add the following lines to the end of the file.
auto wlan0
iface wlan0 inet dhcp# Configure wifi at boot
sudo nano /root/.bashrc
# Add the following lines to the end of the file.
sleep 5
iwconfig wlan0 essid ssid
iwconfig wlan0 key s:ASCIIKEY
dhclient wlan0# Change directory to /root/ and install evdev.
cd root
dpkg -i xserver-xorg-input-evdev_2.3.2-5ubuntu1_armel.deb# Copy xorg.conf file to /etc/X11/
cp -f xorg.conf /etc/X11/# Shut down the system
poweroff# Wait until QEMU says "System halted" and click the x to exit. You can also Control + C in your terminal.
# Make a directory called backup. Copy the image you created to the directory backup.
mkdir backup ; cp iX.img backup#################################################################################################
How to boot the freshly created Ubuntu image on your iPhone.Required Files: initrd.img.gz - Needs to be on your Desktop.
zImage - Needs to be on your Desktop.
oibc - Needs to be on your Desktop.
iX.img - Needs to be in /private/var on your iPhone.Note: zImage is the kernel we use in Android. You should already have this file.
You need to get initrd.img.gz from James.
oibc comes from downloading OpeniBoot
iX.img is the Ubuntu image you created
################################################################################################## Make sure you have the required files on your Desktop.
cd /home/user/Desktop
ls# We need to power off the iPhone and turn it back on.
Do this by holding the power button. Slide to poweroff.
Once your iPhone is turned off. Hold the power button for a few seconds to turn it back on.# You should now be sitting at the OpeniBoot screen on your iPhone.
Boot into OpeniBoot console.# You need to do this a couple seconds after selecting OpeniBoot console. This may take a few tries.
sudo ./oibc# Openiboot console should now be loaded in your terminal and on your iPhone.
# We need to transfer the kernel.
!zImage# Set OpeniBoot to use the file we uploaded as the kernel.
kernel# We need to upload the ramdisk.
!initrd.img.gz# Set OpeniBoot to use the file we uploaded as the ramdisk.
ramdisk# Tell the kernel to boot Ubuntu
boot "root=/dev/ram0 init=/init rw"######################################################################################################
How to test sound:
(1) iX must be currently running on your iDevice
(2) You must have an ssh session open on your device
#######################################################################################################Plug in a pair of headphones once iX has booted
# Install mpg321
apt-get install mpg321# wget an mp3 file
wget file.mp3# Play the mp3 with mpg321
mpg321 -v -o alsa file.mp3Files
Hosted by Nick Pack
-
DrojDtroll
veterán
http://cdn.idroidproject.org/release/ix/
http://www.ubuntuka.com/install-ubuntu-on-your-iphone-and-ipod-touch/
-
DrojDtroll
veterán
sr626sw típusú elem van az órámban
lr41 a lázmérőben -
DrojDtroll
veterán
-
DrojDtroll
veterán
agadsfas -
DrojDtroll
veterán
http://ubuntuforums.org/showthread.php?t=1966900
xrandr --newmode "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync
xrandr --addmode Virtual1 "1600x900_60.00"
xrandr --output Virtual1 --mode "1600x900_60.00" -
DrojDtroll
veterán
http://l3net.files.wordpress.com/2014/02/cmp-all4.png
-
DrojDtroll
veterán
Lovas a sötétben
)))))))))))))))))))
-
DrojDtroll
veterán
Rufus
-
DrojDtroll
veterán
megy a stat txt-be
-
DrojDtroll
veterán
Adblock
uni extractor -
DrojDtroll
veterán
stat2
-
DrojDtroll
veterán
stat
-
DrojDtroll
veterán
Windows bootable usb
sudo add-apt-repository ppa:colingille/freshlight
sudo sh -c "sed -i 's/trusty/saucy/g' /etc/apt/sources.list.d/colingille-freshlight-trusty.list"
sudo apt-get update
sudo apt-get install winusb -
DrojDtroll
veterán
rpi hűtés
1.5 load --> 35° -
DrojDtroll
veterán
válasz
DrojDtroll #18 üzenetére
raspberry torrent support
-
DrojDtroll
veterán
speedtest cli version
-
DrojDtroll
veterán
macchanger
fping
htop
synfig
kdenlive
kdevelop
codeblocks
arduino -
DrojDtroll
veterán
mostantól 6GB ram van a laptopomban
-
DrojDtroll
veterán
válasz
DrojDtroll #13 üzenetére
Ebből sem lett semmi köszönhetőn a három órán keresztül tartó SIKERTELEN win frissítenek.
-
DrojDtroll
veterán
-
DrojDtroll
veterán
Ma estére egy jó kis visszalépéses keresés, csak hogy nem unatkozzak.
-
DrojDtroll
veterán
progverseny 8
-
DrojDtroll
veterán
transzsendens
linux kernel
ipod jailbreak
-
DrojDtroll
veterán
A gép
-
DrojDtroll
veterán
Sherlock Holmes: A Game of Shadows 8/10 -keresni kell hasonló filmet, nézni kell még holmest
Kavarás: 10/10 a sok rpi-s szívás után jól megnevettett -
DrojDtroll
veterán
7:35 körül újraindult a pi valószínű áramszünet okozta, mert a router is újraindult.
-
DrojDtroll
veterán
válasz
DrojDtroll #2 üzenetére
arch+rtorrent
-
DrojDtroll
veterán
váltani kellene az ubunturól
bele kellene kostolni az arch-ba -
DrojDtroll
veterán
robot építés arduino alapokon
-
DrojDtroll
veterán
elisium pipa
-
DrojDtroll
veterán
rapberry pi+torrent box
-
DrojDtroll
veterán
gennto telepítés
Aktív témák
- Polgári repülőgép-szimulátorok
- OLED TV topic
- A processzorba integrált hűtésen dolgozik a Microsoft
- Kerékpárosok, bringások ide!
- Tőzsde és gazdaság
- Motoros topic
- Milyen TV-t vegyek?
- Mibe tegyem a megtakarításaimat?
- Milyen Android TV boxot vegyek?
- AMD Ryzen 9 / 7 / 5 7***(X) "Zen 4" (AM5)
- További aktív témák...
- ÁRGARANCIA!Épített KomPhone Ryzen 5 7600X 32/64GB RAM RTX 5060 Ti 16GB GAMER PC termékbeszámítással
- ÁRGARANCIA!Épített KomPhone i7 14700KF 32/64GB RAM RX 9070 XT 16GB GAMER PC termékbeszámítással
- ÁRGARANCIA!Épített KomPhone Ryzen 5 7500F 32/64GB DDR5 RTX 5060 8GB GAMER PC termékbeszámítással
- GYÖNYÖRŰ iPhone 13 mini 128GB Blue -1 ÉV GARANCIA - Kártyafüggetlen, MS3047, 94% Akkumulátor
- Logitech MX Anywhere 3 egér
Állásajánlatok
Cég: CAMERA-PRO Hungary Kft.
Város: Budapest
Cég: PCMENTOR SZERVIZ KFT.
Város: Budapest