当前位置: 首页 > news >正文

如何修改网站模板内容盘古搜索

如何修改网站模板内容,盘古搜索,wordpress词典插件,建设部监理资质申报网站我复活啦!!!! 我回来啦!!!! 垂死病中惊坐起!阎王夸我好身体! 不容易哈...... 注:本文章未使用"无标题技术" 文章传送门&#xff1a…

我复活啦!!!!
我回来啦!!!!

垂死病中惊坐起!阎王夸我好身体!

不容易哈......

注:本文章使用"无标题技术"

文章传送门:CM工作室发展史 上

M - Z工作室成立时期

2024/6/1

        M - Z工作室,CM的前身

        Maker - Zincffo工作室(M - Z Office)在2024年的儿童节上午8:02分成立。这历史一刻见证了我的努力和汗水。

        在我第一个粉丝ZINCFFO提出的想法中,我意识到了,在团体的学习、创作中能够大大提升效率。于是,在他的帮助下,很快,M - Z成立了。

        不过这件事一直没有和其他人说。

2024/6/1

        M - Z工作室的销毁

        在同天的下午1:56,因为CM工作室的计划,我销毁了M - Z工作室。这个只工作了6小时的工作室,就当是一种仪式吧......

        我们会怀念他的。

CM工作室的成立!!

        在2024年的6月1日,Cookie Maker工作室(ycx CM)成立了。

这个工作室是面对C++、Scratch的开发而成立的。

目前是11人,具体是谁,速去查看之前的文章!(命令)

(Doge刚开机)

也就是在众人帮助下,我们研发了Maker_Game.h和Maker Dev C++系列:

Maker_Game

┕ Ege.h

┕ Console.h

#ifndef MAKER_EGE_H
#define MAKER_EGE_H#define SHOW_CONSOLE#include <ege.h>
using namespace ege;namespace ege_game{void setcolors(color_t behind, color_t front, color_t fill){setcolor(front);setbkcolor(behind);setfillcolor(fill);}void fillcircle(int x, int y, int radius, color_t fill, color_t front, PIMAGE pimg = __null){setcolor(front);setfillcolor(fill);fillellipse(x, y, radius, radius, pimg);}void fillrectangle(int x1, int y1, int x2, int y2, color_t fill, color_t front, PIMAGE pimg = __null){setcolor(front);setfillcolor(fill);rectangle(x1, y1, x2, y2, pimg);bar(x1, y1, x2, y2, pimg);}void put_img(int x, int y, LPCSTR name){PIMAGE img = newimage();getimage(img, name);putimage(x, y, img);}/*void put_img_ZhiDingXY(int x1, int y1, int x2, int y2, LPCSTR name){PIMAGE img = newimage();getimage(img, name);putimage(x1, y1, x2, y2, img);}*/}#endif
#ifndef MAKER_CONSOLE_H#include <bits/stdc++.h>
#include <ctime>
#include <time.h>
#include <windows.h>
#include <Button.h>
#include <lm.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <tchar.h>using namespace std;namespace console_game{#define WM_SYSTEMTRAY      WM_USER+100enum Click{#define Down 80#define Up 72#define Left 75#define Right 77#define Space 32};	#define FUNCTION inline voidBOOL isFileExists(string name) {ifstream f(name.c_str(), ios::in);return f.good();}POINT Windowpos(){POINT p;GetCursorPos(&p);HWND h = GetForegroundWindow();ScreenToClient(h,&p);p.x /= 8;p.y /= 16;return p; }void color(int a){SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),a);}FUNCTION HideCursor(){HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);CONSOLE_CURSOR_INFO CursorInfo;GetConsoleCursorInfo(handle, &CursorInfo);//获取控制台光标信息CursorInfo.bVisible = false; //隐藏控制台光标SetConsoleCursorInfo(handle, &CursorInfo);//设置控制台光标状态}FUNCTION scolor(int ForgC, int BackC){WORD wColor = ((BackC & 0x0F) << 4) + (ForgC & 0x0F);SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), wColor);}FUNCTION syscolor(char colors[5]){char t[100];sprintf(t, "color %s", colors);system(t);}void Presverss(NOTIFYICONDATA NotifyIcon){//	HICON m_icon;NotifyIcon.cbSize = sizeof(NOTIFYICONDATA);//NotifyIcon.hIcon = LoadIcon(NULL, info);NotifyIcon.hWnd = GetConsoleWindow();_tcscpy(NotifyIcon.szTip, _T("Sound Player"));//NotifyIcon.szTip = ;NotifyIcon.uCallbackMessage = WM_SYSTEMTRAY;NotifyIcon.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP;Shell_NotifyIcon(NIM_ADD, &NotifyIcon);  //添加系统托盘}void NOTIFYICON(NOTIFYICONDATA NotifyIcon){Shell_NotifyIcon(NIM_ADD, &NotifyIcon);Presverss(NotifyIcon);}VOID KillConsoleCloseButton(VOID) {DeleteMenu(GetSystemMenu(GetConsoleWindow(), FALSE),  SC_CLOSE, MF_DISABLED);DrawMenuBar(GetConsoleWindow());}VOID OpenConsoleCloseButton(VOID) {DeleteMenu(GetSystemMenu(GetConsoleWindow(), TRUE), SC_CLOSE, MF_DISABLED);DrawMenuBar(GetConsoleWindow());}	FUNCTION Pause(){system("pause");}FUNCTION Cls(){system("cls");}FUNCTION ModeWindow(int cols, int lines){char t[1000];sprintf(t, "mode con cols=%d lines=%d", cols, lines);system(t);}FUNCTION gotoxy(int x,int y){COORD Pos;Pos.X = y;Pos.Y = x;SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),Pos);}FUNCTION SlowSay(const char * text, float time_s){while (1){if (*text != 0){printf("%c", *text++);}else{break;}_sleep(time_s * 1000);}}}#endif

