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
Microsoft.Windows.Photos_2017.37071.16410.0_x64__8wekyb3d8bbwe | |
Add-AppxPackage -register "C:\Program Files\WindowsApps\Microsoft.Windows.Photos_2017.37071.16410.0_neutral_split.language-de_8wekyb3d8bbwe\AppxManifest.xml" -DisableDevelopmentMode | |
Remove-AppxPackage -Package Microsoft.Windows.Photos_2017.37071.16410.0_x64__8wekyb3d8bbwe |
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
cmd.exe /c "start "" "C:\Program Files\Logitech\SetPointP\SetPoint.exe"" | |
https://stackoverflow.com/a/893216/9506947 |
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
//loop over msg reactions | |
for (const _r of message.reactions) { | |
const r = _r[1]; | |
//remove reaction of member | |
r.remove(member); | |
} |
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
Gdocument.title=(document.querySelector("div.vivo-content-box.vivo-content-box-watch > div > h1").innerText.split("WATCH ")[1]).split(".MP4")[0] |
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
SET @num := 0; | |
UPDATE fakeserver_joinIPs SET id = @num := (@num+1); | |
ALTER TABLE fakeserver_joinIPs AUTO_INCREMENT =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
cw﹫znw | znw🔹beta | Testers required. |
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
channel.fetchMessages() | |
.then(messages => messages.array().forEach( | |
message => message.author.equals(client.user) && message.delete() | |
)); |
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
string payload = JsonConvert.SerializeObject(new | |
{ | |
username = name, | |
content = msg, | |
embeds = new List<object> | |
{ new { | |
title = "Title", | |
description = "", | |
color = "15258703", | |
} } |
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
app.set('trust proxy', true) | |
app.get('/ip', (req, res) => { | |
console.log(req.ip); | |
res.send(req.ip); | |
}) |
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/a/33927043/9506947 */ | |
ng-view.ng-enter,ng-view.ng-leave-active { | |
position: absolute!important; | |
filter: none; | |
width: calc(100% - 30px); /* padding von bs=15*2=30 */ | |
} | |
@keyframes fadeIn { | |
0% { opacity: 0; } | |
50% { opacity: .5; } | |
100% { opacity: 1; } |