Full text search for "cal"


Search BackLinks only
Display context of search results
Case-sensitive searching
  • OurSoftwareDependencyProblem . . . . 18 matches
         In today’s software development world, a dependency is additional code that you want to call from your program.
         In this article we’ll call that unit of code a package;
         A dependency manager (sometimes called a package manager) automates the downloading and installation of dependency packages.
         the lower fixed costs make smaller packages economical to publish and reuse.
         The phenomenon of open-source software, distributed at no cost over the internet, has displaced many of those earlier software purchases. When reuse was difficult, there were fewer projects publishing reusable code packages. Even though their licenses typically disclaimed, among other things, any “implied warranties of merchantability and fitness for a particular purpose,” the projects built up well-known reputations that often factored heavily into people’s decisions about which to use. The commercial and legal support for trusting our software sources was replaced by reputational support. Many common early packages still enjoy good reputations: consider BLAS (published 1979), Netlib (1987), libjpeg (1991), LAPACK (1992), HP STL (1994), and zlib (1995).
         Dependency managers have scaled this open-source code reuse model down: now, developers can share code at the granularity of individual functions of tens of lines. This is a major technical accomplishment. There are myriad available packages, and writing code can involve such a large number of them, but the commercial, legal, and reputational support mechanisms for trusting the code have not carried over. We are trusting more code with less justification for doing so.
         Keep an open mind to development practices you may not be familiar with. For example, the SQLite library ships as a single 200,000-line C source file and a single 11,000-line header, the “amalgamation.” The sheer size of these files should raise an initial red flag, but closer investigation would turn up the actual development source code, a traditional file tree with over a hundred C source files, tests, and support scripts. It turns out that the single-file distribution is built automatically from the original sources and is easier for end users, especially those without dependency managers. (The compiled code also runs faster, because the compiler can see more optimization opportunities.)
         Many developers have never looked at the full list of transitive dependencies of their code and don’t know what they depend on. For example, in March 2016 the NPM user community discovered that many popular projects—including Babel, Ember, and React—all depended indirectly on a tiny package called left-pad, consisting of a single 8-line function body. They discovered this when the author of left-pad deleted that package from NPM, inadvertently breaking most Node.js users’ builds.14 And left-pad is hardly exceptional in this regard. For example, 30% of the 750,000 packages published on NPM depend—at least indirectly—on escape-string-regexp. Adapting Leslie Lamport’s observation about distributed systems, a dependency manager can easily create a situation in which the failure of a package you didn’t even know existed can render your own code unusable.
         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 a long time, the conventional wisdom about software was “if it ain’t broke, don’t fix it.” Upgrading carries a chance of introducing new bugs; without a corresponding reward—like a new feature you need—why take the risk? This analysis ignores two costs. The first is the cost of the eventual upgrade. In software, the difficulty of making code changes does not scale linearly: making ten small changes is less work and easier to get right than making one equivalent large change. The second is the cost of discovering already-fixed bugs the hard way. Especially in a security context, where known bugs are actively exploited, every day you wait is another day that attackers can break in.
         Equifax’s experience drives home the point that although dependency managers know the versions they are using at build time, you need other arrangements to track that information through your production deployment process. For the Go language, we are experimenting with automatically including a version manifest in every binary, so that deployment processes can scan binaries for dependencies that need upgrading. Go also makes that information available at run-time, so that servers can consult databases of known bugs and self-report to monitoring software when they are in need of upgrades.
         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.
         Upgrading is a natural time to revisit the decision to use a dependency that’s changing. It’s also important to periodically revisit any dependency that isn’t changing. Does it seem plausible that there are no security problems or other bugs to fix? Has the project been abandoned? Maybe it’s time to start planning to replace that dependency.
         The kind of critical examination of specific dependencies that I outlined in this article is a significant amount of work and remains the exception rather than the rule. But I doubt there are any developers who actually make the effort to do this for every possible new dependency. I have only done a subset of them for a subset of my own dependencies. Most of the time the entirety of the decision is “let’s see what happens.” Too often, anything more than that seems like too much effort.
  • eclipse-keys . . . . 18 matches
         "Refactor - JavaScript","Extract Local Variable","Shift+Alt+L","JavaScript View"
         "Window","Toggle Split Editor (Vertical)","Ctrl+{","In Windows"
         "Source","Quick Assist - Assign to local variable","Ctrl+2 L","Editing Java Source"
         "Navigate","Open Call Hierarchy","Ctrl+Alt+H","JavaScript View"
         "Terminal Commands","Open Local Terminal on Selection","Ctrl+Alt+T","In Windows"
         "Web Page Editor Layout","Graphical Designer","Shift+Ctrl+F11","Using Web Page Editor"
         "Terminal Commands","Open Local Terminal on Selection","Shift+Ctrl+Alt+T","In Windows"
         "Web Page Editor Layout","Vertical Layout","Shift+Ctrl+F9","Using Web Page Editor"
         "Source","Quick Assist - Assign to local variable","Ctrl+2 L","Editing JavaScript Source"
         "Navigate","Open Call Hierarchy","Ctrl+Alt+H","In Windows"
         "Task Repositories","New Local Task","Insert","In Tasks View"
         "Refactor - Java","Extract Local Variable","Shift+Alt+L","In Windows"
         "Navigate","Open Call Hierarchy","Ctrl+Alt+H","In Windows"
         "Web Page Editor Layout","Graphical Designer","Ctrl+Shift+F11","Using Web Page Editor"
         "Web Page Editor Layout","Vertical Layout","Ctrl+Shift+F9","Using Web Page Editor"
         "Run/Debug","Coverage Scala Application","Alt+Shift+E, L","In Windows"
         "Refactor - JavaScript","Extract Local Variable","Alt+Shift+L","JavaScript View"
         "Source","Quick Assist - Assign to local variable","Ctrl+2, L","Editing Java Source"
         "Source","Quick Assist - Assign to local variable","Ctrl+2, L","Editing JavaScript Source"
         "Task Repositories","New Local Task","Insert","In Tasks View"
  • MoniWikiPo . . . . 17 matches
         #: ../plugin/BlogChanges.php:200 ../locale/dummy.php:7
         #: ../plugin/login.php:43 ../plugin/minilogin.php:28 ../locale/dummy.php:3
         #: ../wiki.php:3193 ../locale/dummy.php:6
         #: ../wiki.php:3197 ../locale/dummy.php:6
         #: ../wiki.php:3198 ../locale/dummy.php:3 ../locale/dummy.php:5
         #: ../wikilib.php:685 ../locale/dummy.php:6
         #: ../locale/dummy.php:3
         #: ../locale/dummy.php:3
         #: ../locale/dummy.php:4
         #: ../locale/dummy.php:4
         #: ../locale/dummy.php:5
         #: ../locale/dummy.php:5
         #: ../locale/dummy.php:5
         #: ../locale/dummy.php:6
         #: ../locale/dummy.php:7
         #: ../locale/dummy.php:7
  • CleanArchitecture-2020 . . . . 16 matches
         There are systems that are practically impossible to change, because the cost of change exceeds the benefit of change.
         If architecture comes last, then the system will becom ever more costly to develop, and eventually change will become practically impossible f or part or all of the system.
         In a calling tree, source code dependencies followed the flow of control.
         Module HL1 calls f() function in module ML1.
         It calls this function through an interface I.f().
         This is called 'dependency inversion'
         This paradigm is strongly based on the lambda-calculus by Alonzo Church in the 1930s.
         Historically, the SRP has been described this way:
         Use cases are narrow vertical slices that cut throught the horizontal layers of the system.
          * Local Processes
         Critical Business Rules
         Critical Business Data
         An object within our computer system that embodies a small set of critical business rules operating on Critical Business Data.
         A use case describes application-specific business rules as opposed to the Critical Business Rules within the Entities.
         Use cases contain the rules that specify how and when the Critical Business Rules within the Entities are invoked.
  • JWSDP동적호출인터페이스모델클라이언트 . . . . 12 matches
         QName portQName = new QName("http://java.sun.com/xml/ns/jax-rpc/wsi/wsdl/webservice", "CalIFPort");
         Call call = service.createCall(portQName);
         call.setTargetEndpointAddress("http://localhost:8080/cal/webservice");
         call.setProperty(Call.SOAPACTION_USE_PROPERTY, new Boolean(true));
         call.setProperty(Call.SOAPACTION_URI_PROPERTY, "");
         call.setProperty(
         call.setOperationName(
         call.addParameter(
         call.addParameter(
         call.setReturnType(new QName("http://www.w3.org/2001/XMLSchema", "int"));
         Integer result = (Integer)call.invoke(params);
  • (번역)PleaseStopCallingDatabasesCPOrAP . . . . 8 matches
         = Please stop calling databases CP or AP =
          * 원문: https://martin.kleppmann.com/2015/05/11/please-stop-calling-databases-cp-or-ap.html Published by Martin Kleppmann on 11 May 2015.
          Many so-called “highly available” (i.e. low downtime) systems actually do not meet this definition of availability.
          * Partition Tolerance (terribly mis-named) basically means that you’re communicating over an asynchronous network that may delay or drop messages.
          In fact, CAP-available systems are allowed to be arbitrarily slow to respond, and can still be called “available”.
          Going out on a limb, I’d guess that your users wouldn’t call your system “available” if it takes 2 minutes to load a page.
         But please don’t call it CAP theorem, because that name is already taken.
         This is a fairly expensive guarantee to provide, because it requires a lot of coordination. Even the CPU in your computer doesn’t provide linearizable access to your local RAM! On modern CPUs, you need to use an explicit memory barrier instruction in order to get linearizability. And even testing whether a system provides linearizability is tricky.
  • SparkPerformanceTestResultsOnCluster . . . . 8 matches
          * 4core local ssd(xps13)
          * 4core(nfs hdd, xps13, master) + 2core(local hdd, n54l, slave)
          * calc03
          * calc03(master) + calc02
          * calc03
          * calc03(master) + calc02
  • CopyingOffsetsOfAConsumerGroupToAnotherConsumerGroupInKafka0.10WithPythonScript . . . . 7 matches
         ~/programs/kafka_2.11-0.10.1.1$ bin/kafka-consumer-groups.sh --describe --group grp1 --bootstrap-server localhost:9092
         ~/programs/kafka_2.11-0.10.1.1$ bin/kafka-consumer-groups.sh --describe --group grp2 --bootstrap-server localhost:9092
         ~/programs/kafka-p1$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group grp1
         ~/programs/kafka-p1$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group grp2
         ~/programs/kafka-p1$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group grp2
         ~/programs/kafka-p1$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group grp1
         ~/programs/kafka-p1$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group grp2
  • anal_log.sh . . . . 7 matches
         was_call_url="http://was/log_web_access_count.jsp"
         # was call
         _url="$was_call_url?date=$today&host=`uname -n`&jobid=$jobid&count=$result_count"
         /usr/local/bin/curl "$_url"
         # was call
         _url="$was_call_url?date=$today&host=`uname -n`&jobid=$jobid&count=$result_count"
         /usr/local/bin/curl "$_url"
  • CopyOffsetsOfAConsumerGroupToAnotherConsumerGroup . . . . 6 matches
         ~/programs/kafka_2.11-1.1.0$ bin/kafka-consumer-groups.sh --describe --group grp1 --bootstrap-server localhost:9092
         ~/programs/kafka_2.11-1.1.0$ bin/kafka-consumer-groups.sh --describe --group grp2 --bootstrap-server localhost:9092
         ~/programs/kafka_2.11-1.1.0$ bin/kafka-consumer-groups.sh --reset-offsets --to-current --export --group grp1 --topic test1 --bootstrap-server localhost:9092 > /tmp/grp1-offsets.csv
         ~/programs/kafka_2.11-1.1.0$ bin/kafka-consumer-groups.sh --reset-offsets --from-file /tmp/grp1-offsets.csv --dry-run --group grp2 --topic test1 --bootstrap-server localhost:9092
         ~/programs/kafka_2.11-1.1.0$ bin/kafka-consumer-groups.sh --reset-offsets --from-file /tmp/grp1-offsets.csv --execute --group grp2 --topic test1 --bootstrap-server localhost:9092
         ~/programs/kafka_2.11-1.1.0$ bin/kafka-consumer-groups.sh --describe --group grp2 --bootstrap-server localhost:9092
  • CvsUpdateResultCodes . . . . 6 matches
         U (up-to-date) : local에서 지워 졌거나 아주 오래(?)된 파일이라 전체를 서버로 부터 다시 받았다.
         A (add) : local에서 add해 둔 파일이다. 실제 서버에는 반영되어 있지 않다. commit 해야만 서버에 반여된다.
         R (remove) : local에서 remove해 둔 파일이다. A와 마찬가지로 실제 서버에는 반영되어 있지 않다.
         M (modify) : local에서 수정된 파일이다. 경우에 따라서는 서버의 파일과 merge된 경우도 있다.
         C (conflict) : M 의 경우 중, 같은 부분이 local에서도 수정되고 서버에서도 수정되어 있는 경우에 conflict가 발생한다. "<<<<", "====", ">>>>" 로 표시되는 중복된 부분을 확인해서 반드시 conflict를 해소해야 한다.
         ? (unknown) : local에 있는 파일 중, cvs에 등록되어 있지 않는 파일이다. add가 필요하다면 참고할 수 있으나 아니면 무시.
  • JavaTips . . . . 6 matches
         = SimpleDateFormat, Calendar : 문자열에서 날짜 파싱후 날짜연산 후 다시 스트링으로 포매팅 =
          Calendar cal = Calendar.getInstance();
          cal.setTime(dt);
          System.out.println(cal.getTime());
          cal.add(Calendar.MONTH, 2);
          System.out.println(cal.getTime());
          String str = sdf.format(cal.getTime());
  • Spring3.0특징요약 . . . . 6 matches
          http://localhost:8080/spitter/spittleList.htm?username=habuma
          http://localhost:8080/spitter/habuma/list
         Configured automatically with <mvc:annotation-driven/>
          template.getForObject("http://localhost:8080/spitter/users/${id}", String.class, userId);
          template.postForLocation("http://localhost:8080/spitter/users/${id}", user, userId);
          template.delete("http://localhost:8080/spitter/users/${id}", userId);
  • WikiSlide . . . . 6 matches
         To add special formatting to text, just enclose it within markup. There are special notations which are automatically recognized as internal or external links or as embedded pictures.
          1. second item (automatically enumerated)
          * A macro is called by "`[[MacroName(parameters)]]`".
          * `TableOfContents` - show a local table of contents
          * `LocalSiteMap`: List of all pages that are referred to, up to a maximum of 4 levels
          * `SpellCheck`: Call check spelling for the current page (HelpOnSpellCheck)
          * common prefixes (topical correlation)
  • Calendar . . . . 5 matches
         = java.util.Calendar Constant Field test =
         = source of com.gimslab.calendar_test.CalTest.java =
         package com.gimslab.calendar_test;
         import java.util.Calendar;
         import java.util.Locale;
         public class CalTest {
          new CalTest().printOut();
          printCalendar(2011, 11, 1, 2013, 3, 31);
          private void printCalendar(int syear, int smonth, int sdate, int eyear,
          Calendar c = Calendar.getInstance();
          c.set(Calendar.YEAR, year);
          System.out.println("YEAR=" + c.get(Calendar.YEAR));
          c.set(Calendar.MONTH, month);
          c.set(Calendar.DATE, date);
          printCalendarData(c);
          private void printCalendarData(Calendar c) {
          print(c.getDisplayName(Calendar.MONTH, Calendar.SHORT, Locale.US) + "("
          + c.get(Calendar.MONTH) + ")");
          print(c.get(Calendar.DATE));
          print(c.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.SHORT, Locale.US)
  • EclipseJavaCodeStyleFormatter . . . . 5 matches
         <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments" value="insert"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations" value="insert"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments" value="do not insert"/>
         <setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations" value="do not insert"/>
  • docs . . . . 5 matches
         [(번역) Please stop calling databases CP or AP]
         https://paulhammant.com/2011/11/29/cookie-cutter-scaling/ | Cookie Cutter Scaling
         http://highscalability.com/blog/2014/4/8/microservices-not-a-free-lunch.html | Microservices - Not a free lunch! - High Scalability -
  • 웹서비스동적스텁생성클라이언트 . . . . 5 matches
         import org.apache.axis.client.Call;
          Call call = (Call) service.createCall();
          call.setTargetEndpointAddress(new URL("http://localhost:9090/axis/DiceWS.jws?wsdl"));
          call.setOperationName("getRandomNumber");
          int[] result = (int[]) call.invoke(new Object[]{new Integer(6), new Integer(5)});
  • MobileSiteDOCTYPE . . . . 4 matches
         <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width" />
  • MoniCalendar . . . . 4 matches
         [[MoniCalendar(column,oneweek,공휴일,시간표)]]
         [[MoniCalendar(oneweek)]]
         [[MoniCalendar(공휴일,시간표)]]
         http://chemie.skku.ac.kr/wiki/monket-calendar/monket-cal/ 테스트
          이것의 비밀은 http://chemie.skku.ac.kr/wiki/monket-calendar/monket-cal/t.html 걍 테이블로 했군요...
  • Reactor Parallel and groupBy . . . . 4 matches
         System.out.println(LocalDateTime.now());
         System.out.println(LocalDateTime.now());
         System.out.println(LocalDateTime.now());
         System.out.println(LocalDateTime.now());
  • Scala . . . . 4 matches
         [Rational.scala]
         [MultiTable.scala]
         Scala smoothly integrates object-oriented and functional programming. It is designed
         [Rational.scala]
  • derby . . . . 4 matches
         jdbc:derby://localhost:1527//usr/derby/MyDB1;create=true
         jdbc:derby://localhost:1527/C:/derby/MyDB;create=true
         DriverManager.getConnection(“jdbc:derby://localhost:1527/C:/derby/MyDB;create=true”);
         connect 'jdbc:derby://localhost:1527/C:/derby/MyDB';
  • java.io.File . . . . 4 matches
         = java.io.File.getCanonicalPath(), getAbsolutePath() =
         String cpath = new File(path).getCanonicalPath();
         println("canonical = "+cpath);
         canonical = D:\share\internet\a.pdf
  • totalcommander-wincmd.ini . . . . 4 matches
         PanelsVertical=0
         CompareVertical=0
         15=red_medicalreport_cf.jsp
         1=E:\projects\xxxx\src\html\medical
  • BashInstallationOnOsx . . . . 3 matches
         /usr/local/bin/bash
         /usr/local/bin/bash
         $ chsh -s /usr/local/bin/bash
  • CvsCommand . . . . 3 matches
          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 .#.
          file is in your working directory, but does not correspond to anything in the source repository, and is not in the list of files for cvsnt to ignore (see the description of the -I option, and the section called “Ignoring files via cvsignore ”)
  • Maven설치 . . . . 3 matches
         setlocal
         그리고 실제 작업할 디렉토리에서 mvn.bat를 호출해야하니 path를 잡아주는게 편하겠지만 역시 패스를 자꾸 추가하는 것도 싫어해서 기존에 패스에 추가해놓은 디렉토리인 %USERPROFILE%/bin(/usr/local/bin정도의 역할을 하도록 만들어놓은 디렉토리) 아래에 mvn.cmd 파일을 만들어서...
         call d:/java/apache-maven-2.2.1/bin/mvn.bat %*
  • OurLastSummer . . . . 3 matches
         I can still recall
         I can still recall
         I can still recall
  • Php설치-Linux . . . . 3 matches
         mkdir /usr/local/php-5.1.4
         ./configure --prefix=/usr/local/php-5.1.4
         cd /usr/local
  • ProcMail . . . . 3 matches
         :0 [flag] [ : [locallockfile] ]
         PATH=/usr/local/bin:/usr/bin:/bin
         PATH=/usr/local/bin:/usr/bin:/bin
  • ProcMailSample1 . . . . 3 matches
         PATH=/usr/local/bin:/usr/bin:/binPATH
         * ^Subject:.*[Mm]edical [Bb]reakthrough
         * ^Subject:.*spice girls' vocal concert$
  • WSDL문서의구조 . . . . 3 matches
          namespace="http://localhost:8080/lottows/webservice/wsdl/webservice"/>
          namespace="http://localhost:8080/lottows/webservice/wsdl/webservice"/>
          <soap:address location="http://localhost:8080/lottows/webservice"/>
  • chrome . . . . 3 matches
         rt****p -L2222:localhost:2222
         ssh -p2222 -D2224 localhost
         google-chrome --proxy-server=socks5://localhost:2224
  • html5_book_원철연 . . . . 3 matches
         4. 함수(Function),4.1 함수의 정의(선언),4.2 선언된 함수의 호출(call) http://fromyou.tistory.com/531
         == 1.localStorage http://fromyou.tistory.com/575 ==
         칼라 이미지를 Grayscale 이미지로 나타내기 http://fromyou.tistory.com/578
  • procmail . . . . 3 matches
         :0 [flag] [ : [locallockfile] ]
         PATH=/usr/local/bin:/usr/bin:/bin
         PATH=/usr/local/bin:/usr/bin:/bin
  • 영어일기-01 . . . . 3 matches
         The weather forecast called for scattered showers.
         * called for + 명사 ~을 부른다, ~을 요구한다
         The weather forecast called for heavy snow.
  • Axis . . . . 2 matches
         http://localhost:8080/axis/
         http://localhost:8080/axis/services/Version?method=getVersion
  • Axis로WebService개발하기 . . . . 2 matches
          <arg line="-lhttp://localhost:8080/axis/services/AdminService clientsrc/webservice/math/deploy.wsdd"/>
          <arg line="-lhttp://localhost:8080/axis/services/AdminService clientsrc/webservice/math/undeploy.wsdd"/>
  • BadContent . . . . 2 matches
         (levitra|lolita|phentermine|viagra|vig-?rx|zyban|valtex|xenical|adipex|meridia\b)[\w\-_.]*\.[a-z]{2,} # Super regexp for domains containing levitra, lolita, phentermine, viagra, vigrx, vig-rx, zyban, valtex, xenical, adipex and meridia
  • CountOnMe . . . . 2 matches
         When we are called to help our friends in need
         When we are called to help our friends in need
  • Dns구성하기 . . . . 2 matches
         ####local info#####
         그리고 그 바로 아래쯤에 보면 Cw라고 시작하는 부분이 보일것이다. 최초에는 Cwlocalhost라고 되어 있었다. 거기에다가 메일을 받기를 원하는 도메인 네임을 적어주면 된다. 이렇게...
  • GuavaRateLimiterExample . . . . 2 matches
          println("acquire() ${LocalDateTime.now()} idx:$i delayed:$delayed")
          println("tryAcquire() ${LocalDateTime.now()} idx:$i delayed:${!permit}")
  • HelpOnActions . . . . 2 matches
          * `!DeletePage`: Delete a page, after you confirmed it; deletion means a final backup copy is created and only then the page is deleted, i.e. you can ''revive'' the page later on (as long as the backups are not physically deleted).
          * `recall`: display an older revision of a page.
  • HelpOnEditing . . . . 2 matches
         Names of pages have to LookLikeThis. It's called a WikiName. If you write a word that LookLikeThis, it will be automatically turned into a link. More details about this you find on HelpForBeginners.
  • HelpOnFormatting . . . . 2 matches
         You might recall ''a''^2^ `+` ''b''^2^ `=` ''c''^2^ from your math lessons, unless your head is filled with H,,2,,O.
         You might recall ''a''^2^ `+` ''b''^2^ `=` ''c''^2^ from your math lessons, unless your head is filled with H,,2,,O.
  • HelpOnPageCreation . . . . 2 matches
         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.
         You will then be presented with your new page, which you can edit in the normal way. After you ''first'' saved it, it will be automatically created. Pages normally[[FootNote(Deleting pages can be activated by the wiki administrator (which you'll normally do in intranet sites only).)]] cannot be deleted, so be sure to spell new WikiName''''''s correctly.
  • Html5JsApi . . . . 2 matches
         window.localStorage['KEY'] = VAL;
         VAL = = window.localStorage['KEY'];
          tx.executeSql("select * from tbl", [], successCallback, errorCallback);
  • JavaFileCopy . . . . 2 matches
         // copyTransferTo(f1.getCanonicalPath(), f2.getCanonicalPath());
  • JavaFileUpload-ClientSide . . . . 2 matches
         String urlString = "http://localhost:8080/FileUpload/requestupload";
         String urlString = "http://localhost:8080/FileUpload/requestupload";
  • JqueryPlugins . . . . 2 matches
         탭형태의 컴포넌트제공 (효과 제공). 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.
  • JuniperVpn . . . . 2 matches
         ln -s /usr/local/java/jre-i586/lib/i386/libnpjp2.so
         /usr/local/java/jre7-i586/bin/java -cp ~/.juniper_networks/network_connect/NC.jar NC
  • MavenLocalRepository변경하기 . . . . 2 matches
         <localRepository>~</localRepository>
  • Missing Value Handling . . . . 2 matches
         # use numerical features
         # use only numerical predictors
  • ResetMysqlRootPassword . . . . 2 matches
         ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';
         mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';
  • SPF . . . . 2 matches
          the sender; either the process couldn't be completed locally because
          locally, or there was a permanent failure retrieving the sending.
  • TheGreatBigEnormouseTurnip . . . . 2 matches
          2. Musical
          7. Musical Melody
  • Useful Software . . . . 2 matches
          * ngrok: make localhost as public server with temp domain
          * Dependency Walker : a free utility that scans any 32-bit or 64-bit Windows module (exe, dll, ocx, sys, etc.) and builds a hierarchical tree diagram of all dependent modules. (http://www.dependencywalker.com/)
  • WindowsXP기본서비스 . . . . 2 matches
         27 Logical Disk Manager
         28 Logical Disk Manager Administrative Service
         49 Remote Procedure Call (RPC)
         50 Remote Procedure Call (RPC) Locator
  • amho.cmd . . . . 2 matches
         call 7z.cmd x -so x:\xxx\amho-*.7z | iconv -f utf-8 -t cp949 | vi -R -
         call 7z.cmd x -so x:\xxx\amho-*.7z | cat
  • httpRequest.js . . . . 2 matches
         function sendRequest(url, params, callback, method)
          httpRequest.onreadystatechange = callback;
  • jEdit . . . . 2 matches
         options.pmd.rules.ConstructorCallsOverridableMethodRule=true
         options.pmd.rules.UnusedLocalVariable=true
         options.pmd.rules.FinalizeOnlyCallsSuperFinalize=true
         view.toolbar=new-file open-file close-buffer save - print page-setup - undo redo cut copy paste - find find-next - new-view unsplit split-horizontal split-vertical - navigator.back navigator.forward
         options.pmd.rules.ExplicitCallToFinalize=true
         options.pmd.rules.OptimizableToArrayCallRule=true
         options.pmd.rules.FinalizeDoesNotCallSuperFinalize=true
  • jaxrpc-ri.xml . . . . 2 matches
          targetNamespaceBase="http://localhost:8080/mytestws/webservice/wsdl"
          typeNamespaceBase="http://localhost:8080/mytestws/webservice/type">
  • playframework . . . . 2 matches
         [Scala]
         Scala IDE for eclipse
  • 기존의웹사이트와웹표준준수웹사이트비교 . . . . 2 matches
         invalid, inaccessible, semantically incorrect code
         semantically correct markup : html태그를 원래 목적에 맞게 사용
  • 온라인민원서비스선진화 . . . . 2 matches
          * 상호연계를 위한 Local Call 불가
          * Local Call 대비 성능감소(Web Service, RMI)
  • 2024-04-11(Th) Raspberry Pi 5에 MoniWiki 설치하기(Docker 이용) . . . . 1 match
          - ./php-fpm-conf-add.ini:/usr/local/etc/php/conf.d/php-fpm-conf-add.ini
  • Ajax관련사이트 . . . . 1 match
         http://www.google.com/calendar/render
  • Amaya . . . . 1 match
         Amaya is a Web client that acts both as a browser and as an authoring tool. It has been designed by W3C and INRIA with the primary purpose of demonstrating new Web technologies and helping users to generate valid Web pages.With Amaya, you can manipulate rich Web pages containing forms, tables, and the most advanced features from XHTML. You can create and edit complex mathematical expressions within Web pages. You can style your documents using Cascading Style Sheets (CSS).
  • AppleMagicTrackpad2ForUbuntu20.04.1 . . . . 1 match
          Device Accel Velocity Scaling (299): 12.500000
  • BeanShell . . . . 1 match
         BeanShell is a small, free, embeddable [Java] source interpreter with object scripting language features, written in [Java]. BeanShell dynamically executes standard Java syntax and extends it with common scripting conveniences such as loose types, commands, and method closures like those in [Perl] and JavaScript.
  • BuildingMicroservices;마이크로서비스아키텍처구축-샘뉴먼지음,정성권옮김 . . . . 1 match
          - Request/Response 기반 협업 : 동기 or 비동기(with callback)
  • CheckJuminnoInContents . . . . 1 match
          log("주민번호아님. 다음패턴찾기위해 recursive call");
  • ChromeProxying . . . . 1 match
         google-chrome --proxy-server=socks5://localhost:2223
  • Decision Tree Regressor Model Sample . . . . 1 match
         # Make validation predictions and calculate mean absolute error
  • EclipseOnUbuntu . . . . 1 match
          - cat /home/xxx/.local/share/applications
  • ExpectScript/mycliViaSshTunneling . . . . 1 match
         spawn ssh -oStrictHostKeyChecking=no -f -p${ssh_tnl_port} bok@localhost.fin -L${mysql_tnl_port}:${mysql_host}:3306 sleep 10
  • HelpContents . . . . 1 match
         An automatically generated index of all help pages is on HelpIndex
  • HelpForBeginners . . . . 1 match
         A WikiName is a word that uses capitalized words. WikiName''''''s automagically become hyperlinks to the WikiName's page. What exactly is an uppercase or lowercase letter is determined by the configuration, the default configuration works for Latin-1 (ISO-8859-1) characters. See below for how to handle Asian, Hebrew and other non-western character encodings.
  • HelpOnMacros . . . . 1 match
         ||{{{[[TableOfContents]]}}} || display a local table of contents || see below ||
  • HelpOnNavigation . . . . 1 match
         On the bottom of each page, you find the "traditional" edit and search links known from the original wiki, and in addition fields for quick-searching titles and the page texts, plus links to call any custom actions you have installed.
  • HelpOnProcessors . . . . 1 match
         Processors work on the data in a code display. You specify which processor to call by using a ''bang path''-like construct in the first line. A bang path is a concept known from Unix command line scripts, where they serve the exact same purpose: the first line tells the shell what program to start to process the remaining lines of the script.
  • HelpOnSmileys . . . . 1 match
         == Graphical Smileys ==
  • HelpOnSpellCheck . . . . 1 match
          * the page LocalSpellingWords
  • Html5HTML . . . . 1 match
          <p>My band is called <span itemprop='band'>Four Parts Water</span>.</p>
  • InterWiki . . . . 1 match
         InterWiki marks the links in a way that works for the MeatBall:ColourBlind and also is MeatBall:LynxFriendly by using a little icon with an ALT attribute. If you hover above the icon in a graphical browser, you'll see to which Wiki it refers.
  • JDepend . . . . 1 match
         JDepend traverses Java class file directories and generates design quality metrics for each Java package. JDepend allows you to automatically measure the quality of a design in terms of its extensibility, reusability, and maintainability to manage package dependencies effectively.
  • JSLibrary . . . . 1 match
         localStorage API :
  • JYbooksCdList . . . . 1 match
         [The Musical Life of Gustav Mole]
  • Javascript런타임에원격Js호출하기 . . . . 1 match
         function callRemoteJavascriptOnRuntime(){
  • JuniperVPN64bitUbuntu에서CommandLine으로연결하기 . . . . 1 match
         sudo cp /tmp/ncui-7.4/usr/local/nc/* .
  • Keychron K9 Pro . . . . 1 match
          * physical switch to switch between 0 <-> 1
  • ML Study . . . . 1 match
         ["Categorical Variables Handling"]
  • Maven . . . . 1 match
          * [maven local repository 변경하기]
  • Module04.S/WArchitecture . . . . 1 match
          * Call-and return systems : Main program and subroutine, OO systems, Hierarchical layers
  • OracleSubquery . . . . 1 match
         [Scalar Subquery]
  • PMD . . . . 1 match
          * Dead code - unused local variables, parameters and private methods
  • PairingSamsungBluetoothKeyboardTrio500OnXubuntu . . . . 1 match
         Eventually, I found a tool called
  • Perl을이용한날짜계산 . . . . 1 match
         perl -e 'use POSIX;print strftime "%Y%m%d\n",localtime time-86400*7;'
  • Pivotal summit 2019 Seoul . . . . 1 match
         # Drinking from the Stream: How to Use Messaging Platform for Scalability & Performance
  • Rational.scala . . . . 1 match
         #keywords scala
  • RemoveMysqlDataAndRootPassword . . . . 1 match
         mysql> alter user root@localhost identified by 'myNewPassword';
  • ResetMysqlInitialRootPassword . . . . 1 match
         mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password;
  • SAX . . . . 1 match
         lexical 정보를 제공할 수 없다.
  • Sapient AI Test Coder Review as a Spock User - 20231015(Su) . . . . 1 match
          - Kotlin, Scala, Reactor를 사용하는 경우 사용 불가능
  • Stty특수문자지정 . . . . 1 match
          입/출력 속도를 N 으로 설정한다. N 은 다음 값 중에 하나가 될 수 있다: 0 50 75 110 134 134.5 150 200 300 600 1200 1800 2400 4800 9600 19200 38400 exta extb. exta은 19200과 같고; extb은 38400과 같다. -clocal 이 설정되어 있는 경우 0 은 회선을 정지시킨다.
  • TheWinnerTakesItAll . . . . 1 match
         When she calls your name?
  • UbuntuKeyboardMapping . . . . 1 match
         When you restart, that file will run automatically.
  • UbuntuOnMacbookpro . . . . 1 match
         --> add into /etc/rc.local
  • UbuntuTips . . . . 1 match
          "Your current network has a .local domain, which is not recommended and incompatible with the Avahi network service discovery. The service has been disabled."
         # AVAHI_DAEMON_DETECT_LOCAL=1
         AVAHI_DAEMON_DETECT_LOCAL=0
  • Url-웹표준 . . . . 1 match
         canonical
  • WebSocket-Html5 . . . . 1 match
          var ws = new WebSocket("ws://localhost:9123/");
  • WebWork . . . . 1 match
         WebWork is a Java web-application development framework. It is built specifically with developer productivity and code simplicity in mind, providing robust support for building reusable UI templates, such as form controls, UI themes, internationalization, dynamic form parameter mapping to JavaBeans, robust client and server side validation, and much more.
  • WikiName . . . . 1 match
         A WikiName is a word that uses capitalized words. WikiName''''''s automagically become hyperlinks to the WikiName's page.
  • WikiWikiWebFaq . . . . 1 match
         '''A:''' A set of pages of information that are open and free for anyone to edit as they wish. The system creates cross-reference hyperlinks between pages automatically. See WikiWikiWeb for more info.
  • WindowsScripts . . . . 1 match
         call /?
  • WindowsStartScript-Weblogic . . . . 1 match
         call stopWebLogic.cmd
  • XMLHttpRequest . . . . 1 match
         == 서버의 응답에 호출될(callback) 함수명을 지정 ==
  • aromnet.ini . . . . 1 match
         LocalEcho=FALSE
  • cal . . . . 1 match
         [^http://calendar.google.com]
  • com.gimslab.util.batch.UniqLoopingBatchProcess.java . . . . 1 match
          System.out.println("LOCK FILE("+this.lockFile.getCanonicalPath()+") exist. i'm dying.");
  • css . . . . 1 match
          vertical-align: baseline;
  • debugging . . . . 1 match
         [system call tracer]
  • eclipse.ini . . . . 1 match
         /usr/local/jdk7/bin/java
  • editoratn.cmd . . . . 1 match
         call vi.cmd c:\oracle\product\10.2.0\client_1\NETWORK\ADMIN\tnsnames.ora
  • fest.assertions . . . . 1 match
         assertThat(fromDate).isEqualTo(new LocalDate(2016, 4, 1));
  • fonera . . . . 1 match
          * Now, the Fonera is back to its default factory configuration: username/password of the Management console are admin/admin, the WPA key is the serial number (S/N: on the sticker beneath the Fonera) and the SSIDs are called 'MyPlace' and 'FON_AP'
  • glance . . . . 1 match
         > disk IO rate = average number of physical disk IOs per second made by the process
  • moniwiki . . . . 1 match
          $auto_linebreak= 0; # NoSmoke style insert <br> automatically.
  • myProcmail_20060918 . . . . 1 match
         PATH=/usr/local/bin:/usr/bin:/bin
  • php . . . . 1 match
         /usr/local/php-xxx/lib/php.ini
  • picasa . . . . 1 match
         cp -R '/home/gim/.wine/drive_c/users/gim/Local Settings/Application Data/Google/' ~/tostore/picasa-db-backup-${dt}/
  • scroll . . . . 1 match
         ; bind shift + vertical scroll to horizontal scroll events
  • ssh-config . . . . 1 match
          LocalForward 13306 test.com:3306
  • tusc . . . . 1 match
         [system call tracer] >
  • vi.cmd . . . . 1 match
         call vim.bat %*
  • weblogic_getInitialContext() . . . . 1 match
          h.put(Context.PROVIDER_URL, "t3://localhost:7001");
  • 공인인증서 . . . . 1 match
         C:\Users\USER\AppData\LocalLow\NPKI
  • 배치로MysqlDb백업받기 . . . . 1 match
         /usr/local/mysql/bin/mysqldump -u USER_ID --password=PASSWD DB_NAME > db_dump_`date +%Y%m%d`
  • 웹표준교육수강노트 . . . . 1 match
         [웹표준-Practical Css Tips]
  • 윈도우사용자및그룹추가삭제명령 . . . . 1 match
         net localgroup grp01 /add
  • 윈도우환경변수 . . . . 1 match
         %Temp% : %UserProfile%\Local Settings\Temp
  • 의도적 수련 . . . . 1 match
         - 전문가의 경우 Local Planning(계획을 융통성있게 바꾸는 것)이 1.4배 Feedback 프로세싱이 2배 이상 높았다.
  • 책상 . . . . 1 match
         https://www.thehumansolution.com/ergonomic-office-desk-ergonomic-chair-and-keyboard-height-calculator/
Found 144 matching pages out of 1798 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2008-08-27 17:32:32
Processing time 0.5908 sec