ニコニコミュニティ

コミュニティ検索

  • レベル
    5
    フォロワー
    14
    動画
    0
    ヒノウラグルマ C++
    2021年06月20日 20:18 更新
    #include<stdio.h>  int main() { printf("見に行きたい生主のコミュニティがとうとう消し飛んだ為に、ヒマを持て余した愚かなる趣味人間が恥も忍ばず極稀に放送を行う目的不明の基本無人を想定した謎のコミュニティC++がここである。\n なお、Cとはコミュニティの略ではなく、定積分のConstが数値不明なことに由来していない。追伸:コミュニティアップデートの伴いCからC++になった。C#はワタクシ使えませんので。\n"); PIXIV(); return 0 ; } // 雑多発信アカウント : http://twitter.com/MinuteWheel 。 // 時計垢 : http://twitter.com/ad19200610 。 void PIXIV(void) { char *pixiv = " http://www.pixiv.net/member.php?id=3996527 "; printf(pixiv); return 0 ; } /* 配信?ありませんヨ?そんなもの*/
  • レベル
    4
    フォロワー
    15
    動画
    0
    ぴろぽんさんのコミュニティ
    2011年06月19日 07:32 更新
    ↓ニトロ専用効果音発生装置Ver1.03のHSPソース ; ######################################################### ; # プログラム名:ニトロ専用効果音発生装置 Ver1.03 # ; # 実行ファイル名:nitoro.exe # ; # 2011/06/16 # ; ######################################################### ; ##################################################### ; # 起動時処理 # ; ##################################################### #include "hspda.as" ;data.txtのcsv処理に必要なインクルード title "nitoro Ver1.03" ;タイトルバーに表示する文字 width 234,48 ;ウィンドウサイズ指定 sdim fname,500,11,2 ;fname(0,0)~fname(9,0):効果音、fname(10,0):プログラム名初期表示、fname(0,1)~fname(10,1):各ファイルの音量レベル、1項目500文字までの11X2の2次元配列 sdim cline,1000 ;1行データバッファ sdim ckou,500,2 ;1行項目データバッファ dim bmusic,10 ;bmusic(0)~bmusic(9):再生ボタンのオブジェクトID保存用 dim bread,10 ;bread(0)~bread(9):読込ボタンのオブジェクトID保存用 cd = dir_cur ;cd:実行ファイルのカレントディレクトリを保存 sdata = cd+"\\data.txt" ;sdata:cdを利用してdata.txtの保存場所を指定 rep=0 ;音声のリピートフラグ(0:1回、1:無限) x=16:y=0 ;ボタン群の左端配置位置 fnum = 10:ck=10 ;再生中のファイルナンバー(10:初期値) fname(fnum,0) = "nitoro Ver1.03" ;再生ファイル名欄に最初表示しておく文字 ck = fname(fnum,0) ;ワンクリック時のファイルナンバー(10:初期値) vol = 15 ;初期ボリューム値 ; ##################################################### ; # ウインドウ内作成処理 # ; ##################################################### *start cls ;ウインドウ内をクリア color 240,240,240:boxf ;背景色をオブジェクトと同じ灰色にする sdim buf,20000 ;テキストのバッファを確保 buf="" ;バッファをクリア ; data.txtに書かれた音源ファイルをメモリにロード exist sdata ;data.txtが存在すかチェックする(しない場合:strsize=-1) if strsize=-1 : goto *fnameshoki ;もしdata.txtが存在しなかったら*fnameshokiに飛ぶ ; data.txtが存在する場合 notesel buf ;data.txtをbufに転記する指定 noteload sdata ;data.txtをbufに転記する for i,0,10,1 noteget cline,i ;bufより1行目~10行目までを順次clineに格納する csvstr ckou, cline ;clineに入っている内容をckou(0),ckou(1)に格納する for j,0,2,1 fname(i,j) = ckou(j) ;fname(0,0)~fname(10,0)にファイル名、fname(0,1)~fname(10,1)にその音量を格納する(10は初期値) next next goto *gamen ; data.txtが存在しない場合 *fnameshoki for i,0,10,1 fname(i,0)="none" ;fname(0,0)~fname(9,0)に"none"を代入 next ; ウィンドウ内にボタン等を配置する *gamen ; ボタン以外のものの配置 pos 0,y+0 ;再の表示位置 color:mes "再" ;黒で再を表示する pos 0,y+24 ;読の表示位置 color:mes "読" ;黒で読を表示する fsel = getpath(ck,8) ;再生ファイル名を取得し、ディレクトリ情報を消して(オプションの8)、fselにファイル名を拡張子付で保存 title fsel ;再生ファイル名をタイトルバーに表示 pos x+120,y+24 ;Repeatの位置指定 chkbox "Repeat",rep ;Repeatのチェックボックス作成(rep:0=無,1=有) pos x+120,y+0 ;強制停止の位置指定 button "強制停止",*mstop ;強制停止ボタン作成(押されたときは*mstopに飛ぶ) pos x+186,y+0 ;音量の表示位置指定 color:mes "音量" ;黒で音量を表示する ; ボタンの配置 objsize 12,24 ;1個あたりのボタンサイズを指定 for i,0,10,1 if fname(i,0)="none" : goto *pass ;もしfname(0,0)~fname(9,0)でファイルデータがないものは*passに飛ぶ=(再生ボタンは表示しない) ; ファイルデータがあった場合 pos x+0+i*12,y+0 ;再生ボタンの位置指定 button str(i),*music ;0~9という文字のボタンを作成し、押されたら*musicに飛ぶ bmusic(i) = stat ;bmusic(0)~bmusic(9)に再生ボタンのオブジェクトIDを保存する(オブジェクトIDシーケンシャル作成の為) *pass ; ファイルデータがない場合ボタンを作成せずここに飛んでくる next for i,0,10,1 pos x+0+i*12,y+24 ;読込ボタンの位置指定 button str(i),*read ;0~9という文字のボタンを作成し、押されたら*readに飛ぶ bread(i) = stat ;bread(0)~bread(9)に読込ボタンのオブジェクトIDを保存する(オブジェクトIDシーケンシャル作成の為) next ; ボリュームの配置 repeat ;ループしてボリュームの入力待ち stick ky,256 ;左クリック検出 redraw 0 ;再描画のちらつき防止処理 vx = 185:vy=24 ;ボリュームパーツの左上の座標 color 240,240,240:boxf x+vx,vy+9,x+vx+31,vy+16 ;ボリュームバー背景描画 color:boxf x+vx+1,vy+11,x+vx+31,vy+13 ;ボリュームバー範囲描画 color ,,255:grect x+vx+1+vol,vy+12,,2,7 ;ボリュームバー描画 if (ky&256):if mousex>=x+vx+1&mousex<=x+vx+33&mousey>=vy+4&mousey<=vy+21:{ ;左クリックされかつボリュームバー範囲ならば vol=limit((mousex-(x+vx+1)),0,30) ;ボリュームバーにあわせたボリュームをvol値に入力 } if vol!=vol1:{ ;ボリューム値が過去のボリューム値と違うなら vol0=int(powf(vol, 2)*10/36):mci "setaudio se volume to "+vol0 ;再生ボリュームを再設定 vol1=vol ;現在のボリューム値を過去ボリューム値とする fname(fnum,1) = str(vol) ;現在のボリューム値をdata.txtに書き出すためfname(fnum,1)に格納 goto *file_save } redraw 1 ;再描画のちらつき防止処理 await 100 ;ループ時に処理を止め負荷を落とす loop ;ループ先頭に戻る stop ; ##################################################### ; # ボタン押されたときの処理 # ; ##################################################### ; 再生ボタンが押されたとき *music j = stat ;押されたボタンのオブジェクトIDをjに格納する for i,0,10,1 if bmusic(i)=j : k = i ;jと、再生ボタン描画時に保存したオブジェクトIDのマッチングを行い、同じならばその再生ボタン番号をkに格納する next exist fname(k,0) ;効果音ファイルがfname(k,0)に保存されたディレクトリ存在するかチェックする(しない場合:strsize=-1) if strsize=-1 : fname(k,0) ="none" : goto *file_save ;もし効果音ファイルが存在しなかったら、fname(k,0)="none"にして*file_saveに飛ぶ(エラー処理) ; 効果音ファイルが存在したとき(正常処理) if fname(k,0)!=ck{ ck = fname(k,0) }else{ mci "stop se" ;効果音を停止する mci "close se" ;効果音を閉じる mci "open \""+fname
  • レベル
    1
    フォロワー
    1
    動画
    0
    [2023/1/21 update!] ◆あかなすが制作したモデルの共通利用規約◆ Common Terms of use of MikuMikuDance Model Data produced by Akanas 利用規約を全て確認、同意した上でMMDモデルデータをご利用下さい。利用規約が読めない・利用規約に同意されない場合は、あかなす制作のモデルの使用は一切禁止です。 Read and agree with ALL terms of use written in this page before using my MikuMikuDance Model Data. If you do not agree with all terms of use, or if you do not understand any part of this terms of use, you are NOT allowed to use my MikuMikuDance Model Data. あかなす制作のモデルを利用された場合は本ページ記載の規約に同意したとみなします。 If you used my MMD Model Data, I assume that you agree to the terms and conditions stated on this page. 規約違反者を発見した場合、違反者のモデルの使用停止、モデルの新規配布を限定、モデルの使用を禁止したうえでの配布停止などの措置を取る場合がございます。 If I find someone using my MMD Model Data in violation of the terms and conditions, I may take measures such as suspending the use of the violator's data, limiting new distribution of the data, or prohibiting the use of the data and then suspending its distribution. 【免責事項/Disclaimer】 あかなす制作のモデルデータを利用された事によって生じるいかなる損害に対してあかなすは一切責任を負いません。自己責任・ご判断でご利用下さい。 Please use my MMD Model Data at your own risk. I can not be held liable or responsible for any damages caused by using my data. 【禁止事項/NG】 ・MMD、MMM以外での使用(VRChatなど禁止)  Do not use my MMD Model Data outside of MMD or MMM. ・アバターとしてのモデルの使用(SNS等のアイコン含む)  Do not use my MMD Model Data as a 3D avatar.(including SNS icon) ・モデルデータの再配布(改造・無改造全て) ※合作に使う場合のみ受け渡し可能  Do not re-distribute my MMD Model Data even if you remodel. ・原作者様・その他関係者様にご迷惑のかかる使用方法(メールで送り付ける行為など含む)  This MMD Model Data may not be used for any works which contain negative content toward the original product, individual, &/or group.(Include sending a video &/or image to original product.) ・R-18、グロテスク、暴力的な作品など公序良俗に反する作品での使用(紳士向け含む)  Do not use my MMD Model Data for works which include NSFW, grotesque, &/or violent content. ・政治的な主張への利用  Do not use my MMD Model Data for political advocacy. ・ヘイト表現,差別的な表現などキャラクターのイメージを著しく損ねるような用途での利用  Do not use my MMD Model Data for Hate expressions neither discriminatory expressions. ・すべての商用利用(Youtbeの収益化やskebでのやり取りなど微小でも金銭利益の発生する行為全て禁止)  Do not use my MMD Model Data for commercial purposes. (YouTube monetization, commission,etc) ・モデルデータを3Dプリントする行為  Do not 3D Print my MMD Model Data. ・モデルのリッピングデータとの併用  Do not use with ripped data with my MMD Model Data. ・別キャラクターへのモデルの改造 ※派生キャラの場合は許容  Do not modify my MMD Model Data into another character. (characters related to the original character are acceptable) ・同キャラ別モデルのパーツを使った改造  Do not remodel my MMD Model Data using same character's other model parts. ・モデルデータをダウンロードする際に必要なパスワードを公開する行為  Do not share the download password for my MMD Model Data. ・モデルの制作者を騙る行為  Do not attempt to deceive the creator of my MMD Model Data. 【していいこと/Allowed】 ・テクスチャの改変、お着換え、髪型変更などの改造 ※ウェイトやボーン、身長などの改造も可  You can rewrite texture and remodel clothes,hairstyles.(You can also remodel model's weight,bone and height too) ※他のモデルからパーツを使用する際はかならずそのモデルの規約をよく読みご使用ください  When using parts from other models, please be sure to read the terms and conditions of that model carefully. ・Twitter、Youtube、ニコニコ動画、bilibili動画への静止画・動画投稿  You can post a video &/or image on Twitter,Youtube,niconico and bilibili using my MMD Model Data. 【その他/Other】 ・予告なく規約を変更する、または配布を停止する可能性があります。  The terms and conditions may be changed or distribution may be suspended without notice. ・規約に変更があった場合はモデルのDLページの詳細に記載いたしますので、モデルを使用される前に必ずご確認をお願いいたします。  If there are any changes, they will be listed in the DL source details, so please check back when you use my MMD Model Data. ・モデルを使用された場合はどんな形でもよいので製作者名の記載(もしくはコンテンツツリーの登録)をいただけますとありがたいです。記載される際は「あかなす(英語の場合はakanas)」でお願いいたします。(一部パーツのみ使用の場合でも記載をお願いいたします)  If you used my MMD Model Data, I simply ask that you put my name"akanas" in your description or title credit.(credit me if you use only some parts are used) ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ ◆配布中モデル一覧◆ 天城カイト latest update:2023/1/21 配布動画:https://nico.ms/sm39940314 pass:カイトさんの自称(日本語9文字) ミザエル latest update:2023/1/21 配布動画:https://nico.ms/sm40289353 pass:ミザエルのエースカードの効果名(技名じゃないほう)句読点含めて16文字 神代凌牙 latest update:2023/1/21 配布動画:https://nico.ms/sm40376334 pass:シャークさんが作中一番最初に召喚したXモンスター。句読点含めて全角12文字。 Ⅳ latest update:2023/1/21 配布動画:https://nico.ms/sm41163607?past_log=1669603283 pass:ⅣさんのモットーにNo.40のATK+DEFを添えて合わせて全角11文字 ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ contact:@akns_888
  • レベル
    1
    フォロワー
    1
    動画
    0
    includeさんのコミュニティ
    2022年09月19日 11:53 更新
    includeのコミュニティです。 みなさん、ぜひフォローしてください。
  • レベル
    4
    フォロワー
    7
    動画
    0
    まいくろのゲーム部屋(10^-6)
    2016年01月22日 00:24 更新
    #include int main(void) { name まいくろ ; sex ♂ ; like AVA,osu!,MMO(?) ; return 0; }
  • レベル
    3
    フォロワー
    4
    動画
    0
    コミュリンク
    2014年04月19日 09:17 更新
    素敵コミュニティ様☻ ※敬称略 男性生主様 uu(co833856)【ゲームやる】 Eximにーさま(co292357)【Eximの適当な放送(仮)】 びたみんさん(co1249692)【びたみんまっこり】 ナポたん(co1191103)【食べれません。】 らすくん(co1363799)【RSK事務所】 アソしゃん(co1183630)【それがオレクオリティ(工事中)】 カミュっち(co1020848)【カミュ×コミュ】 earlyさん(co1320868)【酔っ払いのゲーム実況 】 メルたん(co207518)【ほっこりまったり放送局 】 ニアたん(co1647906)【ニアの2828放送局~毎日が記念枠~】 赤ジャージさん(co1289340)【赤いジャージと緑のなにか】 ぴかぁ社長(co1641191)【Pika*GameChannel (。-ܫ-。)ノ§ビリビリ】 からき林檎さん(co1824240)【大きなリンゴの樹の下で】 ポカリしゃん(co1610075)【ポカリの教団】 ぎっちょん(co1644725)【運命☆計画】 るいたん(co1226830)【ニコニコ大学付属三十路高等学校 】 がいさん(co1507166)【なんこつ放送(仮)】 エヌるさん(co1734372)【walik-in community『E-N-U』】 座布団さん(co1757680)【乾傘屋】 ればしゃん(co1708572)【寝落ちに定評のあるればの放送】 ヒノ泉さん(co1504381)【ヒノのぐだぐだ放送】 つかみどりさん(co1643607)【掴include<stdio.h>】 じょーかーさん(co1633443 )【じょーかーえくすとり~む】 女性生主様 しーちゃん(co1040045)【英雄と死神の黄昏の場所】 某床暖さん(co584351)【(リ)<夏に床暖房とかいらない件。(◞≼床≽◟◞౪◟◞≼暖≽◟;)<!?】 こめちゃん(co1291709)【※★米粉(機械音痴)のgdgd放送(’・ω・)σ★※】 よーこさん(co1387987)【よーこにご用?】 せつきさん(co1886573)【きっと今日も明日もずっと一緒】 *❁゚ฺ*❁。゚ฺ。*❀゚ฺ*❁。゚❀。**❁。゚❀。*。❀゚*❁゚ฺ*❁。゚ฺ。*。❀゚*❁゚ฺ*
  • レベル
    1
    フォロワー
    2
    動画
    0
    Overview of CLF-C02: AWS Certified Cloud Practitioner Exam The AWS Certified Cloud Practitioner Exam, designated as CLF-C02, serves as an entry-level certification aimed at individuals looking to build a foundational understanding of cloud computing with a focus on Amazon Web Services (AWS). This exam is tailored for professionals who are new to the cloud and seeks to validate their knowledge of fundamental AWS services, architectural principles, and basic security and compliance aspects. Covering a broad spectrum of cloud concepts, CLF-C02 is a stepping stone for those aspiring to pursue more specialized AWS certifications and establish a solid groundwork for cloud-related roles. If you want to crack this exam like me, I suggest you use Free AWS Cloud Practitioner CLF-C02 Exam Questions which will not only strengthen your exam preparation but also get you good marks. Visit: https://www.study4exam.com/amazon/info/clf-c02 Key Exam Domains and Concepts The CLF-C02 exam is structured around several key domains, each assessing specific areas of knowledge essential for cloud practitioners. These domains include cloud concepts, security and compliance, technology, billing and pricing, and support plans. Within these domains, candidates are expected to demonstrate proficiency in understanding the AWS global infrastructure, core AWS services, basic architectural principles, and the shared responsibility model for security. Additionally, the exam assesses awareness of AWS support plans and the fundamentals of billing and pricing models. This comprehensive approach ensures that certified individuals have a well-rounded understanding of AWS services and their implications. Importance of CLF-C02 Certification for Professionals Attaining the AWS Certified Cloud Practitioner certification, CLF-C02, holds paramount significance for professionals venturing into the cloud computing realm. This certification validates not only technical knowledge but also an awareness of the business and financial aspects associated with AWS. Cloud Practitioner certified individuals are equipped with a foundational understanding of cloud services, making them valuable contributors to cloud initiatives within their organizations. To assess your exam preparation, you need to complete the Amazon Certification Exam Practice Questions. Moreover, this certification serves as a precursor for those intending to pursue more advanced AWS certifications, providing a solid foundation for specialized roles such as Solutions Architect, Developer, or SysOps Administrator. As organizations increasingly migrate to the cloud, the AWS Certified Cloud Practitioner certification becomes an essential credential for professionals seeking to embark on a successful cloud computing career.
  • レベル
    1
    フォロワー
    1
    動画
    0
    Achieve Success in Your First Attempt at the RedHat EX200 Exam - Saving Both Time and Money A completion of the EX200 exam is a clear contributor to the increased opportunity in a very competitive IT industry, whereby at the One who clears the EX200 Certification Exam has a high level of skills and knowledge that are in high demand by technology firms. It does not only open a plethora of high-paying jobs and career advancement opportunities but also fills the holder with a lot of confidence. Naturally, successfully passing the EX200 exam on the first attempt can save resources, and beyond that, of course, it will display the level of competence and skills of an applicant, making him or her more interesting for employers. Pass4Success has really proved critical in ensuring this success, by delivering real and current RHCSA EX200 exam questions to prepare a candidate to pass the test in the very first attempt. Our valid Red Hat Certified System Administrator EX200 Exam Questions have been prepared to meet the need of candidates desiring to ensure their success through solid preparation and thereby have the best chances of success in the first attempt at Red Hat Certified System Administrator EX200 Certification Examination. Study anywhere with RedHat EX200 exam questions PDF format Our legitimate Red Hat Certified System Administrator EX200 exam questions in PDF format provide substantial advantages for those seeking rapid preparation for the EX200 certification exam. The Red Hat Certified System Administrator EX200 PDF questions enable flexible study, as they can be utilized on PCs, laptops, tablets, and smartphones. This version includes current and authentic RHCSA EX200 exam questions. The Pass4Success PDF exam questions are ideal for efficiently preparing for the  EX200 certification exam, and for those who prefer hard copies, these questions can be easily printed. Don't Miss This Offer - Limited Time Discount | Extra 25% Off - Use Coupon Code: SAVE25 Try Free RedHat EX200​​​​​​​ Exam Questions Demo: https://www.pass4success.com/redhat/exam/ex200 Efficient Self-Assessment with Pass4Success: RedHat EX200 Web-Based Practice Test Software Pass4Success provides an individual with an effective self-assessment tool in the form of web-based EX200 practice test software. The EX200 online practice exam does not require software installation and runs on different types of operating systems, which may include iOS, Android, Windows, Linux, and Mac. This Red Hat Certified System Administrator EX200 practice test is a browser-based mechanism that works systematically in all leading browsers: MS Edge, Internet Explorer, Opera, Safari, Firefox, and Chrome. The flexibility of the practice exam software allows the inclusion of the Red Hat Certified System Administrator EX200 exam practice tests within your schedule and to your convenience. This flexibility is offered for the ease of incorporating the RHCSA EX200 exam practice into the daily schedule. Stay Updated effortlessly with Pass4Success for RedHat EX200 Exam Questions. Preparation of the Red Hat Certified System Administrator EX200 Certification Exam becomes problematic for test-takers as the RedHat EX200. This now means a challenge for the exam candidates of RHCSA EX200 exam, which they have to clear out in order to have purchased the material, and by then, the date for the exam content could have been updated. In such a case, getting new EX200 preparation material is mandatory. Here, Pass4Success provides a way of escape from financial loss and a means to be free from the stress of failure. Having selected Pass4Success, you get not only the EX200 authentic exams question of but also the opportunity to get free updates. This means that even if there are changes to the Red Hat Certified System Administrator EX200 exam topics within three months of your purchase, you'll receive immediate and complimentary updates for the current RHCSA EX200 exam questions.
  • レベル
    1
    フォロワー
    1
    動画
    0
    includeさんのコミュニティ
    2022年08月13日 10:54 更新
    includeのコミュニティです。 みなさん、ぜひフォローしてください。
  • レベル
    1
    フォロワー
    4
    動画
    0
    (〜 ̄▽ ̄)〜 Guran Guran~
    2012年05月13日 05:56 更新
    Hi I am Micelle [read as Michelle] I'm a girl that uses her free time doing lots of things instead of resting... such activities include singing, making videos, reading, and fangirling. Thank you very much for being with me and I hope you would enjoy your stay. 〜( ̄▽ ̄〜)
  • レベル
    1
    フォロワー
    7
    動画
    0
    Candi-Chan's LifeTalk
    2012年04月04日 10:26 更新
    Candi-Chan's LifeTalk is the ultimate interactive show! I answer all the questions you ask me, and all of the viewers can input their thoughts as well thanks to niconico's unique technology! Simply send anything (love advice? big decisions? any random thing you want me to talk about?) to candichanslifetalk@gmail.com. If you want to remain anonymous when I address your inquiry on the show, don't forget to include a nickname in your email. I hope we will have fun! Schedule: Every Saturday 23:00 PDT. First broadcast TBA.. IDEA FOR MY SHOW CAME FROM THE MANGA/ANIME PRETEAR! :D