LogoThread Easy
  • 탐색
  • 스레드 작성
LogoThread Easy

트위터 스레드의 올인원 파트너

© 2025 Thread Easy All Rights Reserved.

탐색

Newest first — browse tweet threads

Keep on to blur preview images; turn off to show them clearly

RT @MrPunyapal: To everyone saying “why Laravel devs reinvent the wheel?” 👀

Because our wheels come with style, readability, and speed. 🔥…

RT @MrPunyapal: To everyone saying “why Laravel devs reinvent the wheel?” 👀 Because our wheels come with style, readability, and speed. 🔥…

~20 yrs in web-dev, now mostly Laravel. My Laravel courses: https://t.co/HRUAJdMRZL My Youtube channel: https://t.co/qPQAkaov2F

avatar for Povilas Korop | Laravel Courses Creator & Youtuber
Povilas Korop | Laravel Courses Creator & Youtuber
Sun Nov 09 15:09:00
Trump thankfully is starting UBI. Framing it as tariffs. Permanent double digit unemployment imo 2027ish. Will be funny watching the left want to refuse Trump bucks due to politics but they will have to accept once the jobs are gone.

Trump thankfully is starting UBI. Framing it as tariffs. Permanent double digit unemployment imo 2027ish. Will be funny watching the left want to refuse Trump bucks due to politics but they will have to accept once the jobs are gone.

Opening portals to handheld VR at https://t.co/A2JMItorCV. Problems soluble, potential to improve invariant.

avatar for gfodor.id
gfodor.id
Sun Nov 09 15:08:54
RT @jackfriks: nevermind i forgot that i am the luckiest human alive and everything always works out in my favor. tomorrow i will add anima…

RT @jackfriks: nevermind i forgot that i am the luckiest human alive and everything always works out in my favor. tomorrow i will add anima…

curious guy creating things @ https://t.co/HXWladhJaA - up and coming wife guy

avatar for jack friks
jack friks
Sun Nov 09 15:00:39
RT @YumeBank: Finally swapped every useless alt into $USDC and started building wealth with low-risk yield.

RT @YumeBank: Finally swapped every useless alt into $USDC and started building wealth with low-risk yield.

building @YumeBank - chime backed by stablecoins / prev @magiceden @snapchat @square / built @bruh_bears @web3zer0 / react native OSS

avatar for json | yume 🌥️
json | yume 🌥️
Sun Nov 09 14:58:25
RT @acquiredotcom: Recent deals closed on @acquiredotcom:

SaaS → $510,00
Mobile → $467,000
Content → $170,000 

Every acquisition is a lif…

RT @acquiredotcom: Recent deals closed on @acquiredotcom: SaaS → $510,00 Mobile → $467,000 Content → $170,000 Every acquisition is a lif…

Founder and CEO of @acquiredotcom. https://t.co/wRMIssDmhl has helped 100s of startups get acquired and facilitated $500m+ in closed deals.

avatar for Andrew Gazdecki
Andrew Gazdecki
Sun Nov 09 14:47:36
And here’s the code itself; you can paste this directly into Google Colab and it generates the plot:

import numpy as np, matplotlib.pyplot as plt
R=10.0; P=34.0; q=2*np.pi/P
nz,nk=720,560; kz_max,kp_max=2.0,2.0
sigma_z=0.04; mmax=20; delta_phi=np.pi; delta_z=P/2.0
h=3.4; N_bp=400; beta=0.25
kz=np.linspace(-kz_max,kz_max,nz); kp=np.linspace(0,kp_max,nk)
n_tau=512; tau=np.linspace(0,np.pi,n_tau); s_tau=np.sin(tau)
def Jv(m,x):
    x=np.asarray(x); ph=m*tau[None,:]-x[:,None]*s_tau[None,:]
    return np.trapz(np.cos(ph),tau,axis=1)/np.pi
I=np.zeros((nz,nk),dtype=np.float64)
for m in range(-mmax,mmax+1):
    Jm=Jv(abs(m),kp*R); L=np.exp(-0.5*((kz-m*q)/sigma_z)**2)[:,None]
    A2=2.0+2.0*np.cos(m*delta_phi+kz[:,None]*delta_z)
    I+=(Jm*Jm)[None,:]*L*A2
eps=1e-9
S=(np.sin(0.5*N_bp*h*kz)**2)/((np.sin(0.5*h*kz)**2)+eps); S=(S/(S.max()+eps))[:,None]
I*=1.0+beta*S
I/=I.max()+1e-12; I=np.log1p(12*I)
I_full=np.concatenate([I[:,::-1],I],axis=1)
extent=[-kp_max,kp_max,-kz_max,kz_max]
plt.figure(figsize=(6,8))
plt.imshow(I_full,extent=extent,origin='lower',aspect='auto')
plt.axis('off')
plt.savefig('photo51_like.png',dpi=220,bbox_inches='tight',pad_inches=0.02)
https://t.co/HDadZBCvO4()

And here’s the code itself; you can paste this directly into Google Colab and it generates the plot: import numpy as np, matplotlib.pyplot as plt R=10.0; P=34.0; q=2*np.pi/P nz,nk=720,560; kz_max,kp_max=2.0,2.0 sigma_z=0.04; mmax=20; delta_phi=np.pi; delta_z=P/2.0 h=3.4; N_bp=400; beta=0.25 kz=np.linspace(-kz_max,kz_max,nz); kp=np.linspace(0,kp_max,nk) n_tau=512; tau=np.linspace(0,np.pi,n_tau); s_tau=np.sin(tau) def Jv(m,x): x=np.asarray(x); ph=m*tau[None,:]-x[:,None]*s_tau[None,:] return np.trapz(np.cos(ph),tau,axis=1)/np.pi I=np.zeros((nz,nk),dtype=np.float64) for m in range(-mmax,mmax+1): Jm=Jv(abs(m),kp*R); L=np.exp(-0.5*((kz-m*q)/sigma_z)**2)[:,None] A2=2.0+2.0*np.cos(m*delta_phi+kz[:,None]*delta_z) I+=(Jm*Jm)[None,:]*L*A2 eps=1e-9 S=(np.sin(0.5*N_bp*h*kz)**2)/((np.sin(0.5*h*kz)**2)+eps); S=(S/(S.max()+eps))[:,None] I*=1.0+beta*S I/=I.max()+1e-12; I=np.log1p(12*I) I_full=np.concatenate([I[:,::-1],I],axis=1) extent=[-kp_max,kp_max,-kz_max,kz_max] plt.figure(figsize=(6,8)) plt.imshow(I_full,extent=extent,origin='lower',aspect='auto') plt.axis('off') plt.savefig('photo51_like.png',dpi=220,bbox_inches='tight',pad_inches=0.02) https://t.co/HDadZBCvO4()

Here’s the final image straight from python.

avatar for Jeffrey Emanuel
Jeffrey Emanuel
Sun Nov 09 14:47:29
  • Previous
  • 1
  • More pages
  • 340
  • 341
  • 342
  • More pages
  • 2127
  • Next