Coder Social home page Coder Social logo

ivajkin / computerrepairserviceautomation-crsa Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 2.25 MB

Программный комплекс для автоматизации процессов "Службы компьютерного ремонта" и их филиалов

Shell 0.01% Java 11.60% CSS 45.05% JavaScript 43.34%

computerrepairserviceautomation-crsa's Introduction

🚀 Hello, my name is Timothy Ivaikin and I am a Tech Leader with over 15 years of experience in engineering and operations management. I have a proven track record in improving software organizations, and I currently lead large, complex organizations including engineering and related functions. I am also the founder of Edge & TMedia, where we help top corporations to improve their software development processes. Thanks for visiting!

  • 👋 Hi, I’m @Ivajkin
  • 👀 I’m interested in meeting top global experts
  • 💞️ I’m looking to collaborate on making the World better place
  • 📫 To contact me message me on LinkedIn: Timothy Ivaikin

computerrepairserviceautomation-crsa's People

Contributors

dasha94 avatar hairymax avatar igonina avatar ivajkin avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

computerrepairserviceautomation-crsa's Issues

Поиск по словам

Создать textbox в который можно вписать слово и найти все строки таблицы бд с таким словом. (как при сочетании клавиш ctrl+f, только с поиском по всем строкам таблицы)

Написать скрипт создания таблицы для версионирования базы данных на основе диалекта MSQL -- на PostgreSQL с нашими стилями (названия маленькими буквами, через технический пробел).

-- At some point in the future, the schema will have to change. Before you baseline the
-- database you need to add a table to record these schema changes. The following table is the kind of table I'd use to track every change to a database.
/*

CREATE TABLE [dbo].[SchemaChanges](
[ID] [int] IDENTITY(1,1) NOT NULL,
[MajorReleaseNumber] varchar NOT NULL,
[MinorReleaseNumber] varchar NOT NULL,
[PointReleaseNumber] varchar NOT NULL,
[ScriptName] varchar NOT NULL,
[DateApplied] [datetime] NOT NULL,

CONSTRAINT [PK_SchemaChangeLog]
PRIMARY KEY CLUSTERED ([SchemaChangeID] ASC)
)

The first baseline schema script should, as the last step, officially install version 1.0 of the database:

INSERT INTO [SchemaChangeLog]([MajorReleaseNumber]
,[MinorReleaseNumber]
,[PointReleaseNumber]
,[ScriptName]
,[DateApplied])
VALUES
('01'
,'00'
,'0000'
,'initial install'
,GETDATE())

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.