- Anthony Gonzales
- Tech 49
- Antonín Dvořák
- Allegro con fuoco ("From The New World")
- Antonio Vivaldi
- The Four Seasons: Concerto N°2 in G Minor, RV315, "Summer": I. Allegro non molto
- Apocalyptica
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
| diff --git a/Library/src/Makefile.am b/Library/src/Makefile.am | |
| index be1857d..5139eca 100644 | |
| --- a/Library/src/Makefile.am | |
| +++ b/Library/src/Makefile.am | |
| @@ -405,7 +405,6 @@ BUILT_SOURCES = \ | |
| HTAtom.h \ | |
| HTBInit.h \ | |
| HTBTree.h \ | |
| - HTBind.h \ | |
| HTBind.h \ |
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
| [10:26:16] <devinus> phinze: apparently Oracle won't let you download the dmg until you have a cookie in your browser | |
| [10:26:19] <devinus> grooosss | |
| [10:26:31] <phinze> devinus: ewww | |
| [10:27:25] <phinze> stupid oracle | |
| [10:27:38] <phinze> here's somebody trying to work out how to script it http://ivan-site.com/2012/05/download-oracle-java-jre-jdk-using-a-script/ | |
| [10:27:53] <phinze> but then we're getting into annoyingly murky territory | |
| [10:29:47] <devinus> phinze: should i give up or is there a way to pass a cookie along? | |
| [10:45:24] <phinze> devinus: looking at CurlDownloadStrategy quick | |
| [10:46:25] <devinus> phinze: in curl, this works: curl -b gpw_e24=http%3A%2F%2Fwww.oracle.com -O -L http://download.oracle.com/otn-pub/java/jdk/7u25-b15/jdk-7u25-macosx-x64.dmg | |
| [10:46:40] <phinze> so i guess theoretically we could subclass it and override CurlDownloadStrategy#_fetch |
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
| # -*- coding: utf-8 -*- | |
| #!/usr/bin/env python | |
| import sys | |
| class Polyomino(object): | |
| def __init__(self, iterable): | |
| self.squares = tuple(sorted(iterable)) | |
| def __repr__(self): |
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
| ~ Asciicast recording started. Hit ^D (that's Ctrl+D) or type "exit" to finis | |
| h. | |
| 4:09PM passcod ~/nanobot | |
| ≈ python -v | |
| import _frozen_importlib # frozen | |
| import imp # builtin | |
| import sys # builtin | |
| # installing zipimport hook | |
| import 'zipimport' # <class '_frozen_importlib.BuiltinImporter'> |
Pure CSS. Inspiration:
A Pen by Anonasaurus Rex on CodePen.
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
| import Twitter from 'twitter'; | |
| const client = new Twitter({ | |
| consumer_key: process.env.TWITTER_CONSUMER_KEY, | |
| consumer_secret: process.env.TWITTER_CONSUMER_SECRET, | |
| access_token_key: process.env.TWITTER_ACCESS_TOKEN_KEY, | |
| access_token_secret: process.env.TWITTER_ACCESS_TOKEN_SECRET | |
| }); | |
| let getFaves = function () { |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
Original post : https://unix.stackexchange.com/a/310699
nmcli con add type wifi ifname wlan0 con-name Hostspot autoconnect yes ssid Hostspot
nmcli con modify Hostspot 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
nmcli con modify Hostspot wifi-sec.key-mgmt wpa-psk
nmcli con modify Hostspot wifi-sec.psk "veryveryhardpassword1234"
OlderNewer
