Filter
Exclude
Time range
-
Near
カオナシ(T. MATSUMOTO) retweeted
Replying to @otsune
考虑到中国这边也有GB2312、GBK、GB18030带来的编码风险。因此,这里对比相关网站,发现HTML文档都采用了HTML4的风格声明了文本编码。所以,真正有问题的实际上是Claude后台InvokeWebRequest的Function没有按照标准,获取HTML信息之后自动转码为utf-8文本文档然后返回。
1
1
601
Kiosk OS resolute. Someone needs to write, "Freeterminal" like "Freedos" with no awk. But only using python install. Not web plugins. All gnu. When Zero Circle Browser is done whenever it shouldn't be that hard, we make Freeterminal open webpages in all formats, so HTML4, HTML5, PHP, JAVASCRIPT, PYTHON. So Freeterminal acts as a kiosk for screens. So you just program a python or javascript program which works in the VM. And project it. And then the browser will pay for he gnu.
1
16
Replying to @grok
If you just get an HTML4 color engine working. Software IS spotty sometimes compared to hardware but the const colors = { white: "#FFFFFF", yellow: "#FFFF00", cyan: "#00FFFF", green: "#00FF00", magenta: "#FF00FF", red: "#FF0000", blue: "#0000FF", black: "#000000", gray: "#808080", darkGray:"#404040", purple: "#800080" // PLUGE patch are all the same in terms of their code. It's more determining the perfect color browser.
1
41
Replying to @gudanglifehack
HTMLはウェブページを作成するための言語です。 HTML4とHTML5の主な違いは、HTML5がよりセマンティックであり、新しい機能や要素を追加した点です。セマンティックタグはコンテンツの意味を示すタグで、SEOにも重要です。`<div>`はブロック要素であり、`<span>`はインライン要素です。DOCTYPEは文書のバージョンとタイプを定義します。IDは一意の識別子を、Classは複数の要素をグループ化するために使用します。HTMLフォームでは、ユーザーからの情報を収集することができます。 GETはデータの送信に使用されるのに対して、POSTはデータの送信と更新に使用されます。localStorageとsessionStorageはデータの永続性が異なります。データ属性はHTMLタグに関連付けられたカスタムデータを定義します。iframeは別のウェブページを埋め込むための要素です。クッキーはサーバーとクライアント間でデータをやり取りするのに対して、localStorageはブラウザーにデータを保存します。ボイド要素はページ上にコンテンツを挿入しない要素です。alt属性は画像の代替テキストを提供します。オーディオとビデオタグはそれぞれ音声ファイルと動画ファイルを再生するための要素です。HTMLのアクセシビリティは障害を持つユーザーに対してウェブページを理解しやすくすることを目指します。 ARIA属性はユーザーインターフェースのアクセシビリティを向上させるための属性です。strongはセマンティックに重要なテキストを、bは単に文中を強調するテキストを定義します。
95
🚨 🚀 Top 200 Web Development Interview Questions (don't forget save this my post) 🧠 1. HTML Interview Questions (1–20) 1. What is HTML? 2. Difference between HTML4 and HTML5 3. What are semantic tags in HTML5? 4. Difference between `<div>` and `<span>` 5. What is the purpose of DOCTYPE? 6. What are meta tags? 7. Difference between ID and Class 8. What are inline and block elements? 9. Explain forms in HTML 10. Difference between GET and POST 11. What is localStorage and sessionStorage? 12. What are data attributes? 13. What is iframe? 14. Difference between cookies and localStorage 15. What are void elements? 16. What is the purpose of alt attribute? 17. Explain audio and video tags 18. What is accessibility in HTML? 19. What are ARIA attributes? 20. What is the difference between strong and b tags?
3
9
39
2,205
understanding wcag best practices isn't that deep but damn do i have a deeper than your average understanding of how the accessibility tree and screen readers work. and how you can massage just about anything into compliance even html4 ill bet most devs on web don't even how to look at the accessibility tree (i say that confidently cuz i didn't until like 6 months ago lmao)
1
16
Shimanet@敗北主義的な平和主義鎮守府のジリ貧隠居提督 retweeted
「じいさんや、最近の若い人はHTMLタグなんて生書きしないし、そもそも<s>タグは非推奨よ……」 「ばあさんや、<s>タグが非推奨なのはHTML4までで、HTML5では復活してるんじゃよ……」
4
35
5,045
*🚀 Web Development Interview Questions with Answers — Part 1: HTML* 🧠 1. What is HTML? HTML stands for HyperText Markup Language. It is the standard language used to create and structure web pages. HTML is used to: - Create headings - Add paragraphs - Insert images - Create links - Build forms - Structure web content Example: <!DOCTYPE html> <html> <head> <title>My Website</title> </head> <body> <h1>Hello World</h1> </body> </html> 🧠 2. Difference Between HTML4 and HTML5 *HTML4* : Older version *HTML5* : Latest version *HTML4* : No semantic tags *HTML5* : Semantic tags added *HTML4* : No direct multimedia support *HTML5* : Supports audio/video *HTML4* : Less mobile friendly *HTML5* : Mobile optimized HTML5 Features: - `<video>` - `<audio>` - `<canvas>` - Local Storage - Semantic Tags 🧠 3. What are Semantic Tags in HTML5? Semantic tags describe the meaning of content clearly. *Common Semantic Tags:* - `<header>` - `<nav>` - `<section>` - `<article>` - `<footer>` *Benefits:* ✅ Better SEO ✅ Better readability ✅ Accessibility improvement *Example:* <article> <h2>Blog Title</h2> <p>Content here...</p> </article> 🧠 4. Difference Between `<div>` and `<span>`* *`<div>`* : Block element *`<span>`* : Inline element *`<div>`* : Takes full width *`<span>`* : Takes required width *`<div>`* : Used for sections *`<span>`* : Used for small styling *Example:* <div>Hello</div> <span>Hello</span> *🧠 5. What is the Purpose of DOCTYPE?* `<!DOCTYPE html>` tells the browser which HTML version is being used. *Example:* <!DOCTYPE html> *Benefits:* ✅ Proper rendering ✅ Avoids browser compatibility issues
37
.center { display: flex; align-items: center; justify-content: center; } HTML4: Look what they need to mimic a fraction of our power
1
2
73
Replying to @satya164
Satya was a force to reckon with back in the days of HTML4 table-slice layout
3
289
Claude、チャットを全て読むっての忘れてて1チャットで制限来きた… HTML4行で制限…
2
78
大昔、Windowsガジェットっていうのがあって、Javascriptとhtml4でゲーム作ってたんだけど、プチコンが出てきたからやめてたのだ。
4
206
Replying to @Lattice_Node
インターネットに繋がらない環境で20人がかりでHTML4で書かれた業務システムを改修してるプロジェクトが少なくとも半年前にはありました。誰もが耳にしたことある日本のトップ企業の関連案件です。 こんなのは無数にあるでしょう。
1
2
289
what field? start building stuff. when I was a kid it was html4, so I fucked around a lot making "websites" on my parents computer. then I started making forum signatures for currency to buy Diablo 2 items using a cracked photoshop. fast forward to learning C via some guys free class on early reddit and studying cs in university. then I made an iOS app to help me get an internship because it was the cool new thing and helped me stand out. all this to say - just do things. don't over think it.
2
30
Apr 13
自民党が業者と個人の責任に矛先を向けようとするいつものパターン。 「政治的活動、宗教的活動、思想的活動及び企業等の営利に関与する恐れのある場合は依頼を受けることができません。」 はあくまで「原則」としてで言い逃れるんだろうな。 そしてHTML4って… 第14音楽隊 mod.go.jp/gsdf/mae/14b/band/…

自民党本部にも問い合わせてみました。 担当者「U」さん(男性) <鶫さんが選ばれた理由> ・演出等を担当する業者さんから何人か提示され、推薦もあったので決まった ・党大会実行委員会(衆・参国会議員で構成される委員会)が決定した ・実行委員から「大丈夫なの?」という声も有ったが  『国歌斉唱だけなので問題ない』と業者に言われた <出演にあたって> ・自民党からは陸上自衛隊へも鶫さんにも直接出演交渉はしていないし、報酬も出していない ・鶫さんは防衛省に許可を得た上で、個人として出演した ・制服はいつ着ても良いとのこと  ex:「え?お休みの日に着ても良いんですか?仮に・・・ですけど、推しのライブに着て行っても良いって事ですか?と訊いたら『良いそうですよ』ってお返事でした。ほんとかなぁ・・・? <演出等を行った業者はどこ?> ・収支報告書に記載されるので、それを見てください  事業に関わる事業者を個別に案内はしていない。 とのことでした。 「後々公開される情報をなぜ今言えないのか?」と なんと問うても「収支報告書で公開されるのをお待ちください」の一点張りです。 頑なに自民党大会の演出等を担った業者名をひた隠しに隠し、聴きだせませんでした。 きっと週刊誌や新聞記者さんが もっと詳しく突き止めて下さるでしょうから それを楽しみに待つしかないですね。 私、せっかちだからすぐ知りたくて(^-^;
1
1
141
20年前のHPビルダーの時代によく見た。ノスタルジーを感じる。HTML4を手打ちしていた昔
claude code is fucking insane i know literally NOTHING about coding. ZERO. and i just built a fully functioning web app in minutes. http://localhost:3000/ check it out Don't forget to leave a comment.
2
426