Bytebeat

To bottom
Rules / Changelog / Common thread / SthephanShi / kOLbOSa_exe / lhphr / PortablePorcelain / HypernovaHeathen / BaenHoHoHo / SArpnt / hcdphobe / OnixIsThePewterGod / Zackx / GetDolphinedLol / psubscirbe / ChrisRM380 / Kouzerumatsu / MT2023 / Decent-Manager-6169 / Chasyxx / Glebguything / absolute197 / ANoUserXD / MarioFan171

CAPTCHA
 Deletion password
  • Supported file types are JPG, PNG, GIF, WEBP, WEBM, MP4 and MOV.
  • Limit: 4 files, 30 MB per file (60 MB for Passcode users).
  • Images greater than 250x250 will be thumbnailed.
  • 1199 unique users on the board.

5085 Reply
bwuh.jpg
(4.20KB, 224x232)

4972 Reply
baglini+-+web+-+photo+43.png
(676.22KB, 765x712)
Write a chord progression player that's shorter and more concise than this one but has far more capabilities and can play rare/strangely-named chords (found in jazz/prog for instance), better if you use cool synths (Float64 wavetables, FM, soft pads) with rhythms, envelopes (ADSR), effects (N-order IIR filters, FDN reverb, chorus, dynamic compression) and arpeggios with some drums (pattern generation (rush/rolls, dynamics, off-beat/humanized swing), membrane simulation (snares, hi-hat, cymbal, bells)), even better if it's microtonal (are new chord notations required for this?) and not the standard 12-TET:
var PI=Math.PI,TAU=2*PI,noteNumbers={C:0,"C#":1,Db:1,D:2,"D#":3,Eb:3,E:4,F:5,"F#":6,Gb:6,G:7,"G#":8,Ab:8,A:9,"A#":10,Bb:10,B:11};function parseChordString(s){var t=s.match(/\/([A-G][#b]?)$/),e=null;t&&(e=t[1],s=s.slice(0,s.length-t[0].length));t=s.match(/^([A-G][#b]?)(.*)$/);if(!t)throw new Error("Invalid chord: "+s);return{rootNote:t[1],modifiers:t[2],bassNote:e}}function parseModifiers(s){let e=[],r=s;for(;0<r.length;){let s=!1,t;(t=r.match(/^maj(7|9|11|13)?/))?(e.push("maj"),t[1]&&e.push(t[1]),r=r.substr(t[0].length),s=!0):(t=r.match(/^m(in)?(7|9|11|13)?/))?(e.push("min"),t[2]&&e.push(t[2]),r=r.substr(t[0].length),s=!0):(t=r.match(/^dim(7)?/))?(e.push("dim"),t[1]&&e.push(t[1]),r=r.substr(t[0].length),s=!0):(t=r.match(/^aug/))?(e.push("aug"),r=r.substr(t[0].length),s=!0):(t=r.match(/^sus(2|4)?/))?(e.push("sus"+(t[1]||"")),r=r.substr(t[0].length),s=!0):(t=r.match(/^add(#|b)?(\d+)/))?(e.push("add"),e.push((t[1]||"")+t[2]),r=r.substr(t[0].length),s=!0):(t=r.match(/^(13|11|9)/))?(e.push(t[1]),r=r.substr(t[1].length),s=!0):(t=r.match(/^([#b])(\d+)/))?(e.push(t[1]+t[2]),r=r.substr(t[0].length),s=!0):(t=r.match(/^6\/9/))?(e.push("6/9"),r=r.substr(4),s=!0):(t=r.match(/^(6|7|5)/))?(e.push(t[1]),r=r.substr(1),s=!0):r=r.substr(1)}return e}var intervalsMap={1:0,2:2,3:4,4:5,5:7,6:9,7:11,9:14,11:17,13:21};function getIntervalFromDegree(s){return intervalsMap[s]||0}function getChordIntervals(s){var t,e=parseModifiers(s),r=[],s="major";return e.includes("maj")?s="major":e.includes("min")?s="minor":e.includes("dim")?s="diminished":e.includes("aug")&&(s="augmented"),"major"==s?r.push(0,4,7):"minor"==s?r.push(0,3,7):"diminished"==s?r.push(0,3,6):"augmented"==s&&r.push(0,4,8),e.includes("maj")&&e.includes("7")?r.push(11):e.includes("7")&&r.push(10),e.includes("9")&&r.push(14),e.includes("11")&&r.push(17),e.includes("13")&&r.push(21),e.includes("6/9")?r.push(9,14):e.includes("6")&&r.push(9),e.includes("add")&&e.filter(s=>s.startsWith("#")||s.startsWith("b")||/^\d+$/.test(s)).forEach(s=>{var t=getIntervalFromDegree(parseInt(s.replace("#","").replace("b","")));s.startsWith("#")&&t++,s.startsWith("b")&&t--,r.push(t)}),e.includes("sus2")?0<=(t=r.indexOf("major"==s?4:3))&&(r[t]=2):e.includes("sus4")?0<=(t=r.indexOf("major"==s?4:3))&&(r[t]=5):e.includes("sus")&&0<=(t=r.indexOf("major"==s?4:3))&&(r[t]=5),e.forEach(s=>{var t;"#5"==s?0<=(t=r.indexOf(7))&&(r[t]=8):"b5"==s?0<=(t=r.indexOf(7))&&(r[t]=6):"#9"==s?r.push(15):"b9"==s?r.push(13):"#11"==s?r.push(18):"b13"==s&&r.push(20)}),(r=r.filter((s,t,e)=>e.indexOf(s)===t)).sort((s,t)=>s-t),r}function note(s,t=440,e=12){return t*Math.pow(2,s/e)}function sine(s){return Math.sin(TAU*s)}function pulse(s){return s%1<.5?-1:1}function limitFrequency(s,t,e){for(;s<t;)s*=2;for(;e<s;)s/=2;return s}var chordDuration=2,chords="Gb7 Gmmaj7 Emmaj9 Ab9addb13/C Gbaug Bmaj9 Abm11 Dbm11 Gb7/#11 Dbmaj9sus2 Eb13sus4 Dbm9".split(" "),totalChords=chords.length;return function dsp(s)
Post too long. Click to view.
5083
link below if you're lazy to copy..
link

5008 Reply
snapChad.webp
(89.93KB, 1439x1532)
Motherlode V2 (please use this version!):

Post too long. Click to view.
5009
H4XX3D Up For Barbecue (bytebattle season 2 entry):

Post too long. Click to view.
5070
Dennis Skrillchie (remix of George on Blogspot, C compatible):

(t>>9&6?0:9001/(t%4096)-t/9&8?-1:0)^t>>4&t*(3&t/(1+(t>>14)%8)^t>>(t>>9&8?19:20)*(t>>11))
5071

5053 Reply
Kazakhstan.jifi.webp
(24.52KB, 800x437)
type bit
(floabeat,8 of 16 kHz)

sin(3E4/(t&4095))*(1488/(t&4096))
5054
5074
eb lan.png
(19.50KB, 350x261)
I don't know, but this is my remake on "ilovemykids26" by SHCWAZERNECJLACE

((3*t^t>>6|t))^(random(48148822033022)*-t>>8&31])*2|3E4/(t&4095)


16 kHz,bytebeat mod
5077
eb lan (1).png
(19.50KB, 350x261)

5044 Reply
unnamed.png
(38.40KB, 240x240)
not a bad melody

(on the 8 kHz)
5045
>>5044
Why do you create a new thread every time? Other threads are drowning because of that.
Create your own one thread and post there.
5121
>>5045
i believe he dosent know what the reply button is.

5021 Reply
bandicam 2024-11-22 15-19-29-027.png
(30.18KB, 826x258)

5014 Reply
Screenshot 2024-10-13 112430.png
(186.41KB, 524x514)
5015
help

4973 Reply
0:38, bandicam 2024-11-16 17-31-27-639.mp4
(4.09MB, 1360x768)
I found a discrepancy
4980
>>4973
Fixed, thank you.
4987
I didn't know you were playing my song?
4991
5020
bandicam 2024-11-22 15-19-29-027.png
(30.18KB, 826x258)
>>4980
can you fix this?

4981 Reply
Screenshot 2024-11-16 at 12-20-12 Bytebeat composer.png
(449.19KB, 1918x941)
i swear there was a fancy name for this but i forgot

g = x => sin(x*10000/(20000+(x % 100000)))*32 + 32, s = x => ((50000 ** 2 - ((x % 100000) - 50000) ** 2))/500000000, n = x => g(x)*(s(x) ** 0.5)/5, new Array(10).fill(0).map((x,i) => n(t/7+10000*i)).reduce((a,b) => a+b, 0)/5

4939 Reply
dfgh.png
(276.26KB, 1195x901)
Angry Jolly Is Coming For you t*t/(1+(t>>10&t>>7))&255
4952
is he?
4962
>>4939
the jollibee mascot from my country became a fnaf ahh character 😭

4941 Reply
dh0tb13-4f664d5f-7afd-4c76-9bc0-495758a597e2.png
(324.44KB, 1201x901)
ALL THE DAY WITH MAXIE
(t | t % 255 | t % 257) + (t & t >> 8) + (t * (42 & t >> 10)) + ((t % ((t >> 8 | t >> 16) + 1)) ^ t)
(t>>2&t<<7)*t>>6
4943
i've never seen someone from uruguay..

4940 Reply
dh0tb0c-6408a6bf-76fa-4a8c-b1ab-4af6105103e1.png
(300.05KB, 1201x901)
Posion Have CRazy (16)

4938 Reply
dh0tb0c-6408a6bf-76fa-4a8c-b1ab-4af6105103e1.png
(300.05KB, 1201x901)
(t>>2&t<<7)*t>>6

4919 Reply
Custom.png
(4.54KB, 320x200)
(500 * (2 * t >> 8 | 1 * t >> 1));

4918 Reply
Custom.png
(4.54KB, 320x200)
(500 (2 t >> 8 | 1 * t >> 1));

11025Hz

4884 Reply
hjcbz yfif cnhfyf.png
(40.13KB, 1030x690)
some remeik of melody by stimmer
t+=sin(tan(t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127))^t,(t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127)|8000/(t&4095)

(5 kHz)

4868 Reply
google-translate.png
(45.10KB, 1600x732)
EXPERIMETS WITH 'Altered running man'

add drums
 t*(3+(5&t>>10))*(4+(t>>17&1?(2&t>>14)/3:3&(t>>13)+2))>>(3&t>>9)|t>>3 


somethind like 'the 42 melody'
t*(3+(5&t>>11))*(3+(t>>17&1?(2^2&t>>14)/3:3&(t>>13)+1))>>(3&t>>9)|t>>3


let's get closer to 'Another attempt at melody construction'
t*(3+(5&t>>10&5))*(3+(t>>17&1?(2^2&t>>14)/3:3&(t>>13)+1))>>(3&t>>9)|t>>3


wow what a beat!
t*(3+(1&t>>10&5))*(3+(t>>15&1?(2&t>>14)/3:1&(t>>13)+1))>>(3&t>>8)|t>>3 


add "t&16384?6:5" and edit temh
Post too long. Click to view.

4856 Reply
77d9e3ad5cf79a8044619623c7383d64 in full HD 1080 p.webp
(31.51KB, 1280x917)
funny remake of a 'Good old fractal melody'
x=(t>>9^(t>>9)-1^1)%13*t,c=4000/(t&4095),
(x-c)+(sin(x)-c)^(c-x)+sin(x-c)

4852 Reply
nick-pope-la-desclasificacion-oficial-ovni-es-inminente-portada exe.jpg
(254.32KB, 1907x1080)

4842 Reply
og_og_1492605328256537764.jpg
(67.83KB, 1200x574)
my first remake of 'CA98'
 t*(0xCA98CA98>>(t>>9&30)&15)|t>>8|4000/(t&4095)|t>>(t&4096?8:9) 

captcha: noeueuj
4851
чудовище.jpg
(118.53KB, 1280x720)
>>4842
 t*(0xCA98CA98>>(t>>9&30)&15)|t>>8|4000/(t&4095)|t>>(t&4096?8:9) 


a better version

55 Reply
stone_500k.gif
(3.47MB, 256x256)
I have made a few Bytebeat songs posted to Reddit over the past month or two.

Here are some of my favorites.

creepy droning static thing

1fccccf1


plucky sierpinski

Crude Sinewave Dubstep Remix


Doom E1M1 theme recreation
Post too long. Click to view.
42 posts omitted. Click Reply to view.
3550
2024_05_31_0ju_Kleki.png
(794.88KB, 958x966)
3917
>>359
i shortened your 19-char dubstep to 11 chars

 t/(t&t>>12) 
4215
>>199
lol
4224
>>3917
this actually has a very little difference
l+r comparison
4848

4845 Reply
1427190171_1982925442.png
(32.27KB, 1367x610)
attempt creat a compact JS sond
 x=sin(t^t>>8+(t&t>>7))+t&t>>8,c=t>>12&t,
x+c+t&t>>8 


4839 Reply
cj,jrf.png
(108.10KB, 1672x668)
(t&t>>12&t>>11)-1
радиоPомеха
 (t>>2)*(t>>9)|t>>5 
ambulance on Bolshevikov Avenue
(t&t>>10)-(t>>4>>t>>5)

not bad for some viruses like 2MASS J07225830-2546030.exe

4767 Reply
unnamed.png
(38.40KB, 240x240)
4795
4798
4837
download-windows-10-icon-15.jpg
(251.56KB, 1024x850)
>>4798
oh thanks for the remake
what the captcha butuhih

4830 Reply
download.png
(52.59KB, 360x360)
5*t&t>>4|t*(5|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127
4831
7122.png
(332.79KB, 750x650)
10*(t>>6|t|t>>(t>>16))+(7&t>>11)*5*t&t>>4|t*(5|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127
4832
download (2).png
(123.62KB, 320x320)
5*t&t>>4|t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127
4833
Screenshot 2024-10-28 11.56.50 AM.png
(36.57KB, 438x331)
t%25-(t>>2|15*t|t%227)-t>>3|(t>>5&1333*(t<<5)|(t>>3)%1)/(t%18|t%1280)

what is three and cant pour tea
4834
mickey_mouse_running_vector_by_naufalisback_dgkmunm-fullview.png
(177.11KB, 530x440)
~t>>3&(t>>11&1?5:4-(t>>12&1))*t&(t>>7)+t*(4|t>>13&3)>>(~t>>11&1)&128|t*(t>>11&t>>13)*(~t>>9&3)&127>>(t>>(t>>12&15))>>t
4835
u1f4af_u1f4af.png
(6.07KB, 534x535)
what has fangs and pours milk for its children, it has many spots and drinks the juice of bodies, the red.
we take its milk to drink, and pour in our delicious lucky charms, what am i?

4826 Reply
3fdbde127f955aa49d23e37485ea6eff.jpg
(34.26KB, 1024x546)
triabeat

x=(t<<4)^-(t>>4&1),
(x>>5|x>>4)>>(x>>16)


like 'stand, back, you...'

captcha: sujo
4827
слишком много смысла.webp
(31.46KB, 1200x542)
if you put
 x=(t<<4)^-(t>>4&1),
x*(x>>5|x>>4)>>(x>>16) 

then there will be a new bit
'pirife'

4796 Reply
Captura de pantalla (10).png
(168.78KB, 1366x768)
4801
wait you're chilean too??

4786 Reply
27498048-6s5hcqd7-v4.webp
(13.35KB, 462x522)
5124
what is this doing at the bottom of the common thre- oh right

2971 Reply
KV39.png
(3.41KB, 514x257)
Kevvviiinnn Stage 39 Remix
(([1,1,2,3/2,2,9/4, 9/4, 19/8, 19/8, 9/4, 9/4, 19/8, 19/8, 8/3, 8/3, 8/3, 1,1,2,3/2,2,9/4, 9/4, 19/8, 19/8, 9/4, 9/4, 19/8, 19/8, 8/3, 8/3, 8/3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9/4, 19/8, 19/8, 9/4, 9/4, 19/8, 19/8, 9/4, 0, 9/4, 9/4, 19/8, 8/3, 19/8, 9/4, 2, 0][(t>>13)%64]*t>>2&127)+(t>>7)&128)+([2,1,2,19/8,2,1,2,3,2,1,2,19/8,3,2,2,3, 2,1,2,19/8,3,2,2,3,3,2,2,19/8,2,2,2,3,2,19/6,3,19/8,2,2,19/8,3,2,2,19/6,3,19/6,2,2,3,2,3,19/6,19/8,9/4,2,3,9/4,9/4,4/3,2,19/8,9/4,3,4/3,2][(t>>13)%64]*t>>2&255)/2^(128*sin(8191/(t%16384))^32*sin(4095/(t%8192)))
109 posts omitted. Click Reply to view.
4508
cat-litterbox.gif
(3.75MB, 360x640)
4513
vf1ykl4dsu4z.jpg
(110.75KB, 1078x1045)
4520
4533
>>4508
also, here's a minified version.
no way i got "temu" as a captcha??!1/1!<
4775
Discord Profile (October to November)@2x.png
(16.00KB, 1000x1000)
It's a while I touched Bytebeat, due to a lot of stuff going on, especially the LTAR race to episode 50 (Which has a lot to do about elevators, sorry). But anyways, Here's a prototype of my upcoming remix, based of a Sonic Frontiers Song, I listen to:

Initiate

BTW, I have to finish Relic Maze 2 before going to the more complex parts. I'll be uploading the video to the Semasis YouTube Channel

4744 Reply
IMG_20241026_090123.jpg
(268.65KB, 720x720)

4735 Reply
4424616.png
(41.95KB, 512x512)
I am back and the computer I am writing this post on has been repaired WITHOUT ALL APPLICATIONS (except those connected to the system and Yandex)

but there is good news I have a couple of bits

the best remake of 42 melody
(my version)
https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSKtHSMDFSK7GzMzTQrNHQKFGz0NQq0dTWAIqYaCrVAgA

some like 40-48 s of in() isn't kosher, people!https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJSKrGxMVLTLbGzM6kBEqZKtQA

my sierpinski harmony
https://dollchan.net/bytebeat/#v3b64q1ZKzk9JVbJS0jDRKlErsbOzqAES5iCWiaZSLQA

4731 Reply
hush - [bfdi music visualizer], YouTube.com
My Remix of 'Hush'

Cover of ['Hush' by YOYLECAKE Michael]
(https://www.youtube.com/watch?v=XCeNSQJserE)

4712 Reply
20230128_140518_425_R.M.S. Britannic (With Ropes) - by Michael Bozarth.png
(1.20MB, 1360x740)

4691 Reply
wait wha-.JPG
(3.73KB, 86x120)
maeme.jpg
(33.35KB, 460x345)
4695
you're mineralcoinboi224, right?

4680 Reply
20230415_220213_767_S.S. Bjeli Orao 2 - by BeamierBoomer.png
(803.92KB, 1366x597)

4675 Reply
20230304_125037_744_S.S. Washingtonne Star.png
(1.10MB, 1360x740)

4668 Reply
20230304_124730_986_S.S. Washingtonne Star.png
(0.97MB, 1366x683)
((t>>9^(t>>9)-1^1)%13*t)|(t&4096?t/2*(t^t%255)|t>>5:t/8|(t&8192?4*t:t))

attempt to repeat "Noise Maker" by by Gabriel Miceli

30*cos(t*2**('B*918/916-918/91B*918/916-918/91>*;2:1;26/;2:1;2>*;2:1;26/;2:1;2A*;291;28/;291;2A*;291;28/;291;2B*=-;,=-91=-;,=-B*=-;,=-91=-;,=-E*>6=4>692>6=4>6E*>6=4>692>6=4>6D*<3:1<380<3:1<3D*<3:1<380<3:1<3D(=4<3=481=4<3=4D(=4<3=481=4<3=4B(:18/:16.:18/:1B(:18/:16.:18/:1B&;2:1;26/;2:1;2B&;2:1;26/;2:1;2@&;,9*;,8/;,9*;,@&;,9*;,8/;,9*;,@%=-;,=-91=-;,=-@%=-;,=-91=-;,=->*=-;,=-92=-;,=->*=-;,=-92=-;,=->,8/6-8/428/6-8/>,8/6-8/428/6-8/=-412/4192412141=-412/4192412141;-6341613/634163;-6341613/634163;,8/6-8/528/6-8/;,8/6-8/528/6'.charCodeAt(t>>12)/12-7)/4,(t%255+t%128+t%64+t%32+t%16+t%127.8+t%64.8+t%32.8+t%16.8)/3)+128

cos version "Still Don't Know The Name" by Decent-Manager-6169

t<<2^t>>4^t<<4&t>>8|t<<1&-t>>4|t>>6&t>>7

remake of "harmony" by sthephanShi

10*(t>>7|2*t|t>>(t>>16)+(7&t>>12))

what

4656 Reply
20230128_135745_939_R.M.S. Britannic (With Ropes) - by Michael Bozarth.png
(1.18MB, 1360x740)
t*(43&t>>10)

(16 kHz) 2 bits pnd.exe
10*(t>>7|2*t|t>>t>>16)+(t>>8&5)

something like 7 bit pnd.exe
t<<1^(t<<1)+(t>>7)&t>>6|t>>4-(1^7&t>>19)|t>>7

3 bit of technetium
(t>>5)*(t>>1)|t>>3

3 bit of jpg.exe (does it even exist?)
4657
20230128_135447_559_R.M.S. Britannic (With Ropes) - by Michael Bozarth.png
(1.12MB, 1360x740)

4651 Reply
20230117_185717_850_H.M.H.S. Britannic (With Power) - by Michael Bozarth.png
(495.13KB, 1366x534)
 this.D??=Array(8859).fill(0),B=t/5906,r=B%1,v=1-r,m=B>>6,s=B%64|0,q=s>>4,b=s%16,N=a=>[0,18,20,22.5,24,27,30,32,36][a]*75/56,S=(f,p=0)=>sin((B*f+p)*PI*2)/2+.5,T=(f,p)=>(x=(B*f+p)%1,min(x,1-x)),C=f=>B*N(f[0][q])%1<S(.06)*.8+.1&&9,R=(s,m=9e7)=>(sin(s*m)+1)*m%1,n="6544"[q],l=s>61?5:"6807"[b-11]||n,L=23219>>b,c=13515>>b&1,o=[T(l=N(m>23?(B<1552)*4:m<8?l*=L&1:l&=L|m%8),S(l)/5)*160,T(d=N(s==28?6:s>61?5:b>11?8:n-(!b&q<2))*2,(B*d%1)*R(B|0)*1.5+.25)*(1-r*.75)*45,S(a=N(64967>>b&1&&(b<12|s>61?n:7))/2,abs(S(a/4)-.5)*(v*(s==62|10370>>b&2)+2))*30,C1241,c*C3564,c*C6786,s==26|s==59|!(s%8)&&S(0,2/(r+.16))*27,s%8==4&&R(t/3|0)*v*27,s==63|19524>>b&1&&R(t,400)*max(1-r*1.5,0)*27].reduce((a,b,i)=>a+([[257,261,453,193|(s<61)*260][m],x=511,127>>12-m,x,x,[443,443,3,1][m%4],1][m>>2]>>i&1&&b),0)+D.shift()/2,D.push(m>21&&o),o 

NOT Minibake (by using chasyxx.github.io0

*((t&4096?t%65536<59392?7:t&7:16)^(1&&t>>14))>>(3&-t>>(t&2048?2:10))|t>>(t&16384?t&4096?10:3:2)
neorfunk fron reddit (slightly modified)
4652
t*((t&4096?t%65536<59392?7:t&7:16)^(1&&t>>14))>>(3&-t>>(t&2048?2:10))|t>>(t&16384?t&4096?10:3:2)

4648 Reply
20230105_203838_356_S.S. Achille Lauro.png
(535.57KB, 1366x683)
 t%(t&t>>1) 

something like GDPlayer_1035 (44 kHz)

 (t&t>>12)*(t>>5&12)*t>>12 
Modem melody renmix 1 (32 kHz)

 0x7E8^(t&t>>12)*t>>12 
Modem melody remix 2 (32 kHz)

 t>>8+t&t 
something like "fractal trees"
4649
САНЯ.jpg
(199.57KB, 1200x800)
oh, mistake
put it instead t>>8+t&t to (t>>8)+t&t

4623 Reply
1alert.jpg
(38.60KB, 1000x1000)
hi, i'm suramero or just oleg, i'm from st petersburg and i just recently found out about you. here are a couple of bits:
t%(t&t>>12) minimum dubstep (why does this sound familiar?)
(t6&t>>5t&10t|t>>5&6t) "the swim" but something is wrong...
(t>>5*(t>>5)) why am i doing this at 22:36(10:36 pm)?

4529 Reply
dfybntykbuhkl..PNG
(57.63KB, 1331x930)
I bet this is gonna be bytebeat in april fools

4523 Reply
bright-and-beautiful-dramatic-super-moon-over-the-
(25.41KB, 768x480)
4534
Bell sounding like instrument lol

4502 Reply
IMG_3706.jpeg
(109.12KB, 404x518)
this is 4chan but doll
4515
>>4502
What exactly are you doing here
4518
download.png
(14.52KB, 1024x256)
and?

4466 Reply
спотти.png
(24.90KB, 256x256)
4491
4499
x38xhwnbzez91.jpeg
(24.88KB, 400x400)
thank

4498 Reply
server-icon.png
(10.85KB, 64x64)

4404 Reply
10:00, sound.mov
(3.17MB)
got chat gpt to output this:
(128+127*sin(t/10))*((t>>10&3)+1)*(1+cos(t/10))

this was its explnation:
128 + 127 * sin(t / 1000): Generates a sine wave oscillating between 1 and 255. The frequency is scaled so that it fits within the 8 kHz sample rate. t / 1000 adjusts the frequency of the sine wave.
(t >> 10 & 3) + 1: Extracts a 2-bit pattern from t and adds 1 to make sure the result is always non-zero. This introduces variation based on the bitwise manipulation of t.
1 + cos(t / 5000): Adds a cosine modulation factor. The cos(t / 5000) oscillates between -1 and 1, so adding 1 scales it to range from 0 to 2. This modulates the amplitude of the waveform.

4375 Reply
thingus.jpeg
(4.38KB, 204x192)
4382

4366 Reply
1428.png
(22.01KB, 600x600)
4367
4368

Delete Post  
[Previous] [0] [1] [2] [3] [4] [Next]

Rules / Changelog / Common thread / SthephanShi / kOLbOSa_exe / lhphr / PortablePorcelain / HypernovaHeathen / BaenHoHoHo / SArpnt / hcdphobe / OnixIsThePewterGod / Zackx / GetDolphinedLol / psubscirbe / ChrisRM380 / Kouzerumatsu / MT2023 / Decent-Manager-6169 / Chasyxx / Glebguything / absolute197 / ANoUserXD / MarioFan171
To top