This file contains 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
Option Explicit | |
Dim objshell,path,DigitalID, Result | |
Set objshell = CreateObject("WScript.Shell") | |
'Set registry key path | |
Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\" | |
'Registry key value | |
DigitalID = objshell.RegRead(Path & "DigitalProductId") | |
Dim ProductName,ProductID,ProductKey,ProductData | |
'Get ProductName, ProductID, ProductKey | |
ProductName = "Product Name: " & objshell.RegRead(Path & "ProductName") |
This file contains 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
ode-pre-gyp install --fallback-to-build --library=static_library | |
node-pre-gyp WARN Using request for node-pre-gyp https download | |
node-pre-gyp WARN Tried to download(404): https://node-precompiled-binaries.grpc.io/grpc/v1.20.0/node-v72-win32-x64-unknown.tar.gz | |
node-pre-gyp WARN Pre-built binaries not found for [email protected] and [email protected] (node-v72 ABI, unknown) (falling back to source compile with node-gyp) | |
gyp ERR! find Python | |
gyp ERR! find Python Python is not set from command line or npm configuration | |
gyp ERR! find Python Python is not set from environment variable PYTHON | |
gyp ERR! find Python checking if "python" can be used | |
gyp ERR! find Python - "python" is not in PATH or produced an error |
This file contains 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
List<Future<String>> futuresList = new List<Future<String>>(); | |
List<String> blogsList = ["1", "2", "3", "4", "5", "6"]; | |
for (final blog in blogsList) { | |
if (blog == "2") { | |
futuresList.add(Future<String>.error('error').catchError((e) => e)); | |
} else { | |
futuresList.add(Future.value(blog)); | |
} | |
} | |
try { |
This file contains 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
// ich verstehe nicht warum hier die perform() funktioniert nicht fehlt was im Code oder was ? | |
package MyTestPakage; | |
//this Code made by Almo | |
import org.openqa.selenium.*; | |
import org.openqa.selenium.firefox.FirefoxDriver; | |
import org.openqa.selenium.interactions.Action; | |
import org.openqa.selenium.interactions.Actions; | |
public class Test { |
This file contains 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
import React, { Component } from 'react'; | |
import './App.css'; | |
import Card from './Card/Card'; | |
import DrawButton from './Drawbutton/DrawButton'; | |
import 'firebase/database' | |
import fb from './config/firebase/db_config' | |
console.log(fb); | |
class App extends Component { | |
constructor(props) { |
This file contains 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
import React, { Component } from 'react'; | |
import './App.css'; | |
import Card from './Card/Card'; | |
import DrawButton from './Drawbutton/DrawButton'; | |
import 'firebase/database' | |
import fb from './config/firebase/db_config' | |
console.log(fb); | |
class App extends Component { | |
constructor(props) { |
This file contains 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
import React, { Component } from 'react'; | |
import './App.css'; | |
import Card from './Card/Card'; | |
import DrawButton from './Drawbutton/DrawButton'; | |
import 'firebase/database' | |
import fb from './config/firebase/db_config' | |
console.log(fb); | |
class App extends Component { | |
constructor(props) { |