g̶ͯ̓͋̀ͤ̏̓ͮ͐ͦͬ͜͜͏̘̣͔͙͎͎̘̜̫̗͍͚͓ơ̟̤̖̗͖͇̍͋̀͆̓́͞͡o̶̝̳̪̜ͪ̅̍̅͂͊ͫ͐̀̈́̓̉̇͒̅̈̓̇͜ͅg̨̻̳̝͙̬̹̫͔̰̠̹̟̹̯̜͚ͣ͆̔̉ͣ̾͌̏͂͐͂͒ͬ̿̕͟ͅl̴̷̯e
1 year ago • Notes
2 years ago • Notes無限長の無損失線路のシミュレーションやりたいがために造った回路
いくらなんでもこれはひどい。とはいえ、さすがにこれだけの回路を作れば理解できたものもある。
波が線路の端っこに辿り着くと反射が起きるから、永遠に端に辿り着けないで反射できないという線路が無限長線路だったようです。
だから端にたどり着くまでは無限長線路の性質をよく表していました。こりゃすごい。
2 years ago • NotesIranian cyber army hacks Twitter Interesting development, though something has been lost in translation. Are they saying the Iranians are the new bad guys?
超美しくないソ-ス
#include <stdio.h>
int cal(int a){
int a;
int l1=a;
int l2=a%10;
int l3=a%100;
int l4=a%1000;
int l5=a%10000;
int l6=a%100000;
int b=(l1-l6)/100000;
int c=(l6-l5)/10000;
int d=(l5-l4)/1000;
int e=(l4-l3)/100;
int f=(l3-l2)/10;
int g=l2;
printf(“%d\n”,l1);
printf(“%d\n”,l2);
printf(“%d\n”,l3);
printf(“%d\n”,l4);
printf(“%d\n”,l5);
printf(“%d\n\n”,l6);
printf(“%d\n”,b);
printf(“%d\n”,c);
printf(“%d\n”,d);
printf(“%d\n”,e);
printf(“%d\n”,f);
printf(“%d\n”,g);
return 0;
}
int main(){
int s;
cal(s);
printf(“%d”,s);
return 0;
}



