โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ PHP4 COM function (windows version) : FULL
PART 4
twitter.com/UNDERCODETC
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
"; #Open workbook
so that we can use it
$ wkb = $ ex-> application-> Workbooks-> Open ($ workbook) or Die (" Did not open " );
# Pre-save the original workbook, create a copy of the workbook
$ ex-> Application->
# $ ex-> Application-> Visible = 1; #This sentence goes to comment to make Excel visible
# Read and write a cell in a new worksheet
# We can read this cell E11 (Advertising in the 4th. Quarter)
$ sheets = $ wkb-> Worksheets ($ sheet); #Select the sheet
$ sheets-> activate; #Activate it
$ cell = $ sheets-> Cells (11,5); #Select the cell (Row Column number)
$ cell-> activate; #Activate the cell
print "Old Value = {$ cell-> value}
"; #Print the value of the cell: 10000
$ cell-> value = 15000; #Change it to 15000
print "New value = {$ cell-> value}
"; #Print the new value = 15000 #Finally
, recalculate this cell with the new value
$ sheets-> Calculate; #Required
if you want to calculate, manual is optional
# Can see Total effect value (cell E13)
$ cell = $ sheets-> Cells (13,5); #Select the cell (Row Column number)
$ number = Number_format ($ cell-> value);
print "New Total cost = $$ number-was $ 47,732 before.
" ;
#According to the calculation formula, the advertisement affects the company's expenses, here will display $ 57,809 #using the
Excel built-in function
# PMT (percent / 12 months, Number of payments, Loan amount)
$ pay = $ ex-> application-> pmt (0.08 / 12,10,10000);
$ pay = sprintf ("%. 2f", $ pay);
print "Monthly payment for $ 10,000 loan @ 8% interest / 10 months: $ $ pay
";
#Should print monthly payment = $ -1,037.03 #Optional
, save
$ ex-> Application-> ActiveWorkbook-> SaveAs ("Ourtest"); #Close
without asking
$ ex-> application-> ActiveWorkbook-> Close ("False");
unset ($ ex);
?>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ PHP4 COM function (windows version) : FULL
PART 4
twitter.com/UNDERCODETC
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
"; #Open workbook
so that we can use it
$ wkb = $ ex-> application-> Workbooks-> Open ($ workbook) or Die (" Did not open " );
# Pre-save the original workbook, create a copy of the workbook
$ ex-> Application->
# $ ex-> Application-> Visible = 1; #This sentence goes to comment to make Excel visible
# Read and write a cell in a new worksheet
# We can read this cell E11 (Advertising in the 4th. Quarter)
$ sheets = $ wkb-> Worksheets ($ sheet); #Select the sheet
$ sheets-> activate; #Activate it
$ cell = $ sheets-> Cells (11,5); #Select the cell (Row Column number)
$ cell-> activate; #Activate the cell
print "Old Value = {$ cell-> value}
"; #Print the value of the cell: 10000
$ cell-> value = 15000; #Change it to 15000
print "New value = {$ cell-> value}
"; #Print the new value = 15000 #Finally
, recalculate this cell with the new value
$ sheets-> Calculate; #Required
if you want to calculate, manual is optional
# Can see Total effect value (cell E13)
$ cell = $ sheets-> Cells (13,5); #Select the cell (Row Column number)
$ number = Number_format ($ cell-> value);
print "New Total cost = $$ number-was $ 47,732 before.
" ;
#According to the calculation formula, the advertisement affects the company's expenses, here will display $ 57,809 #using the
Excel built-in function
# PMT (percent / 12 months, Number of payments, Loan amount)
$ pay = $ ex-> application-> pmt (0.08 / 12,10,10000);
$ pay = sprintf ("%. 2f", $ pay);
print "Monthly payment for $ 10,000 loan @ 8% interest / 10 months: $ $ pay
";
#Should print monthly payment = $ -1,037.03 #Optional
, save
$ ex-> Application-> ActiveWorkbook-> SaveAs ("Ourtest"); #Close
without asking
$ ex-> application-> ActiveWorkbook-> Close ("False");
unset ($ ex);
?>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ PHP4 COM function (windows version) : FULL
PART 5
twitter.com/UNDERCODETC
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
> This example sended makes your PHP work with Excel. Of course, there are more objects available, and accessing a self-written OOP wrapper class is as easy as accessing excel.
Access Adobe Distiller with PHP's COM
ใใThis last example is not a MS program, if your program has a PostScript file, that you will be interested to rewrite (distillation) it into a PDF document. Adobe has a
programs called Distiller, It can generate an instance. The code is as follows:
$ pdf = new COM ("pdfdistiller.pdfdistiller.1");
?>
ใใOne thing to note is that the OLE identifier "pdfdistiller" given in Distiller's documentation is invalid.
The most basic way to distill a file is:
$ pdf-> FileToPdf ($ psfile, strOutputPDF '', strJobOptions "");
?>
$ Psfile is the name of this PostScript file, and strOutputPDF is the name of the output file PDF. StrJobOptions Distiller parameter is the file name, the last two parameters
are optional, the default is the same name. This PS file name and PDF file name use this default Job options file. For example:
$ pdf-> FileToPdf ($ psfile, "", "");
#here $ psfile can be Myfile.ps will return Myfile. pdf file.
?>
There are more methods and properties available in Distiller. If you are interested, please refer to Adobe's technical documentation.
Suspension / possible problems
ใใIf your code what error occurred, you might create an instance, but it is not properly closed. Worst of all, this application may be held this instance, bear
fruit, there is multiple copies of this program in your list of programs, even if you correct this error can interfere with your results. The solution is: Fixed a bug since they must be promptly removed
before you start running again, and with the end of the task. For the same reason, at the end of your code, you should close the program and delete the instance in time.
You have some tricks when dealing with com_get and com_set exceptions. For example:
$ Version = Com_get ($ instance-> Application, "Version");
will work in Word but generate an error in Excel.
There are some objects that cannot be instantiated in PHP4. This is because this program requires a custom interface, but PHP4 does not support it.
Why do we use it?
ใใI hope these three examples can give you some clues for thinking. PHP COM allows you to access windows4 programs in PHP scripts. This code is simpler than ASP and can integrate other
powerful PHP database support functions. Microsoft has vigorously sold this COM technology in all aspects, under different names and structures, such as COM + (Combine COM with
Microsoft Transaction Server MTS), ADO, OLE DB, OWC, Windows DNA, and so on. PHP
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ PHP4 COM function (windows version) : FULL
PART 5
twitter.com/UNDERCODETC
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
> This example sended makes your PHP work with Excel. Of course, there are more objects available, and accessing a self-written OOP wrapper class is as easy as accessing excel.
Access Adobe Distiller with PHP's COM
ใใThis last example is not a MS program, if your program has a PostScript file, that you will be interested to rewrite (distillation) it into a PDF document. Adobe has a
programs called Distiller, It can generate an instance. The code is as follows:
$ pdf = new COM ("pdfdistiller.pdfdistiller.1");
?>
ใใOne thing to note is that the OLE identifier "pdfdistiller" given in Distiller's documentation is invalid.
The most basic way to distill a file is:
$ pdf-> FileToPdf ($ psfile, strOutputPDF '', strJobOptions "");
?>
$ Psfile is the name of this PostScript file, and strOutputPDF is the name of the output file PDF. StrJobOptions Distiller parameter is the file name, the last two parameters
are optional, the default is the same name. This PS file name and PDF file name use this default Job options file. For example:
$ pdf-> FileToPdf ($ psfile, "", "");
#here $ psfile can be Myfile.ps will return Myfile. pdf file.
?>
There are more methods and properties available in Distiller. If you are interested, please refer to Adobe's technical documentation.
Suspension / possible problems
ใใIf your code what error occurred, you might create an instance, but it is not properly closed. Worst of all, this application may be held this instance, bear
fruit, there is multiple copies of this program in your list of programs, even if you correct this error can interfere with your results. The solution is: Fixed a bug since they must be promptly removed
before you start running again, and with the end of the task. For the same reason, at the end of your code, you should close the program and delete the instance in time.
You have some tricks when dealing with com_get and com_set exceptions. For example:
$ Version = Com_get ($ instance-> Application, "Version");
will work in Word but generate an error in Excel.
There are some objects that cannot be instantiated in PHP4. This is because this program requires a custom interface, but PHP4 does not support it.
Why do we use it?
ใใI hope these three examples can give you some clues for thinking. PHP COM allows you to access windows4 programs in PHP scripts. This code is simpler than ASP and can integrate other
powerful PHP database support functions. Microsoft has vigorously sold this COM technology in all aspects, under different names and structures, such as COM + (Combine COM with
Microsoft Transaction Server MTS), ADO, OLE DB, OWC, Windows DNA, and so on. PHP
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ best free antivirus software programs for Windows 2020 UnderCode lastest Report from yesterday 31/1/20
t.me/UndercOdeTesting
1) Total AV Free Antivirus
2) BullGuard Free Antivirus
3) Panda Free Antivirus
4) Bitdefender Antivirus Free Edition
5) ZoneAlarm Free Antivirus
6) Avira Free Antivirus
7) AVG Free Antivirus
8) Kaspersky Free (updated)
9) Sophos Home Free
10) Avast Free Antivirus
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ best free antivirus software programs for Windows 2020 UnderCode lastest Report from yesterday 31/1/20
t.me/UndercOdeTesting
1) Total AV Free Antivirus
2) BullGuard Free Antivirus
3) Panda Free Antivirus
4) Bitdefender Antivirus Free Edition
5) ZoneAlarm Free Antivirus
6) Avira Free Antivirus
7) AVG Free Antivirus
8) Kaspersky Free (updated)
9) Sophos Home Free
10) Avast Free Antivirus
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ ALL Features Needed from a good antimalware or why we need it :
example on tghe first Av
t.me/UndercOdeTesting
> Phishing protection
>Disk cleanup and system startup acceleration
> Browser manager
> Safe website browsing extension for Chrome and Edge browsers
๐ฆ Recognized advantages :
> Fully compatible with Windows, Android and Mac devices
> Find and copy files remotely
> Very fast without affecting performance
> Detection accuracy of fishing samples reached 89%
๐ฆ Deficiencies :
> Lack of real-time protection against malicious programs
Occasionally false positives
> Additional features require upgrades or paid purchases
> Cannot set up weekly scans and does not provide the option of daily scans
๐ฆ Reasons to buy a paid version :
> Advanced protection against ransomware
> Extra features such as password manager, webcam protection,
> smartphone optimizer, remote firewall, etc.
> Provide 7X24 hours technical support service
> 30-day money back guarantee
@UndercOdeTesting
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ ALL Features Needed from a good antimalware or why we need it :
example on tghe first Av
t.me/UndercOdeTesting
> Phishing protection
>Disk cleanup and system startup acceleration
> Browser manager
> Safe website browsing extension for Chrome and Edge browsers
๐ฆ Recognized advantages :
> Fully compatible with Windows, Android and Mac devices
> Find and copy files remotely
> Very fast without affecting performance
> Detection accuracy of fishing samples reached 89%
๐ฆ Deficiencies :
> Lack of real-time protection against malicious programs
Occasionally false positives
> Additional features require upgrades or paid purchases
> Cannot set up weekly scans and does not provide the option of daily scans
๐ฆ Reasons to buy a paid version :
> Advanced protection against ransomware
> Extra features such as password manager, webcam protection,
> smartphone optimizer, remote firewall, etc.
> Provide 7X24 hours technical support service
> 30-day money back guarantee
@UndercOdeTesting
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ End of android-5/6 (termux. net) support on 2020-01-01
t.me/UndercodeTesting
1) The latest development meeting it has been decided to drop android-5 support from 2020-01-01.
From that date there will no longer be any updates to the package repositories' android-5 branches.
An android-5 branch has also been created for termux-app, and the latest tagged version of the app (0.76) requires android 7.
2) Supporting the android-5 branches takes some time and effort from the maintainers. This time and effort would, arguably, be better spent making termux ready for android Q (and later). Some big changes are required to make termux usable for the latest android versions, as discussed in termux/termux-app#1072.
3) If you are using android 5 or android 6 on your device then the only way to continue to get updates after 2020-01-01 would be to upgrade to android 7 or newer (if possible).
4) they start first separated the repos into an android-5 branch and a master branch.
@UndercodeOfficial
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ End of android-5/6 (termux. net) support on 2020-01-01
t.me/UndercodeTesting
1) The latest development meeting it has been decided to drop android-5 support from 2020-01-01.
From that date there will no longer be any updates to the package repositories' android-5 branches.
An android-5 branch has also been created for termux-app, and the latest tagged version of the app (0.76) requires android 7.
2) Supporting the android-5 branches takes some time and effort from the maintainers. This time and effort would, arguably, be better spent making termux ready for android Q (and later). Some big changes are required to make termux usable for the latest android versions, as discussed in termux/termux-app#1072.
3) If you are using android 5 or android 6 on your device then the only way to continue to get updates after 2020-01-01 would be to upgrade to android 7 or newer (if possible).
4) they start first separated the repos into an android-5 branch and a master branch.
@UndercodeOfficial
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 1
<STRONG> Interview with Trend Micro R & D Associate Gong Huazhong <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <? Xml: namespace prefix = o ns = \ "urn: schemas-microsoft- com: office: office \ "/> <o: p> </ o: p> </ SPAN> </ STRONG>
<P class = MsoNormal style = \" MARGIN: 0cm 0cm 0pt \ "> <SPAN lang = EN -US style = \ "mso-fareast-language: EN-US \"> <FONT size = 3> <STRONG> & nbsp; <o: p> </ o: p> </ STRONG> </ FONT> </ FONT> SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Introduction: When it comes to software development, everyone knows that this is not a simple task. Indeed, software The industry is a highly competitive and fast-moving industry. Modules are often revised due to market changes. Therefore, news about software vendors delaying product launches is heard, but this does not mean that delayed listing is normal. This kind of effort and standard, truly achieves "</ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \ "> Ship quality product on time </ SPAN> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family : \ 'Times New Roman \' \ ">". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> <
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Because software companies have different business natures, the engineering required for product development is not the same. In the case of Trend Micro, it is a company that produces software products. After the product is developed and listed, customers decide whether to buy it. Therefore, the risk of software development is very Big. Some small software companies are "software projects" that receive customers. They only need to complete the project, and the risks are naturally small. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> It can be seen that for software companies whose main business is the production of software products, the larger the scale, The development risk is naturally relatively high. How to make a perfect software product that meets the needs of the market is the aspiration of all software vendors, but this involves many small and large links, including company policies, operating procedures, and engineer quality. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 1
<STRONG> Interview with Trend Micro R & D Associate Gong Huazhong <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <? Xml: namespace prefix = o ns = \ "urn: schemas-microsoft- com: office: office \ "/> <o: p> </ o: p> </ SPAN> </ STRONG>
<P class = MsoNormal style = \" MARGIN: 0cm 0cm 0pt \ "> <SPAN lang = EN -US style = \ "mso-fareast-language: EN-US \"> <FONT size = 3> <STRONG> & nbsp; <o: p> </ o: p> </ STRONG> </ FONT> </ FONT> SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Introduction: When it comes to software development, everyone knows that this is not a simple task. Indeed, software The industry is a highly competitive and fast-moving industry. Modules are often revised due to market changes. Therefore, news about software vendors delaying product launches is heard, but this does not mean that delayed listing is normal. This kind of effort and standard, truly achieves "</ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \ "> Ship quality product on time </ SPAN> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family : \ 'Times New Roman \' \ ">". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> <
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Because software companies have different business natures, the engineering required for product development is not the same. In the case of Trend Micro, it is a company that produces software products. After the product is developed and listed, customers decide whether to buy it. Therefore, the risk of software development is very Big. Some small software companies are "software projects" that receive customers. They only need to complete the project, and the risks are naturally small. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> It can be seen that for software companies whose main business is the production of software products, the larger the scale, The development risk is naturally relatively high. How to make a perfect software product that meets the needs of the market is the aspiration of all software vendors, but this involves many small and large links, including company policies, operating procedures, and engineer quality. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 2
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast -font-family: Songti \ "> & nbsp; & nbsp; & nbsp; Perfect is empty </ SPAN> </ B> <B> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: EN-US ; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">, </ SPAN> </ B> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: ๅฎไฝ \"> Simple is beauty </ SPAN> </ B> <B> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> !! </ SPAN> <SPAN lang = EN-US>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Here is a simple discussion of the development principles. For example, if the product is not 100% perfect, will it always be changed? of course not! Take the birth of a baby as an example.
> If people can add a specific gene to produce a perfect baby when they want to conceive, then it is certain that this period will be far away. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> There are several concepts and practices in controlling software development risks. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> One. <B> โSmallโ ๏ผ </ B> If the product โs </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: ๅฎไฝ \" > size </ SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font- family: \ 'Times New Roman \' \ "> Small, the complexity will be reduced a lot, so it is a good practice to cut large projects into small parts and then leave them to different engineers. For example, the first generation of </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Times New Roman \"> ICQ </ SPAN> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Designed and written by one or two people, and soon it was made. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Designed and written by one or two people, and soon it was made. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 2
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast -font-family: Songti \ "> & nbsp; & nbsp; & nbsp; Perfect is empty </ SPAN> </ B> <B> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: EN-US ; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">, </ SPAN> </ B> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: ๅฎไฝ \"> Simple is beauty </ SPAN> </ B> <B> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> !! </ SPAN> <SPAN lang = EN-US>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Here is a simple discussion of the development principles. For example, if the product is not 100% perfect, will it always be changed? of course not! Take the birth of a baby as an example.
> If people can add a specific gene to produce a perfect baby when they want to conceive, then it is certain that this period will be far away. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> There are several concepts and practices in controlling software development risks. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> One. <B> โSmallโ ๏ผ </ B> If the product โs </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: ๅฎไฝ \" > size </ SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font- family: \ 'Times New Roman \' \ "> Small, the complexity will be reduced a lot, so it is a good practice to cut large projects into small parts and then leave them to different engineers. For example, the first generation of </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Times New Roman \"> ICQ </ SPAN> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Designed and written by one or two people, and soon it was made. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Designed and written by one or two people, and soon it was made. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 3
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> ไบ. <B> "</ B> </ SPAN> <B> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \ "> Simple is beauty โ</ SPAN> </ B> <SPAN style = \" FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso- hansi-font-family: \ 'Times New Roman \' \ ">-The larger the company, the lower the productivity, because some additional costs need to be added, including the control of schedule, the quality of engineers, etc. (</ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US; mso-fareast-font-family: Times New Roman \"> policy </ SPAN> <SPAN style = \ "FONT -FAMILY: Times New Roman; / SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">) first, so that you can better grasp the risks, this part involves the scope of" operation management ". </ SPAN> </ FONT> </ P> / SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">) first, so that you can better grasp the risks, this part involves the scope of" operation management ". </ SPAN> </ FONT> </ P>
(Program) engineers also need manpower input such as design specifications, inspection procedures, and test procedures. Compared with the initial situation, the additional cost is increased by an equal number of stages. Generally speaking, the system management is more needed, but on the other hand, the system may also form bureaucracy and stifle creativity, and more documents may not make the quality better. The solution is from the perspective of users. do. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 3
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> ไบ. <B> "</ B> </ SPAN> <B> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \ "> Simple is beauty โ</ SPAN> </ B> <SPAN style = \" FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso- hansi-font-family: \ 'Times New Roman \' \ ">-The larger the company, the lower the productivity, because some additional costs need to be added, including the control of schedule, the quality of engineers, etc. (</ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US; mso-fareast-font-family: Times New Roman \"> policy </ SPAN> <SPAN style = \ "FONT -FAMILY: Times New Roman; / SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">) first, so that you can better grasp the risks, this part involves the scope of" operation management ". </ SPAN> </ FONT> </ P> / SPAN> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ ">) first, so that you can better grasp the risks, this part involves the scope of" operation management ". </ SPAN> </ FONT> </ P>
(Program) engineers also need manpower input such as design specifications, inspection procedures, and test procedures. Compared with the initial situation, the additional cost is increased by an equal number of stages. Generally speaking, the system management is more needed, but on the other hand, the system may also form bureaucracy and stifle creativity, and more documents may not make the quality better. The solution is from the perspective of users. do. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 4
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> The quality of software products actually depends on the needs of users. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family:
SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Times New Roman \">) </ SPAN> </ FONT> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \">) </ SPAN> </ FONT> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <B> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> & nbsp; & nbsp; Creative freedom-the key to the survival of software companies </ SPAN> </ B> <B> <SPAN lang = EN-US style = \" mso-fareast-language: EN-US \ "> <o: p> </ o: p> </ SPAN> </ B> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \ "> <FONT size = 3> & nbsp; <o: p> </ o: p> </ FONT> </ SPAN> </ B> </ P>
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Expert opinion: software development ABC By UndercOde
t.me/UndercOdeTesting
PART 4
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ " FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> The quality of software products actually depends on the needs of users. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family:
SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Times New Roman \">) </ SPAN> </ FONT> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \">) </ SPAN> </ FONT> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P> Is quite important. The difference between software and hardware is that as long as it takes more time for software development, few functions cannot be achieved, but its difficulty lies in "how to choose". </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <B> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> & nbsp; & nbsp; Creative freedom-the key to the survival of software companies </ SPAN> </ B> <B> <SPAN lang = EN-US style = \" mso-fareast-language: EN-US \ "> <o: p> </ o: p> </ SPAN> </ B> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <B> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \ "> <FONT size = 3> & nbsp; <o: p> </ o: p> </ FONT> </ SPAN> </ B> </ P>
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font -family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> <B>. Understand the needs of customers, and change the way to meet their needs (market) </ B>-For example, if the customer does not dare to demand because of some factors, you can try another way to present it, as if customers like plasma TV, but The price of plasma TV is too expensive to be in demand. R & D personnel can try to study the quality of the TV to be as good as the plasma TV. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0; mso-char-indent-size: 12.0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Since the customer needs of high-tech products are not easy to know, how to get inspiration for product development? Many engineers start with their own problems. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0; mso-char-indent-size: 12.0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> In Trend Micro, in addition to creative ideas for large architectures </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family : Songti \ "> CIO </ SPAN> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso- hansi-font-family: \ 'Times New Roman \' \ "> (Technical Chief) or advanced research and development director, the size underneath </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language : ZH-CN; mso-fareast-font-family: Times New Roman \ "> idea </ SPAN> <SPAN style = \" FONT-FAMILY: Times New Roman;mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Those are thought by engineers , Good engineers will think for themselves </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \"> solution </ SPAN> < SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> (Solution), bad engineers become </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family : Songti \ "> coding machine </ SPAN> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso -hansi-font-family: \ 'Times New Roman \' \ "> (programming machine). </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \ '; mso-hansi-font-family: \' Times New Roman \ '\ "> <FONT size = 3> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0; mso-char-indent-size: 12.0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> Since the customer needs of high-tech products are not easy to know, how to get inspiration for product development? Many engineers start with their own problems. </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: EN-US \"> <o: p> </ o: p> </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN \"> <FONT size = 3> & nbsp; <o : p> </ o: p> </ FONT> </ SPAN> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0; mso-char-indent-size: 12.0pt \"> <FONT size = 3> <SPAN style = \ "FONT-FAMILY: Times New Roman; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> In Trend Micro, in addition to creative ideas for large architectures </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family : Songti \ "> CIO </ SPAN> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso- hansi-font-family: \ 'Times New Roman \' \ "> (Technical Chief) or advanced research and development director, the size underneath </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language : ZH-CN; mso-fareast-font-family: Times New Roman \ "> idea </ SPAN> <SPAN style = \" FONT-FAMILY: Times New Roman;mso-fareast-language: EN-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \' \ "> Those are thought by engineers , Good engineers will think for themselves </ SPAN> <SPAN lang = EN-US style = \ "mso-fareast-language: ZH-CN; mso-fareast-font-family: Songti \"> solution </ SPAN> < SPAN style = \ "FONT-FAMILY: Song Ti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso-hansi-font-family: \ 'Times New Roman \ '\ "> (Solution), bad engineers become </ SPAN> <SPAN lang = EN-US style = \" mso-fareast-language: ZH-CN; mso-fareast-font-family : Songti \ "> coding machine </ SPAN> <SPAN style = \" FONT-FAMILY: Songti; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \'; mso -hansi-font-family: \ 'Times New Roman \' \ "> (programming machine). </ SPAN> </ FONT> </ P>
<P class = MsoNormal style = \ "MARGIN: 0cm 0cm 0pt \"> <SPAN style = \ "FONT-FAMILY: Song Dynasty; mso-fareast-language: ZH-CN; mso-ascii-font-family: \ 'Times New Roman \ '; mso-hansi-font-family: \' Times New Roman \ '\ "> <FONT size = 3> </ FONT> </ SPAN> </ P>
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 1 - full
t.me/UndercOdeTesting
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
1) machine configuration
Example on old Pc CPU: Intel Pentium III 668203 khz
memory: 128M
operating system: Redflag-Server2.0 (fully installed)
SWAP area: 256M
2) install the required software
Oracle8161_tar.gz
3) Creating the oracle account
4) log in as the root account, open a terminal window, create oracle account
[root @ dbs / root] useradd oracle
[root @ dbs / root] passwd oracle (oralce account settings Password) The
system automatically creates the / home / oracle directory, the owner is oracle. My Oracle ready to install
in this directory.
4) Unzip oracle8161_tar.gz and
log in as root and execute:
[root @ dbs / root] cd / backup
[root @ dbs / backup] tar zxvf oracle8161_tar.gz
5) Generate the Oralce8iR2 directory in the / backup / directory, which contains the unpack Post file
The user environment setting oracle
6) the oracle account login, open terminal window, using the text editor to open
/home/oracle/.bash_profile finally add
the environment variable is set as the line:
ORACLE_HOME = / Home / oracle; Export ORACLE_HOME
the LD_LIBRARY_PATH = / Home / Oracle / lib; Export the LD_LIBRARY_PATH
the ORACLE_BASE = / Home / Oracle; Export the ORACLE_BASE
the ORACLE_SID = ORCL; Export the ORACLE_SID
the ORA_NLS33 = / Home / Oracle / ocommon / NLS / ADMIN / Data; Export the ORA_NLS33
the NLS_LANG = american_america.zhs16cgb231280; Export the NLS_LANG
7) the Log OUT, Log in again with the oracle account and type the env command to view the environment variables you just set.
[oracle @ dbs oracle] env
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 1 - full
t.me/UndercOdeTesting
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
1) machine configuration
Example on old Pc CPU: Intel Pentium III 668203 khz
memory: 128M
operating system: Redflag-Server2.0 (fully installed)
SWAP area: 256M
2) install the required software
Oracle8161_tar.gz
3) Creating the oracle account
4) log in as the root account, open a terminal window, create oracle account
[root @ dbs / root] useradd oracle
[root @ dbs / root] passwd oracle (oralce account settings Password) The
system automatically creates the / home / oracle directory, the owner is oracle. My Oracle ready to install
in this directory.
4) Unzip oracle8161_tar.gz and
log in as root and execute:
[root @ dbs / root] cd / backup
[root @ dbs / backup] tar zxvf oracle8161_tar.gz
5) Generate the Oralce8iR2 directory in the / backup / directory, which contains the unpack Post file
The user environment setting oracle
6) the oracle account login, open terminal window, using the text editor to open
/home/oracle/.bash_profile finally add
the environment variable is set as the line:
ORACLE_HOME = / Home / oracle; Export ORACLE_HOME
the LD_LIBRARY_PATH = / Home / Oracle / lib; Export the LD_LIBRARY_PATH
the ORACLE_BASE = / Home / Oracle; Export the ORACLE_BASE
the ORACLE_SID = ORCL; Export the ORACLE_SID
the ORA_NLS33 = / Home / Oracle / ocommon / NLS / ADMIN / Data; Export the ORA_NLS33
the NLS_LANG = american_america.zhs16cgb231280; Export the NLS_LANG
7) the Log OUT, Log in again with the oracle account and type the env command to view the environment variables you just set.
[oracle @ dbs oracle] env
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 2
t.me/UndercOdeTesting
> create the oracle data file directory
I want the data files in the / home / oracle / data directory, so
ใ[oracle @ dbs oracle] mkdir the Data
๐ฆ install the Oracle 8i database software
(1) oracle account login, enter Xwindows, open the terminal window
ใ(2) [oracle @ dbs oracle] cd / backup / Oracle8iR2
ใ(3) Continue installation in the oracle user window
ใใใ[oracle @ dbs Oralcle8iR2] ./runInstaller
10) On the Java-based Oracle installer interface that appears, click Next.
ใ(4) On the File Locations screen, check that the Destination Path is / home / oracle, and click Next.
ใ(5) In the Unix Group Name window, type "" oracle "", and click Next;
ใ(6) A window will pop up, asking for Run /home/oracle/orainstRoot.sh as root
ใ(7) Switch to the terminal window, and switch to root as follows:
ใใใ[root @ dbs / root] cd / home / oracle
ใใใ[root @ dbs oracle] ./ orainstRoot.sh
ใ(8) Return to the window that just popped up, and click Retry.
ใ(9) On the "Available products" window that appears, select "Oracle8I enterprise edition 8.1.6.1.0" and click Next.
ใ(10) Select Typical on the next screen and click Next.
ใ(11) On the Privileged Operating System Groups interface, click Next.
ใ(12) prompted to enter the global database name, what they like what you write, I wrote a wap,
ใ verify ORACLE_SID is ORCL, click the Next
ใ(13) prompts for db files localtion, enter / home / oracle / data, click the Next
ใ(14 ) On the final Summary window, click Install.
ใ(15) The installation is now officially started, and it will be completed in less than 30 minutes.
ใ(16) After the file is copied and connected, a window asking to run root.sh will pop up and switch to root. User window,
ใใใใ[root @ dbs oracle] ./ root.sh
ใใใใWhen you ask local bin directory, press Enter
ใ(17) to return to the window asking to run root.sh, click OK
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 2
t.me/UndercOdeTesting
> create the oracle data file directory
I want the data files in the / home / oracle / data directory, so
ใ[oracle @ dbs oracle] mkdir the Data
๐ฆ install the Oracle 8i database software
(1) oracle account login, enter Xwindows, open the terminal window
ใ(2) [oracle @ dbs oracle] cd / backup / Oracle8iR2
ใ(3) Continue installation in the oracle user window
ใใใ[oracle @ dbs Oralcle8iR2] ./runInstaller
10) On the Java-based Oracle installer interface that appears, click Next.
ใ(4) On the File Locations screen, check that the Destination Path is / home / oracle, and click Next.
ใ(5) In the Unix Group Name window, type "" oracle "", and click Next;
ใ(6) A window will pop up, asking for Run /home/oracle/orainstRoot.sh as root
ใ(7) Switch to the terminal window, and switch to root as follows:
ใใใ[root @ dbs / root] cd / home / oracle
ใใใ[root @ dbs oracle] ./ orainstRoot.sh
ใ(8) Return to the window that just popped up, and click Retry.
ใ(9) On the "Available products" window that appears, select "Oracle8I enterprise edition 8.1.6.1.0" and click Next.
ใ(10) Select Typical on the next screen and click Next.
ใ(11) On the Privileged Operating System Groups interface, click Next.
ใ(12) prompted to enter the global database name, what they like what you write, I wrote a wap,
ใ verify ORACLE_SID is ORCL, click the Next
ใ(13) prompts for db files localtion, enter / home / oracle / data, click the Next
ใ(14 ) On the final Summary window, click Install.
ใ(15) The installation is now officially started, and it will be completed in less than 30 minutes.
ใ(16) After the file is copied and connected, a window asking to run root.sh will pop up and switch to root. User window,
ใใใใ[root @ dbs oracle] ./ root.sh
ใใใใWhen you ask local bin directory, press Enter
ใ(17) to return to the window asking to run root.sh, click OK
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 3
t.me/UndercOdeTesting
(18) Oracle Net8 Configuration and Oracle Database Configuration Assistants Start,
install Net8 and create the database. This step took another 20 minutes or so.
(19) After the Oracle Database Configuration Assistants, in the pop-up window to create a complete database
on the port Click the OK
(20) in the End of Installation screen, click Exit, in the pop Do you reallywant to exit?
Click yes on the window
๐ฆ Now all Oralce 8i Enterprise is installed! You can use the Oracle database management tools svrmgrl,
sql * plus to test the installed database!
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Install Oracle under RedFlag-linux any Pc Example by UndercOde
Part 3
t.me/UndercOdeTesting
(18) Oracle Net8 Configuration and Oracle Database Configuration Assistants Start,
install Net8 and create the database. This step took another 20 minutes or so.
(19) After the Oracle Database Configuration Assistants, in the pop-up window to create a complete database
on the port Click the OK
(20) in the End of Installation screen, click Exit, in the pop Do you reallywant to exit?
Click yes on the window
๐ฆ Now all Oralce 8i Enterprise is installed! You can use the Oracle database management tools svrmgrl,
sql * plus to test the installed database!
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ HOW TO TEST AND INSTALLED ORACLE ON LINUX :
Twitter.com/UndercOdeTC
๐ฆ LET S START THE TEST :
[oracle @ dbs oracle] svrmgrl
Oracle Server Manager Release V..-Production
Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.
Oracle8i Enterprise Edition Release V..-Production
With the Partitioning option
JServer Release V...-Production
SVRMGR> connect internal
Connected.
SVRMGR> shutdown
Database closed.
Database dismounted.
ORACLE instance shut down.
SVRMGR> startup
ORACLE instance started.
Total System Global Area 56012784 bytes
Fixed Size 69616 bytes
Variable Size 38993920 bytes
Database Buffers 16777216 bytes
Redo Buffers 172032 bytes
Database mounted.
Database opened.
SVRMGR> quit
Server Manager complete
๐ฆSQL-PLUS
[oracle@dbs oracle]$ sqlplus
SQL*Plus: Release - Production on Sun Apr 15 09:20:12 2019
(c) Copyright 1999 Oracle Corporation. All rights reserved.
Enter user-name: scott
Enter password: tiger
Connected to:
Oracle8i Enterprise Edition Release - Production
With the Partitioning option
JServer Release V.. - Production
SQL> select * from emp
There should be a bunch of data, there are 14 entries, it seems okay.
SQL> quit
WELL DONE THATS ALL !
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ HOW TO TEST AND INSTALLED ORACLE ON LINUX :
Twitter.com/UndercOdeTC
๐ฆ LET S START THE TEST :
[oracle @ dbs oracle] svrmgrl
Oracle Server Manager Release V..-Production
Copyright (c) 1997, 1999, Oracle Corporation. All Rights Reserved.
Oracle8i Enterprise Edition Release V..-Production
With the Partitioning option
JServer Release V...-Production
SVRMGR> connect internal
Connected.
SVRMGR> shutdown
Database closed.
Database dismounted.
ORACLE instance shut down.
SVRMGR> startup
ORACLE instance started.
Total System Global Area 56012784 bytes
Fixed Size 69616 bytes
Variable Size 38993920 bytes
Database Buffers 16777216 bytes
Redo Buffers 172032 bytes
Database mounted.
Database opened.
SVRMGR> quit
Server Manager complete
๐ฆSQL-PLUS
[oracle@dbs oracle]$ sqlplus
SQL*Plus: Release - Production on Sun Apr 15 09:20:12 2019
(c) Copyright 1999 Oracle Corporation. All rights reserved.
Enter user-name: scott
Enter password: tiger
Connected to:
Oracle8i Enterprise Edition Release - Production
With the Partitioning option
JServer Release V.. - Production
SQL> select * from emp
There should be a bunch of data, there are 14 entries, it seems okay.
SQL> quit
WELL DONE THATS ALL !
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ2019 Small tool
> An install and upgrade script for the Hack typeface on the Linux platform
The hack-linux-installer.sh shell script installs fonts from the Hack typeface repository at a requested release version number on the Linux platform. This script can be used for initial font installs and upgrades to new versions (or downgrades if ever necessary).
๐ฆ๐โ๐๐๐ธ๐๐๐๐๐ธ๐๐๐โ & โ๐โ:
1) curl -L -O https://raw.githubusercontent.com/source-foundry/hack-linux-installer/master/hack-linux-installer.sh
2) chmod +x hack-linux-installer.sh
3) ./hack-linux-installer.sh [VERSION]
Define the version number with the format vX.XXX. You must use a lowercase v followed by the version number string that is used in the repository releases.
For example, install Hack v3.003 with the following command:
4) ./hack-linux-installer.sh v3.003
Alternatively, you can use the installer to install the latest version like so:
5) ./hack-linux-installer.sh latest
๐ฆ FEATURES :
> The release archive is pulled from the repository release
> The release archive is unpacked
> The fonts are installed on the path $HOME/.local/share/fonts
> The font cache is cleared and regenerated
> fc-list | grep "Hack" is executed to display the installed font paths. You should see expected install filepaths with this command.
@UndercOdeTesting
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ2019 Small tool
> An install and upgrade script for the Hack typeface on the Linux platform
The hack-linux-installer.sh shell script installs fonts from the Hack typeface repository at a requested release version number on the Linux platform. This script can be used for initial font installs and upgrades to new versions (or downgrades if ever necessary).
๐ฆ๐โ๐๐๐ธ๐๐๐๐๐ธ๐๐๐โ & โ๐โ:
1) curl -L -O https://raw.githubusercontent.com/source-foundry/hack-linux-installer/master/hack-linux-installer.sh
2) chmod +x hack-linux-installer.sh
3) ./hack-linux-installer.sh [VERSION]
Define the version number with the format vX.XXX. You must use a lowercase v followed by the version number string that is used in the repository releases.
For example, install Hack v3.003 with the following command:
4) ./hack-linux-installer.sh v3.003
Alternatively, you can use the installer to install the latest version like so:
5) ./hack-linux-installer.sh latest
๐ฆ FEATURES :
> The release archive is pulled from the repository release
> The release archive is unpacked
> The fonts are installed on the path $HOME/.local/share/fonts
> The font cache is cleared and regenerated
> fc-list | grep "Hack" is executed to display the installed font paths. You should see expected install filepaths with this command.
@UndercOdeTesting
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Shell Script For Attacking Wireless Connections Using Built-In Kali Tools. Supports All Securities (WEP, WPS, WPA, WPA2)
lastest update 2019
T.me/UnderCodeTesting
๐ฆ๐โ๐๐๐ธ๐๐๐๐๐ธ๐๐๐โ & โ๐โ:
1) git clone https://github.com/esc0rtd3w/wifi-hacker
2) cd wifi-hacker
3) chmod 777 wifi-hacker.sh
4) ./wifi-hacker.sh
๐ฆFeatures :
> wifi bruteforce
> hack wep
> hack wpa
> hack wpa2
> hack wps
๐ฆTested on
> debian
> kali
> parrot
@UndercOdeOfficial
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Shell Script For Attacking Wireless Connections Using Built-In Kali Tools. Supports All Securities (WEP, WPS, WPA, WPA2)
lastest update 2019
T.me/UnderCodeTesting
๐ฆ๐โ๐๐๐ธ๐๐๐๐๐ธ๐๐๐โ & โ๐โ:
1) git clone https://github.com/esc0rtd3w/wifi-hacker
2) cd wifi-hacker
3) chmod 777 wifi-hacker.sh
4) ./wifi-hacker.sh
๐ฆFeatures :
> wifi bruteforce
> hack wep
> hack wpa
> hack wpa2
> hack wps
๐ฆTested on
> debian
> kali
> parrot
@UndercOdeOfficial
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆ Kernel Technology-Tip: Upgrading Applications from Source
t.me/UndercOdeTesting
If compiled and installed your first application from source, and it works great. congratulations! But now you have a new version of the source code and want to upgrade, and hope everything goes smoothly. What effective measures can be taken to avoid mistakes? In this tip, I will provide several such measures.
Upgrading can also be simple:
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
1) After reading the Changelog and
downloading the source code, first familiarize yourself with the new software changes-these changes are usually listed in the ChangeLog or README file in the source code's home directory. You may find that the configuration file settings have changed slightly, or some new features have been added. It's best to clarify these changes in the source code's documentation, rather than waiting for errors to be remedied later. Not doing this is absolutely wrong-and since you took the time to install a new version of this package, wouldn't it be good to know what new features it includes or what bugs it fixes?
2) Upgrading Critical Applications
If you are upgrading an application that affects many users, such as Apache on a busy web server, it's worth the extra care. If possible, first install the new version of the source code on a non-production machine, and note each step performed to get the new version up and running. In this way, even if you encounter problems during the upgrade process, it will not cause any harm. written @UndercOdeTesting
And when you're ready to upgrade your production machine, you already have a detailed list of steps to perform-which can reduce costly downtime.
3) Also, if you are upgrading a critical application, upgrading during off-peak hours is always the best choice.
4) Configured in the same way
When upgrading an application, one of the big mistakes people tend to make is specifying different, incompatible options on the "./configure" line, or uncommenting different lines in the Makefile configuration. If you want to perform a simple upgrade, make sure that the configuration of the new version of the software is exactly the same as the configuration of the current version.
5) If the current version looks for its configuration file in the / etc directory, it is better to configure the new version the same way. Don't be hasty; if you pass different options on the "./configure" command line, the result is most likely that the new version has significantly different features, is installed in the wrong directory tree, or looks for it in the wrong location Configuration file or data file. If you forget the configuration options or Makefile definitions you used, be sure to check them before compiling and installing the new version. For the upgrade to go smoothly, you will want to get these settings from the beginning.
6) Back up the original configuration file before installing.
For many packages, the real challenge is not in the compilation and installation phase, but in the process of setting up the application to run properly after you type "make install". This usually takes hours to edit the application's configuration file, which is usually in the / etc directory with the usual ".conf" suffix.
7) When you type "make install" When installing a new version of a package, most Makefiles do not overwrite existing configuration files on disk-but you should be grateful for this rather than regret it for security reasons. If you are not quite sure, be sure to back up your previous configuration files! Some configuration files may take a few days to rebuild, depending on the package. If the configuration file contains encrypted passwords, rebuilding can be time consuming or simply impossible.
๐ฆ Kernel Technology-Tip: Upgrading Applications from Source
t.me/UndercOdeTesting
If compiled and installed your first application from source, and it works great. congratulations! But now you have a new version of the source code and want to upgrade, and hope everything goes smoothly. What effective measures can be taken to avoid mistakes? In this tip, I will provide several such measures.
Upgrading can also be simple:
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
1) After reading the Changelog and
downloading the source code, first familiarize yourself with the new software changes-these changes are usually listed in the ChangeLog or README file in the source code's home directory. You may find that the configuration file settings have changed slightly, or some new features have been added. It's best to clarify these changes in the source code's documentation, rather than waiting for errors to be remedied later. Not doing this is absolutely wrong-and since you took the time to install a new version of this package, wouldn't it be good to know what new features it includes or what bugs it fixes?
2) Upgrading Critical Applications
If you are upgrading an application that affects many users, such as Apache on a busy web server, it's worth the extra care. If possible, first install the new version of the source code on a non-production machine, and note each step performed to get the new version up and running. In this way, even if you encounter problems during the upgrade process, it will not cause any harm. written @UndercOdeTesting
And when you're ready to upgrade your production machine, you already have a detailed list of steps to perform-which can reduce costly downtime.
3) Also, if you are upgrading a critical application, upgrading during off-peak hours is always the best choice.
4) Configured in the same way
When upgrading an application, one of the big mistakes people tend to make is specifying different, incompatible options on the "./configure" line, or uncommenting different lines in the Makefile configuration. If you want to perform a simple upgrade, make sure that the configuration of the new version of the software is exactly the same as the configuration of the current version.
5) If the current version looks for its configuration file in the / etc directory, it is better to configure the new version the same way. Don't be hasty; if you pass different options on the "./configure" command line, the result is most likely that the new version has significantly different features, is installed in the wrong directory tree, or looks for it in the wrong location Configuration file or data file. If you forget the configuration options or Makefile definitions you used, be sure to check them before compiling and installing the new version. For the upgrade to go smoothly, you will want to get these settings from the beginning.
6) Back up the original configuration file before installing.
For many packages, the real challenge is not in the compilation and installation phase, but in the process of setting up the application to run properly after you type "make install". This usually takes hours to edit the application's configuration file, which is usually in the / etc directory with the usual ".conf" suffix.
7) When you type "make install" When installing a new version of a package, most Makefiles do not overwrite existing configuration files on disk-but you should be grateful for this rather than regret it for security reasons. If you are not quite sure, be sure to back up your previous configuration files! Some configuration files may take a few days to rebuild, depending on the package. If the configuration file contains encrypted passwords, rebuilding can be time consuming or simply impossible.
8) If you are planning a major upgrade of your linux system, now may be a good time to perform a system-wide backup. This is especially important if you are preparing to upgrade key system libraries or tools that are the basis for many packages to work properly. A system-wide backup is a great idea in itself, and I hope that you back up your system from time to time.
9) Have the older source code at hand
I have no intention of discouraging you from upgrading your favorite program to the latest version-but the new version may not work. "./configure" or "make" may crash. To make matters worse, everything including "make install" passed smoothly, and no trouble occurred until the program was actually run. The buggy source code distribution does exist, which is why it is a good idea to keep the older source code (and any installation steps) on hand in case the newer source code is not working properly.
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
9) Have the older source code at hand
I have no intention of discouraging you from upgrading your favorite program to the latest version-but the new version may not work. "./configure" or "make" may crash. To make matters worse, everything including "make install" passed smoothly, and no trouble occurred until the program was actually run. The buggy source code distribution does exist, which is why it is a good idea to keep the older source code (and any installation steps) on hand in case the newer source code is not working properly.
Written by UndercOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆNow Test The Kernel Technology after Upgrading Applications from Source
t.me/UndercOdeTesting
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
1) Compiling and installing is one thing, and making sure that the new software works is another.
2) You must be sure that you are not installing 500 KB of junk in the root partition.
3) The new version of the configuration file may require minor modifications, and may even require significant modifications. If you are upgrading the daemon, make sure your configuration script successfully starts this new version when you restart. You absolutely don't want to find any problems when you restart the server after two weeks (and you have forgotten the program's configuration details).
4) You can follow the recommendations in this article, but if you are not testing your installation, you are missing the most important steps.
5) You should now have enough knowledge to upgrade your favorite applications
Written by UndrcOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ
๐ฆNow Test The Kernel Technology after Upgrading Applications from Source
t.me/UndercOdeTesting
๐ฆ ๐๐ผ๐๐ ๐๐๐ธโ๐ :
1) Compiling and installing is one thing, and making sure that the new software works is another.
2) You must be sure that you are not installing 500 KB of junk in the root partition.
3) The new version of the configuration file may require minor modifications, and may even require significant modifications. If you are upgrading the daemon, make sure your configuration script successfully starts this new version when you restart. You absolutely don't want to find any problems when you restart the server after two weeks (and you have forgotten the program's configuration details).
4) You can follow the recommendations in this article, but if you are not testing your installation, you are missing the most important steps.
5) You should now have enough knowledge to upgrade your favorite applications
Written by UndrcOde
โ โ โ ๏ฝ๐๐ปโบ๐ซฤ๐ฌ๐โ โ โ โ