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
| sudo zypper ar \ | |
| http://download.opensuse.org/repositories/devel:/languages:/nodejs/SLE_12/ \ | |
| Node.js | |
| sudo zypper in nodejs nodejs-devel | |
| http://software.opensuse.org/ymp/devel:languages:nodejs/SLE_12/nodejs.ymp | |
| http://download.opensuse.org/repositories/SUSE:/SLE-12:/GA/standard |
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
| [com.sun.mail.smtp.SMTPSendFailedException: 501 5.1.7 Invalid address | |
| ; | |
| nested exception is: | |
| com.sun.mail.smtp.SMTPSenderFailedException: 501 5.1.7 Invalid address | |
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
| --- | |
| - hosts: localhost | |
| tasks: | |
| - file: path=/nfs state=directory mode=777 owner=root group=root | |
| - mount: | |
| name: "/nfs" | |
| fstype: nfs | |
| src: "192.168.68.100:/volume1/Public" | |
| opts: "credentials=/etc/credentials.jsw921" | |
| state: mounted |
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
| public String initLadyOnDateNextToMeAskedAboutFormerRelationships{ | |
| while (true){ | |
| System.out.println("and then I met " + getRandomGuyName() + " and i was like wahteverrrrrrrrrrr"; | |
| } | |
| } |
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
| -- 1. Open Security & Privacy System Preferences, go to Privacy, Accessibility | |
| -- 2. Enable Applescript Editor | |
| -- Usage: <script> gatewayHostName password | |
| -- based on https://gist.github.com/andrewh/7135352 and https://github.com/seanfisk/juniper-network-connect-vpn-applescript/blob/master/juniper.applescript | |
| on run argv | |
| if (count of argv) is not equal to 2 then | |
| return "Usage: <script> gatewayHostName password" | |
| else |
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
| https://stackoverflow.com/questions/21076179/pkix-path-building-failed-and-unable-to-find-valid-certification-path-to-requ | |
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
| npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents): | |
| npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"}) |
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
| login.service.ts?6517:1 Uncaught Error: Cannot find module "@ng-idle/core" | |
| at webpackMissingModule (login.service.ts?6517:1) | |
| at eval (login.service.ts?6517:1) | |
| at Object../src/main/webapp/app/core/login/login.service.ts (main.bundle.js:6668) | |
| at __webpack_require__ (main.bundle.js:20) | |
| at eval (auth-expired.interceptor.ts?4c97:5) | |
| at Object../src/main/webapp/app/blocks/interceptor/auth-expired.interceptor.ts (main.bundle.js:6488) | |
| at __webpack_require__ (main.bundle.js:20) | |
| at eval (app.module.ts?c5f8:11) | |
| at Object../src/main/webapp/app/app.module.ts (main.bundle.js:6464) |
This file has been truncated, but you can view the full file.
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
| Skip to content | |
| [Jenkins]Jenkins PubDef | log out | |
| search | |
| Jenkins | |
| OpenDefender | |
| #1 | |
| Back to Project | |
| Status |
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
| SELECT top 1000 | |
| c.primary_reference_id, | |
| hwe.csv_sortable_name(hwe.csv_get_primary_defender_id(c.id)) AS defender_name, | |
| hwe.csv_get_primary_defender_id(c.id) AS primary_defender_id_person_id, | |
| u.principal as user_id | |
| FROM | |
| hwe.case_file AS c INNER JOIN | |
| hwe.relationship AS r ON c.id = r.target_entity_id INNER JOIN | |
| hwe.entity_type AS rtype ON r.entity_type_id = rtype.id INNER JOIN |