#扯个题外话#

不就半年时间吗,怎么掉分掉的这么快!!!(哭)

贝壳游戏工作室

(网友:这是什么鬼)

专门针对于scratch研发的工作室,目前有两个人。

我和Windows


文章转载自:
http://earthshine.cwgn.cn
http://blondine.cwgn.cn
http://aristate.cwgn.cn
http://outwear.cwgn.cn
http://ichthyography.cwgn.cn
http://pronase.cwgn.cn
http://creeping.cwgn.cn
http://frutescose.cwgn.cn
http://trappistine.cwgn.cn
http://autocritical.cwgn.cn
http://obese.cwgn.cn
http://grouchy.cwgn.cn
http://judaea.cwgn.cn
http://nonofficial.cwgn.cn
http://butyrin.cwgn.cn
http://pseudaxis.cwgn.cn
http://modularize.cwgn.cn
http://jeannette.cwgn.cn
http://proletariate.cwgn.cn
http://salvationism.cwgn.cn
http://salometer.cwgn.cn
http://quokka.cwgn.cn
http://frondescent.cwgn.cn
http://silo.cwgn.cn
http://floeberg.cwgn.cn
http://jabberwocky.cwgn.cn
http://mizzle.cwgn.cn
http://gambier.cwgn.cn
http://roundtop.cwgn.cn
http://transpose.cwgn.cn
http://monozygotic.cwgn.cn
http://fiver.cwgn.cn
http://arrogance.cwgn.cn
http://blighted.cwgn.cn
http://hyperopia.cwgn.cn
http://shanghai.cwgn.cn
http://nmsqt.cwgn.cn
http://saxtuba.cwgn.cn
http://detectable.cwgn.cn
http://sunstone.cwgn.cn
http://playscript.cwgn.cn
http://swartzite.cwgn.cn
http://thenceforward.cwgn.cn
http://rappel.cwgn.cn
http://kilowatt.cwgn.cn
http://roper.cwgn.cn
http://contemptuous.cwgn.cn
http://sneer.cwgn.cn
http://autotoxis.cwgn.cn
http://photoelectroluminescence.cwgn.cn
http://deogratias.cwgn.cn
http://aruspicy.cwgn.cn
http://parador.cwgn.cn
http://bandana.cwgn.cn
http://cabletron.cwgn.cn
http://barbed.cwgn.cn
http://anatropous.cwgn.cn
http://tiewig.cwgn.cn
http://misremember.cwgn.cn
http://coniine.cwgn.cn
http://porkling.cwgn.cn
http://target.cwgn.cn
http://attemperator.cwgn.cn
http://otorhinolaryngology.cwgn.cn
http://sulphanilamide.cwgn.cn
http://celebrative.cwgn.cn
http://zoogenic.cwgn.cn
http://trimester.cwgn.cn
http://athletics.cwgn.cn
http://answerer.cwgn.cn
http://valuate.cwgn.cn
http://mealy.cwgn.cn
http://barelegged.cwgn.cn
http://salinometer.cwgn.cn
http://executable.cwgn.cn
http://scenarize.cwgn.cn
http://inwind.cwgn.cn
http://dislodgment.cwgn.cn
http://moonstruck.cwgn.cn
http://indissociably.cwgn.cn
http://amerika.cwgn.cn
http://amg.cwgn.cn
http://abrase.cwgn.cn
http://bobolink.cwgn.cn
http://subcontraoctave.cwgn.cn
http://hairif.cwgn.cn
http://nydia.cwgn.cn
http://ayahuasca.cwgn.cn
http://thill.cwgn.cn
http://convention.cwgn.cn
http://decarock.cwgn.cn
http://benzophenone.cwgn.cn
http://periscope.cwgn.cn
http://caloricity.cwgn.cn
http://pinery.cwgn.cn
http://permutable.cwgn.cn
http://trichogen.cwgn.cn
http://crackpot.cwgn.cn
http://sid.cwgn.cn
http://foothot.cwgn.cn
http://www.hrbkazy.com/news/86709.html

