π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| λ΄λΆμμ μ¬μ©λλ ν¨ν€μ§ λͺ¨λμ© λ©μλ νλ‘μμ ν νλ¦Ώμ λλ€. | |
| νΈλμμ κ³Ό μμΈ μ²λ¦¬κΈ°κ° μμ΅λλ€. | |
| νλ‘μμ μ΄λ¦, μλ μ£Όμκ³Ό v_tag, v_summary, v_detailμ μμ ν ν μ¬μ©νμ¬ μ£ΌμΈμ. | |
| */ | |
| create | |
| definer = MES_DHSol@`%` procedure Package_Module_Method( | |
| ) | |
| comment '~νλ νλ‘μμ ' | |
| begin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| λ΄λΆμμ μ¬μ©λλ ν¨ν€μ§ λͺ¨λμ© λ©μλ ν¨μ ν νλ¦Ώμ λλ€. | |
| νΈλμμ κ³Ό μμΈ μ²λ¦¬κΈ°κ° μμ΅λλ€. | |
| ν¨μ μ΄λ¦, μλ μ£Όμκ³Ό v_tag, v_summary, v_detailμ μμ ν ν μ¬μ©νμ¬ μ£ΌμΈμ. | |
| */ | |
| create | |
| definer = MES_DHSol@`%` function Package_Module_Method( | |
| ) returns varchar(32) | |
| comment '~νλ ν¨μ' | |
| begin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs').promises; | |
| const path = require('path'); | |
| const { randomUUID } = require('crypto'); | |
| async function getDataSource(channelName) { | |
| const channelNameSanitized = channelName.replace(/\//g, '').replace(/\./g, '').trim(); | |
| if (!channelNameSanitized) { | |
| throw new Error(`Invalid channel name: [${channelName}]`); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Zv65DvZ4uip59etBkYX2eVt5gDWosL2+U7Ll0BdQ41tZv2MrD6pQQ3VzomCiQkJgruU/wAZnG3NY0HJRevAVGttC3dU5+s3km2r6Cf2k4UaN37wKMz7JZIu6wMJ4kqFDW73hIeieTEZW8DZki66cvO++W+fuz9Kajio2k/ZslbSSZ3BkzNp3E12Gb99m9v18rZpROWQ5xMPbnZkLMNW68yMHeNGcWMJuiN++FyRDCSRu3PwTmVZBkWC9pi+n1BYqTacnd3cbboYrWG6M4uFn1p7X28X5seDVKlx3S+t4xbwJJAOIWDG3BNyAuWmTM9tXNShnWhjs/nLgAtHmuEo4Q5FQwMtYVrcNlAd92G9FC605vkZazXvG1q31PmpHKRUOOi25w7jKrl3NzbJsiHyf7Es/VGtKse/26SE/oVOZeI10jL9BAfGzLdFtpwYaVZqT58vo8Ld0YCEaIzZ7dVDQQbg5AAso5U29QE+AxAHZQxYzBn6BBKlde0e0E32uIwBocWZNMtY6y5dHuDLpaZ/gXvYA/23l92mwKcC8rhVfUXVrIIHsA2I5fAhdUKp3atNgdugu+M9o5N1laB8fT1KqwFulbsCrG2v5AuUiuza1XYrQFb2k6JPOgLYOT3nftQqEPyiD4rViXlzbCZ/BzZ/vKUw1EEOFq1WXAo+X6o1EZ8lJwRVCdtZJbVaEdv8iSLTs9qaFPxu/Jkw+vcevINoCFr+R8vGn0OKVM+EjEJpospH7TDHVe7rVeinLbjbmSZQd3QBdqYo8U8K8QQEpqqXUgA/qxGdG11qOGP7lBtX5719QOGJCRIkJpLBaEaWYdW8mkm+ediAI9GhvedTK8TUsqr1FbVkvgpS5W/3K8wYTpfR41xKWbQi0qiH5E3wlI90TDCNM9HMS7Xo1WONJyaAeVQ== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| create procedure sp_insert_something(in something varchar(255)) | |
| begin | |
| -- ...μλ΅... | |
| if something = 'hello' then | |
| insert into things set body = something; | |
| end if; | |
| -- ...μλ΅... | |
| end; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Modify | |
| (function () { | |
| const originalFunction = window.originalFunction || NetFunnel_getTidChkEnter; | |
| window.originalFunction = originalFunction; | |
| NetFunnel_getTidChkEnter = function (options) { | |
| if (options == null) { | |
| console.error("μ΅μ μ΄ μμ΄??"); | |
| return originalFunction(...arguments); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function combination(source, howMany = source.length) { | |
| const result = []; | |
| const sourceLength = source.length; | |
| const pow = (workingCombo, currentIndex, remainingCount) => { | |
| for (let i = currentIndex; i < sourceLength; i++) { | |
| const nextWorkingCombo = [...workingCombo, source[i]]; | |
| if (remainingCount === 1) { | |
| // μ΄λ² νΈμΆμ λ§μ§λ§ λ¨κ³μ΄λ, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def addPoly(a: list, b: list): | |
| index_a = 0 | |
| index_b = 0 | |
| len_a = len(a) | |
| len_b = len(b) | |
| result = [] | |
| while True: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| mkdir ./CodePush | |
| react-native ram-bundle --platform ios \ | |
| --entry-file index.js \ | |
| --bundle-output ./CodePush/main.jsbundle \ | |
| --assets-dest ./CodePush \ | |
| --indexed-ram-bundle \ | |
| --dev false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| DIR="$(dirname "$(realpath "$0")")" |