Full text search for "sed"


Search BackLinks only
Display context of search results
Case-sensitive searching
  • Karabiner-Elements . . . . 36 matches
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
          "conditions": [ { "name": "caps_lock pressed", "type": "variable_if", "value": 1 } ],
  • OurSoftwareDependencyProblem . . . . 26 matches
         Today, the situation is reversed:
         But the high fixed costs of reuse mean that manually-reused packages tend to be big:
         Before dependency managers, publishing an eight-line code library would have been unthinkable: too much overhead for too little benefit. But NPM has driven the overhead approximately to zero, with the result that nearly-trivial functionality can be packaged and reused. In late January 2019, the escape-string-regexp package is explicitly depended upon by almost a thousand other NPM packages, not to mention all the packages developers write for their own use and don’t share.
         The context where a dependency will be used determines the cost of a bad outcome. At one end of the spectrum is a personal hobby project, where the cost of most bad outcomes is near zero: you’re just having fun, bugs have no real impact other than wasting some time, and even debugging them can be fun. So the risk probability almost doesn’t matter: it’s being multiplied by zero. At the other end of the spectrum is production software that must be maintained for years. Here, the cost of a bug in a dependency can be very high: servers may go down, sensitive data may be divulged, customers may be harmed, companies may fail. High failure costs make it much more important to estimate and then reduce any risk of a serious failure.
         No matter what the expected cost, experiences with larger dependencies suggest some approaches for estimating and reducing the risks of adding a software dependency. It is likely that better tooling is needed to help reduce the costs of these approaches, much as dependency managers have focused to date on reducing the costs of download and installation.
         Find the package’s issue tracker. Are there many open bug reports? How long have they been open? Are there many fixed bugs? Have any bugs been fixed recently? If you see lots of open issues about what look like real bugs, especially if they have been open for a long time, that’s not a good sign. On the other hand, if the closed issues show that bugs are rarely found and promptly fixed, that’s great.
         Do many other packages depend on this code? Dependency managers can often provide statistics about usage, or you can use a web search to estimate how often others write about using the package. More users should at least mean more people for whom the code works well enough, along with faster detection of new bugs. Widespread usage is also a hedge against the question of continued maintenance: if a widely-used package loses its maintainer, an interested user is likely to step forward.
         For example, libraries like PCRE or Boost or JUnit are incredibly widely used. That makes it more likely—although certainly not guaranteed—that bugs you might otherwise run into have already been fixed, because others ran into them first.
         Is the code properly licensed? Does it have a license at all? Is the license acceptable for your project or company? A surprising fraction of projects on GitHub have no clear license. Your project or company may impose further restrictions on the allowed licenses of dependencies. For example, Google disallows the use of code licensed under AGPL-like licenses (too onerous) as well as WTFPL-like licenses (too vague).13
         The inspection process should include running a package’s own tests. If the package passes the inspection and you decide to make your project depend on it, the next step should be to write new tests focused on the functionality needed by your application. These tests often start out as short standalone programs written to make sure you can understand the package’s API and that it does what you think it does. (If you can’t or it doesn’t, turn back now!) It is worth then taking the extra effort to turn those programs into automated tests that can be run against newer versions of the package. If you find a bug and have a potential fix, you’ll want to be able to rerun these project-specific tests easily, to make sure that the fix did not break anything else.
         If the package will be used from many places in your project’s source code, migrating to a new dependency would require making changes to all those different source locations. Worse, if the package will be exposed in your own project’s API, migrating to a new dependency would require making changes in all the code calling your API, which you might not control. To avoid these costs, it makes sense to define an interface of your own, along with a thin wrapper implementing that interface using the dependency. Note that the wrapper should include only what your project needs from the dependency, not everything the dependency offers. Ideally, that allows you to substitute a different, equally appropriate dependency later, by changing only the wrapper. Migrating your per-project tests to use the new interface tests the interface and wrapper implementation and also makes it easy to test any potential replacements for the dependency.
         It may also be appropriate to isolate a dependency at run-time, to limit the possible damage caused by bugs in it. For example, Google Chrome allows users to add dependencies—extension code—to the browser. When Chrome launched in 2008, it introduced the critical feature (now standard in all browsers) of isolating each extension in a sandbox running in a separate operating-system process.15 An exploitable bug in an badly-written extension therefore did not automatically have access to the entire memory of the browser itself and could be stopped from making inappropriate system calls.16 For Code Search, until we dropped PCRE entirely, our plan was to isolate at least the PCRE parser in a similar sandbox. Today, another option would be a lightweight hypervisor-based sandbox like gVisor.17 Isolating dependencies reduces the associated risks of running that code.
         For example, consider the year 2017 at Equifax, as recounted by executives in detailed congressional testimony.21 On March 7, a new vulnerability in Apache Struts was disclosed, and a patched version was released. On March 8, Equifax received a notice from US-CERT about the need to update any uses of Apache Struts. Equifax ran source code and network scans on March 9 and March 15, respectively; neither scan turned up a particular group of public-facing web servers. On May 13, attackers found the servers that Equifax’s security teams could not. They used the Apache Struts vulnerability to breach Equifax’s network and then steal detailed personal and financial information about 148 million people over the next two months. Equifax finally noticed the breach on July 29 and publicly disclosed it on September 4. By the end of September, Equifax’s CEO, CIO, and CSO had all resigned, and a congressional investigation was underway.
         Upgrading promptly is important, but upgrading means adding new code to your project, which should mean updating your evaluation of the risks of using the dependency based on the new version. As minimum, you’d want to skim the diffs showing the changes being made from the current version to the upgraded versions, or at least read the release notes, to identify the most likely areas of concern in the upgraded code. If a lot of code is changing, so that the diffs are difficult to digest, that is also information you can incorporate into your risk assessment update.
         The window for security-critical upgrades is especially short. In the aftermath of the Equifax breach, forensic security teams found evidence that attackers (perhaps different ones) had successfully exploited the Apache Struts vulnerability on the affected servers on March 10, only three days after it was publicly disclosed, but they’d only run a single whoami command.
         First, make sure that you keep using the specific package versions you think you are. Most dependency managers now make it easy or even automatic to record the cryptographic hash of the expected source code for a given package version and then to check that hash when re-downloading the package on another computer or in a test environment. This ensures that your build use the same dependency source code you inspected and tested. These kinds of checks prevented the event-stream attacker, described earlier, from silently inserting malicious code in the already-released version 3.3.5. Instead, the attacker had to create a new version, 3.3.6, and wait for people to upgrade (without looking closely at the changes).
         Creeping dependencies can also affect the size of your project. During the development of Google’s Sawzall23—a JIT’ed logs processing language—the authors discovered at various times that the main interpreter binary contained not just Sawzall’s JIT but also (unused) PostScript, Python, and JavaScript interpreters. Each time, the culprit turned out to be unused dependencies declared by some library Sawzall did depend on, combined with the fact that Google’s build system eliminated any manual effort needed to start using a new dependency.. This kind of error is the reason that the Go language makes importing an unused package a compile-time error.
         It’s also important to recheck the security history of each dependency. For example, Apache Struts disclosed different major remote code execution vulnerabilities in 2016, 2017, and 2018. Even if you have a list of all the servers that run it and update them promptly, that track record might make you rethink using it at all.
  • ImmutableSetVsHashSet . . . . 15 matches
         making HashSet done. elapsed=9365
         finding done. elapsed=3048
         making HashSet done. elapsed=10852
         finding done. elapsed=1954
         making HashSet done. elapsed=7350
         finding done. elapsed=2214
         making HashSet done. elapsed=7480
         copying to ImmutableSet done. elapsed=2513
         finding done. elapsed=1450
         making HashSet done. elapsed=7550
         copying to ImmutableSet done. elapsed=2500
         finding done. elapsed=1453
         making HashSet done. elapsed=10664
         copying to ImmutableSet done. elapsed=1257
         finding done. elapsed=7959
  • sed . . . . 14 matches
         [new line character in sed]
         sed 'N;s/\n/ /'
          * [sed로 줄바꿈제거하기]
          * sed 예제들
         sed -n '/AAA/p'
         sed -n '/AAA/!p'
         sed 's/AAA/BBB/g'
         sed '/AAA/s/BBB/CCC/g'
         sed '/AAA/!s/BBB/CCC/g'
         sed -n 's/AAA/BBB/gp'
         sed -e 's/AAA/BBB/g' -e 's/CCC/DDD'
         [awk]와 [sed]를 이용해서 [awk sed 실무예제1]를 하나 만들어 봤습니다.
         [sed로 대소문자 변환]
  • MoniWikiPo . . . . 10 matches
         msgid "%d day(s) passed from %s."
         #: ../plugin/security/userbased.php:60
         #: ../plugin/security/mustlogin.php:59 ../plugin/security/userbased.php:28
         #: ../plugin/security/userbased.php:36 ../plugin/security/userbased.php:44
         #: ../plugin/security/userbased.php:59 ../plugin/security/wikimaster.php:25
         msgid "Please contact the system administrator for htaccess based logins."
         #: ../plugin/security/userbased.php:29 ../plugin/security/userbased.php:37
         #: ../plugin/security/userbased.php:45 ../plugin/security/wikimaster.php:26
  • ArrayListVsHashSet . . . . 8 matches
         making list done. elapsed=7249
         finding done. elapsed=4474
         making list done. elapsed=6998
         finding done. elapsed=4137
         making list done. elapsed=7331
         finding done. elapsed=11
         making list done. elapsed=7423
         finding done. elapsed=9
  • jEdit . . . . 8 matches
         options.pmd.rules.UnusedPrivateField=true
         CssEditor.y=50
         CssEditor.x=50
         plugin-blacklist.CssEditor.jar=false
         CssEditor.dock-position=floating
         options.pmd.rules.UnusedFormalParameter=true
         options.pmd.rules.UnusedLocalVariable=true
         options.pmd.rules.UnusedModifier=true
         CssEditor.width=671
         CssEditor.extendedState=0
         options.pmd.rules.UnusedPrivateMethod=true
         mode.java.camelCasedWords=false
         options.pmd.rules.UnusedImports=true
         CssEditor.height=518
         mode.html.camelCasedWords=false
  • CleanArchitecture-2020 . . . . 7 matches
         OO allows the plugin architecture to be used anywhere, for anything.
         This paradigm is strongly based on the lambda-calculus by Alonzo Church in the 1930s.
          * OCP: The Open-Closed Principle
         This can be rephrased:
         == Ch8. OCP: The Open-Closed Principle ==
         A software artifact should be open for extension but closed for modification.
         A use case describes application-specific business rules as opposed to the Critical Business Rules within the Entities.
  • eclipse-keys . . . . 7 matches
         "Focused UI","Focus on Active Task","Shift+Alt+H","In Windows"
         "Focused UI","Show Context Quick View","Shift+Ctrl+Alt+Right","In Windows"
         "Focused UI","Make Less Interesting","Shift+Ctrl+Alt+Down","In Windows"
         "Focused UI","Make Landmark","Shift+Ctrl+Alt+Up","In Windows"
         "Focused UI","Make Landmark","Ctrl+Alt+Shift+Up","In Windows"
         "Focused UI","Show Context Quick View","Ctrl+Alt+Shift+Right","In Windows"
         "Focused UI","Make Less Interesting","Ctrl+Alt+Shift+Down","In Windows"
  • AwkSed실무예제1 . . . . 5 matches
         [sed]
         와스의 세션카운트를 저장하는 텍스트파일이다. 날짜별로 13줄의 레코드가 추가된다. 데이터적인 측면에서 이 13개가 하나의 의미있는 레코드가 될것이다. 이 경우 날짜와 해당일 카운트 정보만 뽑아내기 위해 [awk]와 [sed]를 이용해보았다.
         $ cat parsedata.sh
         sed -e '1,1s/^/\
         먼저 sed를 이용하여 원본파일의 첫줄에 빈줄을 하나 넣어준다. 그리고 lastUpdated라고 시작하는 줄의 끝에 파이프문자(|)를 넣어준다. (레코드 구분자로 쓰기 위해....)
  • awk . . . . 5 matches
         [awk]와 [sed]를 이용한 [awk sed 실무예제 1]
          is the number of the last record processed.
          number of the last record processed in the last
          file processed.
  • (번역)PleaseStopCallingDatabasesCPOrAP . . . . 4 matches
         If you want to refer to CAP as a theorem (as opposed to a vague hand-wavy concept in your database’s marketing materials), you have to be precise.
         The proof only holds if you use the words with the same meaning as they are used in [https://www.comp.nus.edu.sg/~gilbert/pubs/BrewersConjecture-SigAct.pdf the proof].
         See the following diagram (sneak preview from an unreleased chapter of [http://dataintensive.net/ my book]):
         If Alice and Bob had hit reload at the same time, it wouldn’t have been surprising if they had got two different query results, because they don’t know at exactly what time their respective requests were processed by the server.
  • CountingClosedPolygons . . . . 4 matches
         moved to https://github.com/gimslab/algorithms/tree/master/src/main/kotlin/counting_closed_polygons
          val barsReversedDir:MutableSet<Bar> = mutableSetOf()
          barsReversedDir.add(bar.reverseDir())
          return bars.contains(b) || barsReversedDir.contains(b)
          fun reverseDir():Bar{
  • CutFixedLengthData . . . . 4 matches
         [cut], [sed]
         cut --output-delimiter="|" -c 1-15,18-30,50-55,58-63,66-72,95-181 | sed 's/ *$//' | sed 's/\s*$//' | sed 's/\([^ ]*\) *|/\1|/g' | cut -d"|" --output-delimiter=$'\t' -f1-
  • JWSDP . . . . 4 matches
          * Java API for XML-based RPC(JAX-RPC) : [RPC](Remote Procedure Call)방식의 웹서비스 시스템 및 클라이언트 개발 api, [WSDL]문서 자동 생성, Tie(클라이언트와 통신 담당) 클래스를 자동 생성, war 파일 생성 기능, 클라이언트를 쉽게 이용하도록 자동으로 Stub 만들어줌
         jaxp 최신 버젼을 쓰기위해 JWSDP_HOME/jaxp/lib 이하의 파일들을 사용할수 있도록 잡아준다.(java.endorsed.dirs라는 java 환경변수를 지정하거나 JAVA_HOME/jre/lib/endores 아래에 위의 모든 파일을 복사한다.)
         -Djava.endorsed.dirs=/sun/jwsdp-1.6/jaxp/lib;/sun/jwsdp-1.6/jaxp/lib/endorsed
  • Sapient AI Test Coder Review as a Spock User - 20231015(Su) . . . . 4 matches
          - Interaction-based Testing 친화적
          - State-based testing과 대비
          - State based test위주로만 코드가 만들어짐
          - BDD Testing, Data-driven Testing, Interaction-based Testing 지원하지 않음
  • prepend . . . . 4 matches
         #keyword sed
         cat some_file | sed '1i #new first line'
         sed -i '1i #new first line' some_file
         sed -e'1i\
  • CountOnMe . . . . 3 matches
         Cause that's what friends are supposed to do, oh yeah
         Cause that's what friends are supposed to do, oh yeah
         Cause that's what friends are supposed to do, oh yeah
  • JavaListSystem.properties() . . . . 3 matches
         java.endorsed.dirs=C:\Program Files\Java\jre1.6.0_07\lib...
         java.endorsed.dirs=/opt/java1.4.2.17/jre/lib/endorsed
  • NewLineCharacterInSed . . . . 3 matches
         #keywords sed, new line, escape, osx
         sed new line replace in osx shell
         $ echo abcde | sed 's/c/\'$'\n''/'
  • SOLID . . . . 3 matches
         = Open/Closed Principle =
         software entities … should be open for extension, but closed for modification.
          - 닫혀있다 : 다른 모듈에 의해 사용가능한 상태. 잘 정의되고 안정적인 디스크립션(interface)을 가지고 있다. (wikipeda) A module will be said to be closed if it is available for use by other modules. This assumes that the module has been given a well-defined, stable description (the interface in the sense of information hiding).[3]
  • Spring3.0특징요약 . . . . 3 matches
         Based on JSR-303 validators
         Primarily used to validate inputs to Spring MVC controllers
          Chooses a view based on HTTP Accepts header, JAF
  • TamarinProject . . . . 3 matches
         The goal of the "Tamarin" project is to implement a high-performance, open source implementation of the [ECMAScript] 4th edition (ES4) language specification. The Tamarin virtual machine will be used by Mozilla within SpiderMonkey, the core JavaScript engine embedded in [Firefox]®, and other products based on Mozilla technology. The code will continue to be used by Adobe as part of the ActionScript™ Virtual Machine within Adobe® Flash® Player.
  • findinjar.sh . . . . 3 matches
          target_jar=`echo $2 | sed 's/\//\\\\\//g'`
          jar tvf "$2" | sed -n "/${grep_args}/s/^\(.*\)$/${target_jar}:\1/p"
          jar tvf "$2" | sed -n '/'${grep_args}'/s/^\(.*\)$/'$2':\1/p'
  • 구글 엔지니어는 이렇게 일한다 - 타이터스 위터스 외 - 202206 . . . . 3 matches
         Task-based build system: Ant, Maven, Gradle, Grunt, Rake
         Task-based build system의 어두운 면
         Artifact-based build system: Blaze, Bazel, Pants, Buck
  • 1일차-SqlTuning교육 . . . . 2 matches
         RBO : Rule based Optimizer
         CBO : Cost Based Optimizer
  • Ant . . . . 2 matches
         basedir은 ant가 실행되는 경로
         <project basedir="." default="all">
  • GuavaRateLimiterExample . . . . 2 matches
         acquire() setRate:30.0 transactionCount:50 elapsedSec:1.629 actualTps:30.693677102516883
         tryAcquire() setRate:30.0 transactionCount:50 elapsedSec:1.319 actualTps:37.90750568612585 sleepMs:100
  • HelpOnActions . . . . 2 matches
         Actions are tools that work on a page or the whole wiki, but unlike macros do not add ''to'' the page content when viewing a page, but work ''on'' that page content. They either produce some output based on page contents (navigational actions like searching) or implement functions that are not related to viewing a page (like deleting or renaming a page).
         The following is a list of ''internal'' actions that are used to implement the various menus and links at the top and bottom of pages, or supplement certain macros.
  • MoniWiki보안설정 . . . . 2 matches
         ## UserBased
         $security_class='userbased';
  • NewscrapRestarter.java . . . . 2 matches
          * 예: http://x.x.x.x/newscrap/search.php?keyword=&lastdate=20130124&usedate=false&startdate=20130124
          + "&usedate=false&startdate=xxxxxxxx";
  • PairingSamsungBluetoothKeyboardTrio500OnXubuntu . . . . 2 matches
         I purchased the Samsung Trio 500, a Bluetooth keyboard with many reviews for its high quality.
         I used a GUI app, {{{blueman-manager}}}, to connect and use any Bluetooth device.
  • PatternTemplate . . . . 2 matches
         List or describe places where the pattern is used.
         A comma delimited string of terms to be used for searching.
  • PrestoAndHiveTrainingSession . . . . 2 matches
         basedOnDisk: Hive(MR, Tez)
         basedOnMemory: SparkSQL(SparkEngine), Presto,Impala,Tajo
  • SPF . . . . 2 matches
         it is the data used during verification. A future version providing
          and the message passed the authentication tests.
  • Sed로대소문자변환 . . . . 2 matches
         [sed]를 이용하여 [정규식]으로 대소문자 변환하기
         echo 'abcd' | sed 's/./\U&/g'
  • Sed로줄바꿈제거하기 . . . . 2 matches
         [sed]
         cat a.txt | sed -e '/$/N;s/\n/:/' -e '/$/N;s/\n/,/'
  • WikiSandBox . . . . 2 matches
          2. Visit: ProposedWork
         They were surprised about the first subsection on this page. Imagine the complete astonishment when they discovered that there was a ''second'' subsection! An important part of this section is its reference to the MissionStatement. Be ''sure'' to check it out.
  • WikiSlide . . . . 2 matches
          * Follow the guidance of the Wiki used about how to name pages etc.
         For the exercises we use your own Wiki-homepage which is usually based on a WikiName `FirstnameLastname`:
  • bazel . . . . 2 matches
         artifact-based build system
         task-based build system e.g. [gradle], ant
  • bookmarklets . . . . 2 matches
         javascript:(function(){var%20a=window,b=document,c=encodeURIComponent,d=a.open("http://www.google.com/bookmarks/mark?op=edit&output=popup&bkmk="+c(b.location)+"&title="+c(b.title),"bkmk_popup","left="+((a.screenX||a.screenLeft)+10)+",top="+((a.screenY||a.screenTop)+10)+",height=420px,width=550px,resizable=1,alwaysRaised=1");a.setTimeout(function(){d.focus()},300)})();
         javascript:var%20a=window,b=document,c=encodeURIComponent;var%20s=b.getSelection();var%20tit=s.length>0?s.substring(0,100):b.title;tit=tit.replace(/\'/g,'');open('http://mar.gar.in/post/popup_post/&qTitle='+c(c(tit))+'&qURL='+c(c(location.href)),'mar_bkmk','left='+((a.screenX||a.screenLeft)+10)+',top='+((a.screenY||a.screenTop)+10)+',height=610px,width=780px,resizable=1,alwaysRaised=1,scrollbars=1');void(0);
  • path_sed . . . . 2 matches
         echo $PATH | sed 's/:/\n/g'
         path | sed "s/;/\n/g"
  • trash . . . . 2 matches
          #target_dir=`echo "$full_name" | sed 's/[^\/]*\/*$//'`
          #target_dir=`echo "$full_name" | sed 's/[^\/]*\/*$//'`
  • 웹서비스제작용Ant설정파일 . . . . 2 matches
         basedir은 ant가 실행되는 경로
         <project basedir="." default="all">
  • 텍스트처리명령어예제 . . . . 2 matches
         [[sed로 줄바꿈제거하기]]
         [[awk sed 실무 예제 1]]
  • AntBuild.xml예제3 . . . . 1 match
          <jar destfile="${dist.dir}/${jar.file}" basedir="${build.dir}" />
  • CapslockKeyToVimLikeHJKLArrowKeyAndESCKey . . . . 1 match
          # Add vim cursor keys to be accessed with AltGr
  • CvsCommand . . . . 1 match
          A conflict was detected while trying to merge your changes to file with changes from the source repository. file (the copy in your working directory) is now the result of attempting to merge the two revisions; an unmodified copy of your file is also in your working directory, with the name .#file.revision where revision is the revision that your modified file started from. Resolve the conflict as described in the section called “Conflicts example ”. (Note that some systems automatically purge files that begin with .# if they have not been accessed for a few days. If you intend to keep a copy of your original file, it is a very good idea to rename it.) Under vms, the file name starts with __ rather than .#.
  • Fiddler . . . . 1 match
         Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.
  • FortuneCookies . . . . 1 match
          * You will be surprised by a loud noise.
  • HelpOnLinking . . . . 1 match
         If you enclose a sequence of characters in square brackets and double quotes {{{["like this"]}}}, that makes it a page name. That can be used for specific uses of MoinMoin (like organizing a list of items, e.g. your CD collection, by their "natural" name), or if you want to create a wiki with a non-western character encoding.
  • HelpOnNavigation . . . . 1 match
         On the upper right you find icons for the most often used functions:
  • HelpOnPageCreation . . . . 1 match
         To create a page, add its WikiName to an existing page and save it. After that, you can click on it on the revised page, since it automatically becomes a hyperlink.
  • HelpOnProcessingInstructions . . . . 1 match
         Processing instructions have the same semantics as in XML: they control the paths taken when processing a page. Processing instructions are lines that start with a "{{{#}}}" character followed by a keyword and optionally some arguments. Two consecutive hash marks at the start of a line are a comment that won't appear in the processed page.
  • HelpOnXmlPages . . . . 1 match
         If you have Python4Suite installed in your system, it is possible to save XML documents as pages. It's important to start those pages with an XML declaration "{{{<?xml ...>}}}" in the very first line. Also, you have to specify the stylesheet that is to be used to process the XML document to HTML. This is done using a [http://www.w3.org/TR/xml-stylesheet/ standard "xml-stylesheet" processing instruction], with the name of a page containing the stylesheet as the "{{{href}}}" parameter.
  • JqueryPlugins . . . . 1 match
         탭형태의 컴포넌트제공 (효과 제공). Provides predefined (slide and/or fade) and custom animations on tab selection, callbacks on tab selection, autoheight, activating tabs programmatically, disabling/enabling tabs. Support for history and bookmarking if used with the History/Remote plugin.
  • Jquery쓸만한함수들 . . . . 1 match
          * data (Object): (optional) Additional data passed to the event handler as event.data
  • JuniperVPN64bitUbuntu에서CommandLine으로연결하기 . . . . 1 match
         echo | openssl s_client -connect GATE.SITE.COM:443 2>&1 | sed -ne "/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p" | openssl x509 -outform der > ssl.crt
  • KotlinOrm . . . . 1 match
         [exposed]
  • Maven . . . . 1 match
         Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
  • Module04.S/WArchitecture . . . . 1 match
          * Virtual machines : Interpreters, Rule-based systems
  • MoniWiki . . . . 1 match
         MoniWiki is a PHP based WikiEngine. WikiFormattingRules are imported and inspired from the MoinMoin. '''Moni''' is slightly modified sound means '''What ?''' or '''What is it ?''' in Korean and It also shows MoniWiki is nearly compatible with the MoinMoin.
  • MoniWikiACL . . . . 1 match
         Last ACL entry is used.
  • Nexus . . . . 1 match
         There are two distributions of Nexus: Nexus Open Source and Nexus Professional. Nexus Open Source is a fully-featured repository manager which can be freely used, customized, and distributed under the GNU Public License (GPL) Version 3. Nexus Professional is a distribution of Nexus with features that are relevant to large enterprises and organizations which require complex procurement and staging workflows in addition to integration with LDAP, Atlassian Crowd, and other development infrastructure.
  • OracleIndex . . . . 1 match
         [Function based index]
  • PMD . . . . 1 match
          * Dead code - unused local variables, parameters and private methods
  • ProcMailSample1 . . . . 1 match
         * ^To:.*undisclosed-recipients:;
  • Puttygen으로생성한Key를OpenSsh에서사용 . . . . 1 match
         Server Refused Our Key
  • RegexpPatterns . . . . 1 match
         [sed로 대소문자 변환]
  • RepositoryManager . . . . 1 match
         a collection of binary software artifacts and metadata stored in a defined directory structure which is used by clients such Apache Maven, Apache Ant with Maven tasks, or Apache Ivy to retrieve binaries during a build process.
  • Simian . . . . 1 match
         Simian (Similarity Analyser) identifies duplication in Java, C#, C, C++, COBOL, Ruby, JSP, ASP, HTML, XML, Visual Basic, Groovy source code and even plain text files. In fact, simian can be used on any human readable files such as ini files, deployment descriptors, you name it.
  • Spring2.5특징요약 . . . . 1 match
         JUnit 4-based integration testing
  • Subversion . . . . 1 match
         [apache based svn server]
  • SystemRebuilding-201912 . . . . 1 match
          * pattern : 다양한 소스로부터 인입되는 대량?의 메시지를 동일한 정책으로 정확하게 처리하기(event store based)
  • TheWinnerTakesItAll . . . . 1 match
         Like I used to kiss you?
  • WebSocket-Html5 . . . . 1 match
          alert("closed");
  • Well-FormedXML . . . . 1 match
         parsed entity 자체도 well-formed여야 함
  • WikiMarkup . . . . 1 match
         The special characters or character sequences used in a WikiWikiWeb to indicate the desired formatting. Like duplicate single-quote for ''emphasis''.
  • algorithm . . . . 1 match
         [counting closed polygons]
  • aws . . . . 1 match
         aws ec2 describe-instances --filters "Name=tag:Name,Values=my-prod-instance" |grep IpAddress |grep -v '\[' |sed 's/[^0-9.]//g' |sort -u
  • chatgpt . . . . 1 match
         ["Chat Based AI Service"] >
  • cut . . . . 1 match
         [[awk sed 실무 예제 1]]
  • delLastLine.sh . . . . 1 match
         sed ''${target},\$d'' ${filename}
  • exiftool . . . . 1 match
         # set all dates exclude gpsdatestamp, gpstimestamp by datetime parsed from filename
  • exposed . . . . 1 match
         https://github.com/gimslab/exposed-exam
  • getip . . . . 1 match
         ifconfig | grep 'inet addr' | grep -v 127.0.0.1 | cut -d':' -f 2 | sed 's/[^0-9.]//g'
  • glance . . . . 1 match
         o U = used swap space
  • jetty . . . . 1 match
         Jetty is an open-source, standards-based, full-featured web server implemented entirely in [Java]
  • jni . . . . 1 match
          * Jawin: The Java/Win32 integration project (Jawin) is a free, open source architecture for interoperation between Java and components exposed through Microsoft's Component Object Model (COM) or through Win32 Dynamic Link Libraries (DLLs).
  • json . . . . 1 match
         JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language.
  • mon.html . . . . 1 match
          +"&usedate=false&startdate=xxxx";
  • rcs . . . . 1 match
         The Revision Control System (RCS) manages multiple revisions of files. RCS automates the storing, retrieval, logging, identification, and merging of revisions. RCS is useful for text that is revised frequently, including source code, programs, documentation, graphics, papers, and form letters.
  • rev . . . . 1 match
         참조 : [awk], [sed]
  • synapse . . . . 1 match
         [WARN 11:58:59.923405] Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus-d4Z9gFQBze: Connection refused
  • trac . . . . 1 match
         Trac is a minimalistic approach to web-based management of software projects. Its goal is to simplify effective tracking and handling of software issues, enhancements and overall progress.
  • unix . . . . 1 match
         [sed]
  • vid . . . . 1 match
         attachment:"식별번호를 이용한 본인확인 기술규격(Subscriber Identification Based on Virtual ID).pdf"
  • youtube . . . . 1 match
         [Closed Caption]
  • 텍스트처리명령어 . . . . 1 match
         [sed]
Found 99 matching pages out of 1802 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2018-12-14 17:05:37
Processing time 0.6045 sec