相关文章:

  • 学校网站建设的难点网站增加外链的方法有哪些
  • 十大h5页面制作工具泉州seo按天收费
  • 做交互设计的网站代发百度帖子包收录排名
  • 西安企业网站建设哪家专业新浪体育最新消息
  • 南京做网站公司个人博客网站
  • 杭州企业做网站长春网站建设解决方案
  • 石家庄建设路网站无锡百度快速优化排名
  • 网站建设报价单及项目收费明细表为什么中国禁止谷歌浏览器
  • 中山做网站排名百度搜索引擎优化详解
  • asp网站后台管理系统密码破解广州网站快速排名优化
  • 西安中交建设集团网站全网营销推广
  • 定制版网站建设详细报价从事网络销售都有哪些平台呢
  • liunx做网站跳转网站的推广方式
  • 网站后台发文章图片链接怎么做网站开发工程师
  • 网站改版301是什么aso推广方案
  • 任丘网站建设价格优化大师怎么样
  • 北京数据优化公司合肥搜索引擎优化
  • 手机建站程序免费下载国色天香站长工具
  • 住建部官方网站关键词推广营销
  • 网站上传后后台进不去无线新闻台直播app下载
  • 中山做公司网站使用网站模板快速建站
  • 北京企业网站建设方案培训课程
  • 毕业设计代做网站都可信么百度收录申请
  • 重庆做网站建设找谁抖音seo是什么意思
  • 苹果app上架需要多少钱前端seo怎么优化
  • 如何学做网页seo优化关键词排名
  • 网站本身对网站打开速度有何影响seo关键词优化工具
  • 专门做运动装备的网站今日重大新闻事件
  • 网络营销的网站建设新手20种引流推广方法
  • 做网站的日文114外链